@font-face {
    font-family: quiche;
    src: url(assets/font/Fontspring-DEMO-quichesans-regular.otf)
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: quiche;
}
html, body{
    height: 100%;
}
body{
    display: flex;
    flex-direction: column;
}
.main-content{
    flex: 1;
}

/* Navbar */
.navbar {
    background: #f3eeea;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    height: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
}
body.home-page .navbar {
    background: transparent;
}

.navbar .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo img {
    height: 80px;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.desktop-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    justify-content: flex-start;
}
.desktop-menu li{
    padding-top: 20px;
    margin-bottom: -10px;
}
.desktop-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}
body.home-page .desktop-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}
.navbar-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}
body.home-page .icon {
  width: 24px;
  height: 24px;
  color: white; 
  transition: color 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}
.icon {
  width: 24px;
  height: 24px;
  color: black; 
  transition: color 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}
body.home-page .navbar:hover,
body.home-page .navbar.scrolled {
  background: #f3eeea; 
  height: 100px;
}
body.home-page .navbar.scrolled .desktop-menu li a,
body.home-page .navbar:hover .desktop-menu li a,
body.home-page .navbar.scrolled .icon,
body.home-page .navbar:hover .icon {
  color: black;
}
.desktop-menu li a:hover,
body.home-page .navbar.scrolled .desktop-menu li a:hover,
body.home-page .navbar:hover .desktop-menu li a:hover
{
  color: #615761;
}
.icon:hover,
body.home-page .navbar:hover .icon:hover,
body.home-page .navbar.scrolled .icon:hover {
    color: #615761;       
}
body.home-page .navbar.scrolled .logo img,
body.home-page .navbar:hover .logo img {
  content: url("assets/logo.png");
}
/* dropdown */
.dropdown-bar {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: #f3eeea;
    padding: 30px 0;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
}
.dropdown-bar.active {
    display: block;
}
.dropdown-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 120px; 
    padding-left: 180px; 
}
.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 30px;
}
.dropdown-section h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: black;
    margin-bottom: 10px;
}
.dropdown-section a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-decoration: none;
  color: #3b3b3b;
  font-size: 12px;
  transition: color 0.2s ease;
}
.dropdown-section a:hover {
    color: #615761;
}
/* search bar */
.search-bar {
  position: fixed;
  top: 100px;          
  left: 0;
  width: 100%;
  background: #f3eeea;
  padding: 12px 20px;
  display: none;           
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
}
.search-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 10px;
}
.search-icon {
  width: 20px;
  height: 20px;
  stroke: #222;
  flex-shrink: 0;
}
.search-bar input {
  flex: 1;
  border: none;
  font-size: 16px;
  padding: 6px 8px;
  outline: none;
  background: transparent;
  color: #222;
}
.search-bar .iconcs, .icon-search {
  height: 24px;
  width: 24px;
  cursor: pointer;
  color: #615761;
}
.navbar.search-open {
  background: #f3eeea;
  height: 100px;
}
.navbar.search-open .desktop-menu li a,
.navbar.search-open .icon {
  color: black;
}
.navbar.search-open .logo img {
  content: url("assets/logo.png"); 
}
.navbar-lang {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.navbar-lang span {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
  color: black;
  transition: color 0.3s ease;
}
body.home-page .navbar-lang span {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}
.navbar-lang span:hover {
  color: #615761;
}
#navbarLangToggle{
    top: 2px; 
    position: relative;
}
#navbarLangCode{
      top: -4px;   
      position: relative;
}
#navbarLangDropdown {
  top: 100%;
  left: 0;
  margin-top: 6px;
}
.lang-dropdown {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  padding: 6px 0;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 999;
}
.lang-dropdown li {
  padding: 8px 16px;
  font-size: 14px;
  color: black;
  cursor: pointer;
}
.lang-dropdown li:hover {
  background: #f0f0f0;
}
.lang-dropdown.active {
  display: block;
}
.navbar.scrolled .navbar-lang span,
.navbar:hover .navbar-lang span,
.navbar.search-open .navbar-lang span,
.navbar.lang-dropdown .navbar-lang span {
  color: black;
}
.navbar.lang-dropdown{
  background: #f3eeea;
  height: 100px;
}
.navbar.lang-dropdown  .desktop-menu li a,
.navbar.lang-dropdown  .icon {
  color: black;
}
.navbar.lang-dropdown .logo img {
  content: url("assets/logo.png"); 
} 
.desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}
/* Sidebar*/
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #f3eeea;
    box-shadow: 2px 0 8px rgba(0,0,0,0.15);
    padding: 20px;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    z-index: 1100;
}
.sidebar.active {
    left: 0;
}
.close-btn {
    align-self: flex-start;
    cursor: pointer;
    margin: 15px 0;
    padding-bottom: 20px;
}
.close-btn .iconc{
    height: 28px;
    width: 28px;
    color: black;
    margin-left: -6px;
}
.close-btn .iconc:hover{
    color:#615761;
}
.menu-list {
    list-style: none;
    margin: 0 0 20px 0;
}
.menu-list li {
    margin-bottom: 15px;
}
.menu-list li:hover{
    color: #615761;
}
.menu-list li a {
    text-decoration: none;
    font-size: 16px;
    color: black;
    font-weight: 500;
    transition: color 0.3s;
}
.menu-list li a:hover {
    color: #615761;
}
.menu-item-with-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.arrow-icon {
    width: 24px;
    height: 24px;
    color: #000;
    flex-shrink: 0;
    transition: color 0.3s;
    margin-right: 5px;
}
.menu-item-with-arrow:hover .arrow-icon {
    color: #615761;
}
.sidebar-page {
    display: block;
    padding-right: 10px;
}
.sidebar-page.hidden {
    display: none;
}
#shopMenu {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
#shopMenu::-webkit-scrollbar-track{
  background-color: transparent;
}
.sidebar-page::-webkit-scrollbar {
    width: 4px; 
}
.sidebar-page::-webkit-scrollbar-track {
    background: #e6e1dc;
    border-radius: 10px;
}
.sidebar-page::-webkit-scrollbar-thumb {
    background: #8c7a70; 
    border-radius: 10px;
}
.sidebar-page::-webkit-scrollbar-thumb:hover {
    background: #615761;    
}
.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}
.back-btn:hover {
    color: #615761;
}
.back-btn .back-icon {
    width: 24px;
    height: 24px;
    color: #000;
    flex-shrink: 0;
}
.back-icon:hover{
  color: #615761;
}
.back-btn span{
  font-size: 16px;
  color: black;
  font-weight: 500;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-top: 15px;
}
.accordion-header span{
  padding-left: 10px;
  font-weight: 400;
  color: black;
  font-size: 14px;
}
.accordion-header a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}
.icona {
  color: #000;
  height: 24px;
  width: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.icona:hover{
  color: #615761;
}
.accordion-content {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    margin-top: 10px;
}
.accordion-content li {
    margin: 6px 0;
    list-style: none;
}
.accordion-content li a {
    text-decoration: none;
    font-size: 12px;
    color: #333;
    transition: color 0.3s;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.accordion-content li a:hover {
    color: #615761;
}
.accordion-content.active {
    display: flex;
}
.sidebar-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}
.sidebar-icons .iconsb{
    color: black;
    height: 24px;
    width: 24px;
}
.sidebar-icons .iconsb:hover{
    color: #615761;
}
#sidebarLangDropdown {
  bottom: 100%;
  left: 0;
  margin-bottom: 6px;
}
.sidebar-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.sidebar-lang-dropdown {
  position: absolute;
  bottom: 50px; 
  right: 10px; 
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 6px 0;
  display: none;
  flex-direction: column;
  z-index: 999;
  width: 100px;
}
.sidebar-lang-dropdown.active {
  display: flex;
}
.sidebar-lang-dropdown li {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  cursor: pointer;
  color: black;
}
.sidebar-lang-dropdown li:hover {
  background: #f0f0f0;
}
.sidebar-lang span{
    font-size: 14px;
    margin-left: 6px;
}
#sidebarLangCode{
    top: -2px;
}
.menu-btn {
    display: none;
}
.desktop-only {
    display: inline-block;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    .menu-btn {
        display: block;
        cursor: pointer;
    }
    .menu-btn .iconm{
        height: 28px;
        width: 28px;
        margin-top: 24px;
        color: black;
        transition: color 0.3s ease;
    }
    .menu-btn .iconm:hover{
       color: #615761;
    }
    body.home-page .menu-btn .iconm{
        height: 28px;
        width: 28px;
        margin-top: 24px;
        color: white;
        transition: color 0.3s ease;
    }
    body.home-page .navbar:hover .menu-btn .iconm,
    body.home-page .navbar.scrolled .menu-btn .iconm {
        color: black;
    }
    body.home-page .menu-btn .iconm:hover,
    body.home-page .navbar:hover .menu-btn .iconm:hover,
    body.home-page .navbar.scrolled .menu-btn .iconm:hover {
        color: #615761;
    }
    .desktop-only {
        display: none;
    }
    .navbar .logo img{
        align-items: center;
    }
    .navbar .content {
        justify-content: space-between;
    }
}
/* image slider */
.img-slider{
    position: relative;
    width: 100%;
    /* height: 720px; */
    overflow: hidden;
    /* z-index: 0; */
}
.img-slider .slide{
    /* z-index: 0; */
    position: absolute;
    width: 100%;
    height: auto;
    clip-path: circle(0% at 0 50%);
    top: 0;
    left: 0;
    opacity: 0;
}
.img-slider .slide.active{
     clip-path: circle(150% at 0 50%);
     transition: 2s;
     transition-property: clip-path;
     opacity: 1;
     position: relative;
}
.img-slider .slide img{
    object-fit: contain;
    width: 100%;
    height: auto;
    display: block;
}
.img-slider .navigation{
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%)
}
.img-slider .navigation .btn{
    background: rgba(255, 255, 255, 0.5);
    width: 8px;
    height: 8px;
    margin: 8px;
    border-radius: 50%;
    cursor: pointer;
}
.img-slider .navigation .btn.active{
    background: white;
}

