@font-face {
  font-family: 'Melodrama';
  src: url('../fonts/Melodrama-Variable.ttf') format('truetype');
}
@font-face {
  font-family: 'Zodiak';
  src: url('../fonts/Zodiak-Variable.ttf') format('truetype');
}
@font-face {
  font-family: 'Zodiak Italic';
  src: url('../fonts/Zodiak-VariableItalic.ttf') format('truetype');
}
@font-face {
  font-family: 'Gambarino';
  src: url('../fonts/Gambarino-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Sentinent Italic';
  src: url('../fonts/Sentient-VariableItalic.ttf') format('truetype');
}
* {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
h1, h2, h3, p {
  margin: 0;
}

html,body{
  /*height: 100%;*/
}

body{
    margin: 0;
    background-color: #ffffff;
    font-family: 'Fustat', sans-serif;
    padding: 56px 0px 0px 0px;
    /*background-color: #FFFCF6;*/
}

button{
  all: unset;
  cursor: pointer; /* optional: keeps pointer on hover */
}



.custom-button {
  background-color: #1e2525;
  color: #fff;
  font-family: 'Fustat', sans-serif;
  font-weight: 400;
  height: 44px;
  padding: 0px 20px;
  font-size: 16px;
  box-sizing: border-box;
  cursor: pointer;
  margin-top: 16px;
  border-radius: 18px;
}
.custom-button:hover {
  background-color: #373f3f;
}











#navbar{
  border-bottom: 1px solid #e3e3e3;
  height: 56px;
  width: calc(100% - 80px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* Ensure it stays above other content */
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); /* Optional: slight shadow for visibility */
  background-color: white; /* Optional: set a background to avoid transparency */

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
}
.navbar-content{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

#navbar .wordmark {
    flex-shrink: 0; /* prevent shrinking if space is tight */
    cursor: pointer;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-basket{
    padding: 0 0px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .nav-right {
    display: flex;
    gap: 1rem; /* spacing between buttons and icons */
    align-items: center;
  }
  
  .nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 16px;
  }

  .nav-right .icon{
    cursor: pointer;
    stroke-width: 1.5;
  }


  .nav-toggle {
    display: none;
    height: 36px;
    width: 36px;
    background: none;
    border: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
  }

  .nav-right-mobile{
    display: none;
  }
  @media (max-width: 700px) {
    .nav-toggle {
      display: flex;
    }
    #navbar{
      width: calc(100% - 40px);
      padding: 0px 20px;
      display: block;
      flex-direction: row;
      align-items: center;
    }
    .nav-right-mobile{
      display: flex;
      gap: 1rem; /* spacing between buttons and icons */
      align-items: center;
    }
    .nav-right {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 60px;
      right: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      padding: 15px;
    }
  
    .nav-right.show {
      display: flex;
    }
  }

  #nav-menu{
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    width: 100%;
    background-color: white;
    padding: 10px 0;
  }
  #nav-menu.show{
    display: block !important;
    max-height: 500px; /* adjust based on content height */
  }
  #navbar.show{
    height: auto;
  }
  #nav-menu .nav-btn {
    display: block;
    width: 100%; /* Optional: makes each button full-width */
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    height: 56px;
  }



  #search-product{
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid black;
    border-radius: 100px;
    height: 32px;
    padding: 0px 10px;
  }
@media (max-width: 700px) {
  #search-product{
    border: none;
    padding-left: 0;
  }
  #search-product p {
    display: none;
  }
}


.nav-basket{
  position: relative;
}
#basket-item-num{
  position: absolute;
  top: 8px;
  right: -4px;
  width: 16px;
  height: 16px;
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  text-align: center;
 
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  display: none;
}
































































/*MOVE LATER*/

#page-content{
  
  margin: 0 auto;

}
#page-content h1{
  margin: 0;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 500;
}