@media (max-width: 820px){
    .img-slider {
        height: auto;
        /* margin-top: 50px; */
    }
    .img-slider .slide img {
        max-height: 60vh; 
    }
    .img-slider .navigation{
        bottom: 25px;
    }
    .img-slider .navigation .btn{
        width: 10px;
        height: 10px;
        margin: 8px;
    }
}
@media (max-width: 620px){
    .img-slider {
        height: auto;
         /* margin-top: 50px; */
    }
    .img-slider .slide img {
        max-height: 50vh; 
    }
    .img-slider .navigation{
        bottom: 15px;
    }
    .img-slider .navigation .btn{
        width: 8px;
        height: 8px;
        margin: 6px;
    }
}
/* new section */
.newSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 90vh;
  margin-bottom: 40px;
  gap: 40px;
  position: relative;
  margin-top: 0;
}
.newSection .subtitle {
  width: 45%;
  text-align: left;
}
.newSection h1 {
  font-size: 55px;
  line-height: 1.3;
  color: #3b3b3b;
  margin-bottom: 20px;
  text-align: left;
  padding-left: 20px ;
}
.explore-wrapper {
  display: flex;
  justify-content: center; 
  margin-top: 50px;
}
.explore-btn {
  display: inline-block;
  padding: 10px 0;
  font-size: 18px;
  color: #3b3b3b;
  text-decoration: none;
  border-bottom: 2px solid #8a7969;
  transition: border-color 0.3s ease;
}
.explore-btn:hover {
  border-bottom: 2px solid transparent;
}
.newSection .newColImg {
  flex: 1;
  display: flex;
  justify-content: center;
}
.newSection .newColImg img {
  width: 100%;
  max-width: 650px;
  height: auto;
}