.productPreviewList{
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 40px;
}
@media (max-width: 1000px) {
    .productPreviewList {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .productPreviewList {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    .show-all-products{
        margin: 0 auto;
    }
}

.product{
    width: auto;
    cursor: pointer;
    text-decoration: none;          /* Remove underline */
    color: inherit;                 /* Inherit text color from parent */
    background-color: #F6EEDB;
    border-radius: 12px;
}
.image-wrapper {
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
  }
  
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.image-wrapper img:hover {
    transform: scale(1.08);   /* 🔍 Zoom in */
}

.product-title{
    margin: 0;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Fustat', sans-serif;
    text-align: center;
    padding: 0px 6px;
}
.product-subtitle{
    margin: 0;
    color: #818181;
    font-weight: 400;
    font-size: 12px;
    font-family: 'Fustat', sans-serif;
    line-height: 1.2;
    display: none;
}
.product-price{
  font-size: 14px;
  font-weight: 300;
  color: #000000;
  text-align: center;
}
.product-price-container{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    display: flex;
    justify-content: center;
}

.show-all-products{
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}




























footer{
  width: 100%;
  background-color: #F5EFE1;
  padding-top: 60px;
  margin-top: 100px;
  padding-bottom: 70px;
}
.footer-columns{
  display: flex;
  align-items: start;
  gap: 100px;
}
/* If screen is <= 1300px: 2x2 grid */
@media (max-width: 1300px) {
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* If screen is <= 700px: 4x1 grid (stacked) */
@media (max-width: 700px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}


.brand-column p{
  margin: 0;
  margin-top: 4px;
  line-height: 1.2;
  font-size: 14px;
}
.socials{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-column h3{
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
}
.footer-column p{
  margin-bottom: 0;
  font-size: 14px;
}

.footer-column img{
  max-width: 100%;
}










.hero-section {
  background-color: #E9E8E4;
  display: flex;
  align-items: top;
  gap: 90px;
  flex-wrap: wrap; /* Optional: lets it wrap on smaller screens */
  
  position: relative;
}

.hero-text {
  flex: 1;
  margin-top: 60px;
  padding-left: max(30px, calc((100vw - 1300px) / 2));
  
  position: absolute;
  z-index: 99;
}

.hero-title {
  font-family: 'Gambarino', sans-serif;
  font-size: 58px !important;
  line-height: 1.2;
  margin: 0; /* Just in case */
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 0;
  width: 70%;
}

.hero-video {
  width: auto;
  height: 350px;
  background-color: #E9E8E4;
  flex-shrink: 0; /* Prevent shrinking */
  overflow: hidden;
}
.explore-shop{
  background-color: transparent;
  
  color: #000;
  border-radius: 18px;
  padding: 0px 30px;
  background-color: #1e2525;
  color: #fff;
  font-family: 'Fustat', sans-serif;
  
  margin-top: 80px;
}
.explore-shop:hover{
  background-color: #373f3f;
}

.main-content{
  max-width: 1300px;
  padding: 0px 30px;
  margin: 0 auto;
  margin-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 1400px) {
  .hero-section {
    gap: 40px;
  }
  .hero-video {
    width: 50%;
  }
  .hero-text{
    
  }
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 48px !important;
  }
  .hero-subtitle{
    width: 100%;
  }
}
@media (max-width: 900px) {
  .hero-section {
    display: block;
    padding-bottom: 0px;
  }
  .hero-video {
    width: 100%;
  }
  .explore-shop{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .hero-text{
      margin-top: 0;
    padding: 0px 30px;
    padding-top: 30px;
  }
}
@media (max-width: 700px) {
  .hero-title {
    font-size: 38px !important;
  }
  .main-content{
      padding: 0px 16px;
      padding-bottom: 100px;
    }
  .productPreviewList{
    gap: 10px;
  }
}




.shop-heading{
  font-family: 'Sentinent Italic', sans-serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: start;
}








.collections-preview-container {
      height: 520px;
      overflow: hidden;
      border-radius: 22px;
      position: relative;
      -webkit-overflow-scrolling: touch;
      box-sizing: border-box;
      background: #000;
    }

    .slides-wrapper {
      display: flex;
      height: 100%;
      gap: 0;
      transition: transform 900ms cubic-bezier(.22,.9,.35,1);
      will-change: transform;
      backface-visibility: hidden;
      transform-style: preserve-3d;
    }

    .slide {
      flex: 0 0 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      background: #000;
    }

    .slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
      pointer-events: none;
      -webkit-user-drag: none;
    }

    .collection-title {
      position: absolute;
      font-size: 78px;
      font-family: 'Gambarino', sans-serif;
      z-index: 99;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #ffffff;
      opacity: 0;
      transition: opacity 0.35s ease, transform 0.7s cubic-bezier(0.9,0,0.1,1);
      text-align: center;
    }

    .slide.active .collection-title {
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    .collection-btn-grid {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .collection-btn-grid button {
      flex: 1;
      background-color: #F6EEDB;
      font-family: 'Fustat', sans-serif;
      text-align: center;
      border-radius: 18px;
      height: 54px;
      cursor: pointer;
      border: none;
      transition: background-color .2s ease, transform .12s ease;
    }

    .collection-btn-grid button.selected {
      background-color: #1e2525;
      color: #fff;
    }

@media (max-width: 768px) {
  .collections-preview-container { height: 420px; }
  .collection-title { font-size: 48px; }

  /* grid layout for buttons */
  .collection-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

}












.gift-container {
    width: 100%;
    height: 520px;
    background-color: #871E1E;
    color: #ffffff;
    border-radius: 22px !important;
    display: flex;
    overflow: hidden;
    margin-top: 100px;
}

.gift-container img {
    width: 50%;
    height: 200%;       /* fill the full container height */
    object-fit: cover;  /* crop instead of stretching */
    border-radius: 22px 0 0 22px; /* only left corners rounded */
    transform: translate(0%, -20%);
}
.gift-container-inner{
    padding-left: 40px;
}
.gift-container-inner p {
    width: 70%;
    margin-top: 10px;
}

.gift-container-text {
    font-family: 'Gambarino', sans-serif;
    font-size: 48px;
    padding-top: 40px;
    padding-right: 20px;
    font-weight: 400;
}
/* Gift container button */
.gift-btn {
    background-color: #ffffff;
    margin-top: 40px;         /* space below the text */
    color: #000;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.gift-btn:hover {
    background-color: #f0f0f0;  /* slightly lighter */
}

/* ===== Mobile layout ===== */
@media (max-width: 768px) {
  .gift-container {
    flex-direction: column;
    height: auto; /* let content define height */
    border-radius: 22px;
  }

  .gift-container img {
    width: 100%;
    height: 220px;   /* fixed height for mobile */
    transform: none;
    border-radius: 22px 22px 0 0; /* round only top corners */
  }

  .gift-container-text {
    font-size: 28px;
    padding: 20px;
    text-align: center;
  }
   .gift-btn {
        display: block;
        margin: 20px auto 30px auto; /* center horizontally below text */
    }
    .gift-container-inner{
    padding-left: 0px;
    }
    .gift-container-inner p {
    width: 85%;
    margin: 0 auto;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 30px;
    }
}












.story-section{
    background-color: #1D1D1D;
    color: #fff;
    
    width: 100%;
}

.story-section .main-content{
    margin-top: 0;
    display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story-section h2{
    margin-top: 80px;
    font-family: 'Gambarino', sans-serif;
    font-size: 48px;
    font-weight: unset;
    text-align: center;
    margin-bottom: 24px;
}

.story-section button{
    background-color: #32313A;
    margin-bottom: 60px;
}

#productPreviewList2 .product{
    color: #000;
    background-color: #fff;
}








.why-momenture {
  text-align: center;
  padding: 60px 16px;
  background-color: #FFF8E9;
  width: calc(100% - 32px);
}

.section-title {
  font-size: 36px;
  font-family: 'Gambarino', sans-serif;
  margin-bottom: 40px;
  font-weight: unset;
}

.why-grid {
    margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 0px;
  border-radius: 18px;
  mix-blend-mode: darken;
}

.why-item p {
  font-size: 22px;
  font-family: 'Sentinent Italic', sans-serif;
  max-width: 240px;
  margin: 0 auto;
}

/* Tablet (iPad) */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {

  .why-item img {
      width: 130px;
      height: 130px;
    margin-bottom: -12px;
  }
  .section-title {
      /*
    font-size: 28px;
    */
  }

  .why-item p {
    font-size: 20px;
  }
}