@media (max-width: 768px) {
  /* newSection */
  .newSection {
    flex-direction: column; 
    text-align: center;
    padding: 20px;
    height: auto;
  }

  .newSection .subtitle {
    width: 100%; 
    text-align: center;
    padding: 0;
  }

  .newSection h1 {
    font-size: 32px; 
    padding-left: 0;
    text-align: center;
  }

  .newSection .newColImg {
    margin-top: 20px;
  }

  .newSection .newColImg img {
    max-width: 90%; 
  }
}

/* teaser vid section */
.teaserVid {
  display: flex;
  flex-direction: row-reverse; 
  align-items: center; 
  justify-content: space-between;
  gap: 30px;           
  padding: 40px 0;
  position: relative;
  margin-top: 0;
}
.teaserVid .vidDesc {
  flex: 1;              
  text-align: left;          
  color: #3b3b3b;
}
.vidDesc h2 {
  margin-bottom: 10px;
}
.vidDesc p {
  margin-top: 10px;
  font-size: 14px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.6;
  text-align: justify;
  padding-right: 15px;
}
.teaserVid video {
  flex: 1.2;           
  width: 100%;
  height: auto;
}
.watch-btn {
  padding-top: 20px;
  display: inline-block;
  padding: 10px 0;
  font-size: 14px;
  color: #3b3b3b;
  text-decoration: none;
  border-bottom: 2px solid #8a7969;
  transition: border-color 0.3s ease;
}
.watch-btn:hover {
  border-bottom: 2px solid transparent;
}
@media (max-width: 768px){
  .teaserVid {
    flex-direction: column; 
    text-align: center;
    padding: 20px;
  }

  .teaserVid .vidDesc {
    text-align: center;
    padding: 0;
  }

  .vidDesc p {
    padding: 0;
    text-align: justify;
  }

  .teaserVid video {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}
/* Footer */
footer{
    background: #8a7969;
    padding: 40px 0;
    text-align: left;
    color: #fff;
    margin-top: auto;
}
.footer-row{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: 1250px;
    margin: auto; 
    padding: 0 30px; 
    gap: 30px;
}
.footer-col{
   text-align: justify;
   padding: 10px;
   min-height: 250px; 
   flex: 1;
}
.footer-col h3{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
.footer-col p{
    margin-top: 10px;
    font-size: 14px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.footer-col.about-us{
  flex: 0 0 300px; 
  max-width: 300px;
}
.about-us p{
  font-size: 13px;
  line-height: 26px;
}
.footer-col.info {
    flex: 0 0 auto;   
}
.footer-col.contact-us {
    flex: 0 0 300px;
}
.footer-col .links{
    margin-top: 10px;
}
.footer-col .links li{
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-col .links li a{
    color: #fff;
    text-decoration: none;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.footer-col .links li a:hover{
    color: #baafa5;
}
.mail-num{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mail-num div{
    display: flex;
    align-items: center;
    gap: 8px;
}
.mail-num img{
    width: 25px;
    height: 25px;
}
.mail-num p{
    margin-bottom: 8px;
    margin-left: 5px;
}
.socials-wrapper{
    display: flex;
    gap: 20px;
    padding-top: 45px;
    padding-left: 5px;
}
.icons {
  width: 24px;
  height: 24px;
  fill: currentColor;  
  color: #fff;         
  transition: color 0.3s;
  cursor: pointer;
}
.icons use {
  pointer-events: none; 
}
.icons:hover {
  color: #baafa5;
}
.bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    flex-wrap: wrap;
}
.bottom .copy{
    min-width: 200px;
    text-align: left;
}
.bottom p{
    margin: 0;
    font-size: 14px;
}
.iconl{
    width: 24px;
    height: 24px; 
    color: #fff;
}
.iconl:hover{
    color: #baafa5;
}
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column; 
        gap: 10px; 
    }
    .footer-col.about-us,
    .footer-col.info,
    .footer-col.contact-us {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Shop Page */
.shopPage {
    margin-top: 120px;
    /* padding: 20px; */
    margin-bottom: 40px;
    height: 100%;
}
.shop-title {
    font-size: 35px;
    font-weight: 600;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 40px;
}
.wrapper-shop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.product {
  /* padding: 10px; */
  border-radius: 4px;
  text-align: center;
  transition: transform 0.2s ease;
  background: #fff;
}
.product:hover { 
  transform: scale(1.1);
}
.product-img {
  display: block;
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-name p {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0;
}
.product-name a {
  color: #000;
  text-decoration: none;
}
.product-name a:hover {
  color: #615761;
}
.product-price p {
  font-family: sans-serif;
  font-size: 14px;
  color: #444;
}

/* Product Page */
.product-page {
      display: flex;
      max-width: 1200px;
      margin: 50px auto;
      gap: 50px;
      padding: 0 20px;
      margin-top: 140px;
      margin-bottom: 50px;
  }

    /* Left side (images) */
  .product-gallery {
      display: flex;
      gap: 15px;
      flex: 1;
  }

  .thumbnails {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .thumbnails img {
      width: 60px;
      height: 80px;
      object-fit: cover;
      cursor: pointer;
      border: 1px solid #ddd;
      transition: border 0.3s;
  }

  .thumbnails img:hover,
  .thumbnails img.active {
      border: 2px solid #000;
  }
  .main-image{
    flex: 1;
  }
  .main-image img {
      width: 450px;
      height: auto;
      object-fit: cover;
      max-width: 450px;
  }

  /* Right side (details) */
  .product-info {
      flex: 1;
      max-width: 500px;
  }
  .product-info h2 {
      font-size: 22px;
      margin-bottom: 15px;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  .price {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 25px;
  }
  .section {
    margin-bottom: 25px;
  }
  .section strong{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
  }
  .section p{
    color: #000;
    line-height: 1.6;
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
   .color-box{
    height: 32px;
    width: 34px;
    margin-top: 10px;
    border: solid 1px #615761;
  }
  .color-box.p1{
    background-color: #feeddb;
  }
  .color-box.p2{
    background-color: #f1eee9;
  }
  .color-box.p4{
    background-color: #f3eae0;
  }
  .color-box.p6{
    background-color: black;
  }
  .color-box.p7{
    background-color: black;
  }
  .sizes{
    margin-bottom: 25px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  .sizes button {
      border: 1px solid #ccc;
      background: #fff;
      padding: 8px 14px;
      margin-right: 8px;
      cursor: pointer;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      border-radius: 4px;
      transition: all 0.3 ease;
  }
  .sizes button.active,
  .sizes button:hover
  {
      border: 2px solid #000;
  }
  .quantity {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 25px;
  }
  .quantity label{
    margin-right: 10px;
  }
  .quantity button {
      width: 35px;
      height: 35px;
      border: 1px solid #000;
      background: #fff;
      cursor: pointer;
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      border-radius: 4px;
      transition: all 0.3 ease;
  }
  .quantity button:hover,
  .quantity button:active{
    border: 2px solid #000;
  }
  .quantity input {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
      width: 46px;
      height: 35px;
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      padding-left: 12px;
      box-sizing: border-box;
      align-items: center;
      justify-content: center;
  }
  .buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }
  .buttons button{
    flex: 1;
    padding: 16px 24px;
    /* border: none; */
    border-radius: 12px;
    font-size: 16px;
    /* font-weight: 600; */
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
  }
  .buttons button:active{
    border: 1px solid #000;
  }
  .add-cart, .buy-now {
      display: block;
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      cursor: pointer;
      /* border: none; */
      font-size: 16px;
  }

  .add-cart {
      border: 1px solid #000;
      background: #fff;
  }

  .buy-now {
      background: #000;
      color: #fff;
  }


  @media (max-width: 768px) {
    .product-page {
      flex-direction: column;
      gap: 30px;
      margin-top: 20px;
    }
    .product-gallery {
      flex-direction: column-reverse;
    }
    .thumbnails {
      flex-direction: row;
      justify-content: center;
      gap: 8px;
    }
    .thumbnails img {
      width: 50px;
      height: 65px;
    }
    .main-image img {
       height: 400px;
    }
    .buttons {
      flex-direction: column;
    }
    .product-info h2 {
      font-size: 24px;
    }
    .price {
      font-size: 24px;
    }
  }

.loading {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.loaded {
   opacity: 1;
}
 /* Success message */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #8c7a70;
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
}
.success-message.show {
  transform: translateX(0);
}

/* Collections Page */
.catPage {
    margin-top: 120px;
    /* padding: 20px; */
    margin-bottom: 40px;
    height: 100%;
}
.cat-title {
    font-size: 35px;
    font-weight: 600;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
.wrapper-cat{
    height: auto;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.wrapper-cat .box{
    flex: 1 1 calc(33% - 20px);
    min-width: calc(33% - 20px);
    padding: 5px;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 10px;
    transition: background 0.3s, transform 0.3s;
}
.wrapper-cat .box:hover{
    transform: scale(1.05);
}
.box .cover-img{
    padding: 3px;
}
.cover-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.box .cat-name{
  text-align: center;
}
.box .cat-name a{
  text-decoration: none;
  color: #222;
}
.box .cat-name p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .wrapper-cat {
    justify-content: center; 
  }
  .wrapper-cat .box {
    flex: 1 1 100%; 
    max-width: 100%;
    margin: 10px 0; 
  }
}


/* About Page */
.aboutPage {
    margin-top: 120px;
    /* padding: 20px; */
    margin-bottom: 50px;
    height: 100%;
}
.about-title {
    font-size: 35px;
    font-weight: 600;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 40px;
}
.about {
  max-width: 1130px;
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px; 
  flex-wrap: wrap; 
}

.about-img {
  width: 100%;
  max-width: 450px; 
  height: auto;
  object-fit: cover;
}

.about-text {
  flex: 1; 
  min-width: 250px; 
  text-align: justify;
}

.about-text p {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Contact Page */
.contactPage {
  position: relative;
  top: 0;
  display: flex;
  height: calc(100vh - 80px); 
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden; 
  border-radius: 8px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.split.contact {
  flex: 1;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  height: 100%;
}

.contact h1 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 28px;
}

.contact p{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
}

.contact .wa, 
.contact .mail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
}

.iconcf {
  width: 24px;
  height: 24px;
  fill: #333;
}

.split.find-us {
  flex: 2; 
  background: #fff;
  overflow-y: auto;
  padding: 40px;
  height: 100%;
}

.find-us h1 {
  margin-top: 110px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
}

.find-us p{
  margin-top: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.store-list {
  max-width: 600px;
  margin: auto;
}

.store-list h2 {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 8px;
}

.store-loc {
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 15px;
}

.store-list p {
  margin: 5px 0;
  line-height: 1.6;
  color: #333;
}

.store-list p:not(.store-loc) {
  padding-left: 0;
  margin-bottom: 3px;
}

.store-list a {
  color: #000;
  text-decoration: underline;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 25px;
  font-weight: 500;
}

.store-list a:hover {
  color: #555;
}

/* Size Page */
.sizingPage {
  margin-top: 120px;
  margin-bottom: 50px;
  height: 100%;
  text-align: center;
}

.sizing-title{
  margin-top: 40px;
  margin-bottom: 20px;
}
.chart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}
.chart-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
}

/* Raya Collection */
.colPage {
    margin-top: 120px;
    margin-bottom: 40px;
    height: 100%;
}
.col-title {
    font-size: 35px;
    font-weight: 600;
    color: #3b3b3b;
    text-align: center;
    margin-bottom: 40px;
}
.wrapper-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 60px;
}
.collection {
  border-radius: 4px;
  text-align: center;
  transition: transform 0.2s ease;
  background: #fff;
}
.collection.cat:hover { 
  transform: scale(1.1);
}
.collection-img {
  display: block;
  width: 100%;
  height: 650px;
  overflow: hidden;
  margin-bottom: 10px;
}
.collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .wrapper-col {
    grid-template-columns: 1fr; 
  }
}
