 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',sans-serif;
      background:#f7f2ea;
      color:#3b2f2f;
      overflow-x:hidden;
    }

    h1,h2,h3,h4{
      font-family:'Cormorant Garamond',serif;
      font-weight:700;
      line-height:1.1;
    }

    section{
      padding:100px 7%;
      position:relative;
    }

    img{
      width:100%;
      display:block;
    }

    .btn{
      display:inline-block;
      padding:14px 34px;
      background:#6b7a52;
      color:#fff;
      text-decoration:none;
      border-radius:50px;
      transition:.4s;
      font-weight:500;
      border:1px solid transparent;
    }

    .btn:hover{
      background:transparent;
      border-color:#6b7a52;
      color:#6b7a52;
      transform:translateY(-5px) scale(1.05);
      box-shadow:0 15px 30px rgba(107,122,82,0.25);
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:60px;
      margin-bottom:15px;
    }

    .section-title p{
      max-width:700px;
      margin:auto;
      color:#6d625a;
      line-height:1.8;
    }

    /* HEADER */

   
.header{
  width: 100%;
  padding: 22px 8%;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(12px);
}



/* LOGO */

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:60px;
  height:auto;
  object-fit:contain;
}

/* NAVBAR */

.navbar{
  display:flex;
  align-items:center;
  gap:35px;
}

.navbar a{
  text-decoration:none;
  color:#3b2f2f;
  font-size:16px;
  font-weight:500;
  position:relative;
  transition:.4s;
}

.navbar a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:#7b8b5a;
  transition:.4s;
}

.navbar a:hover::after{
  width:100%;
}

.navbar a:hover{
  color:#7b8b5a;
}


/* RIGHT SIDE */

.nav-right{
  display:flex;
  align-items:center;
  gap:20px;
}


/* CART ICON */

.cart-icon{
  width:55px;
  height:55px;
  border-radius:50%;
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.4s;
}

.cart-icon:hover{
  transform:translateY(-4px);
}

.cart-icon i{
  font-size:20px;
  color:#3b2f2f;
}

.cart-icon span{
  position:absolute;
  top:-5px;
  right:-2px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#7b8b5a;
  color:#fff;
  font-size:12px;
  display:flex;
  justify-content:center;
  align-items:center;
}


/* BUTTON */

.explore-btn{
  padding:15px 34px;
  border:none;
  border-radius:50px;
  background:#7b8b5a;
  color:#fff;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:.4s;
}

.explore-btn:hover{
  background:#3b2f2f;
  transform:translateY(-4px);
}


/* MOBILE */
@media(max-width:768px){

  .logo img{
    width:80px;
  }
  
}

@media(max-width:992px){

  .navbar{
    display:none;
  }
  



  .explore-btn{
    padding:13px 24px;
    font-size:14px;
  }

}
.hero4{
   background:url('../image/productbg.jpg') center/cover !important;
}

    /* HERO */
    .hero1{
       background:url('../image/aboutherobg.jpg') center/cover !important;
      
    }


    .hero{
      min-height:100vh;
      background:url('../image/indexhero.jpg') center/cover;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      position:relative;
    }
    .hero3{
       background:url('../image/collection-bg.jpg') center/cover !important;

    }
    

    .hero::before{
      content:'';
      position:absolute;
      inset:0;
      background:rgba(0,0,0,0.45);
    }

    .hero-content{
      position:relative;
      z-index:2;
      max-width:900px;
      color:#fff;
    }

    .hero-content h1{
      font-size:90px;
      margin-bottom:25px;
    }

    .hero-content p{
      font-size:18px;
      line-height:1.9;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      justify-content:center;
      gap:20px;
      flex-wrap:wrap;
    }

    /* FEATURES */

    .features-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:25px;
    }

    @keyframes floatCard{
      0%{transform:translateY(0px);} 
      50%{transform:translateY(-10px);} 
      100%{transform:translateY(0px);} 
    }

    @keyframes glowPulse{
      0%{box-shadow:0 0 0 rgba(107,122,82,0);} 
      50%{box-shadow:0 0 30px rgba(107,122,82,0.25);} 
      100%{box-shadow:0 0 0 rgba(107,122,82,0);} 
    }

    @keyframes slowZoom{
      from{transform:scale(1);} 
      to{transform:scale(1.08);} 
    }

    @keyframes rotateFloat{
      0%{transform:rotate(0deg) translateY(0px);} 
      50%{transform:rotate(2deg) translateY(-8px);} 
      100%{transform:rotate(0deg) translateY(0px);} 
    }

    .feature-card{
      background:#fff;
      padding:40px 30px;
      border-radius:30px;
      transition:.4s;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .feature-card:hover{
      transform:translateY(-12px) scale(1.02);
      animation:glowPulse 2s infinite;
    }

    .feature-card h3{
      font-size:34px;
      margin-bottom:15px;
    }

    .feature-card p{
      line-height:1.8;
      color:#6d625a;
    }

    /* ABOUT */

    .about{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
    }

    
    .about-images img{
      border-radius:30px;
      width: 100%;
      height:auto;
      object-fit:cover;
    }

    .about-content h2{
      font-size:60px;
      margin-bottom:25px;
    }

    .about-content p{
      line-height:2;
      
      color:#6d625a;
    }

    .counter-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:20px;
      margin-top:40px;
    }

    .counter-box{
      background:#fff;
      padding:25px;
      border-radius:20px;
      text-align:center;
    }

    .counter-box h3{
      font-size:45px;
      color:#6b7a52;
    }

    /* MATERIALS */

    .materials-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:30px;
    }

    .material-card{
      position:relative;
      overflow:hidden;
      border-radius:35px;
      height:450px;
    }


    .material-card img{
      animation:slowZoom 8s linear infinite alternate;
      height:100%;
      object-fit:cover;
      transition:1s;
    }

    .material-card:hover img{
      transform:scale(1.1);
    }

    .material-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(0,0,0,0.7),transparent);
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:40px;
      color:#fff;
    }

    .material-overlay h3{
      font-size:36px;
      margin-bottom:10px;
    }

    /* COLLECTIONS */

    .collection-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:25px;
    }

    .collection-card{
      animation:floatCard 6s ease-in-out infinite;
      background:#fff;
      border-radius:30px;
      overflow:hidden;
      transition:.5s;
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .collection-card:hover{
      transform:translateY(-10px);
    }

    .collection-card img{
      height:300px;
      object-fit:cover;
    }

    .collection-content{
      padding:25px;
    }

    .collection-content h3{
      font-size:36px;
      margin-bottom:10px;
    }

    /* PROCESS */
    

    .process-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:20px;
    }

    .process-box{
      text-align:center;
      background:#fff;
      padding:40px 20px;
      border-radius:25px;
      position:relative;
    }

    .process-box span{
      width:70px;
      height:70px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin:auto;
      border-radius:50%;
      background:#6b7a52;
      color:#fff;
      font-size:22px;
      margin-bottom:25px;
    }

    .process-box h3{
      font-size:30px;
    }

    /* WHY CHOOSE */

    .why-section{
      background:#2e2623;
      color:#fff;
    }

    .why-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:25px;
    }

    .why-card{
      animation:rotateFloat 6s ease-in-out infinite;
      background:rgba(255,255,255,0.08);
      backdrop-filter:blur(10px);
      padding:35px;
      border-radius:30px;
      border:1px solid rgba(255,255,255,0.1);
      transition:.4s;
    }

    .why-card:hover{
      transform:translateY(-10px);
    }

    .why-card h3{
      font-size:34px;
      margin-bottom:15px;
    }

    /* GALLERY */
    .gallery-section{
  padding:80px 20px;
  background:#fafaf7;
}

/* TITLE */
.section-title{
  text-align:center;
  margin-bottom:40px;
}



.section-title p{
  color:#666;
}

/* FILTERS */
.filters{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.filters button{
  padding:10px 18px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:25px;
  cursor:pointer;
  transition:0.3s;
  font-size:14px;
}

.filters button:hover{
  background:#6b7a52;
  color:#fff;
  border-color:#6b7a52;
}

/* active filter */
.filters .active{
  background:#6b7a52;
  color:#fff;
  border-color:#6b7a52;
}

/* GALLERY GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

/* images */
.gallery-grid img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:15px;
  transition:0.4s;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* hover effect */
.gallery-grid img:hover{
  transform:scale(1.05);
}


    .gallery-grid{
      columns:3 250px;
      gap:20px;
    }

    .gallery-grid img{
      margin-bottom:20px;
      border-radius:25px;
      transition:.5s;
    }

    .gallery-grid img:hover{
      transform:scale(1.05) rotate(1deg);
      filter:brightness(1.05);
    }
.slider{
  max-width:850px;
  margin:auto;
  position:relative;
}

/* glass card */
.slide{
  display:none;
  padding:70px 50px;
  border-radius:30px;
  background: #efe5d6;;
  backdrop-filter:blur(12px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
  border:1px solid rgba(255,255,255,0.4);
  position:relative;
}

/* active slide animation */
.slide.active{
  display:block;
  animation:fadeUp 0.6s ease forwards;
}

/* quote icon */
.quote{
  font-size:90px;
  color:#6b7a52;
  opacity:0.15;
  position:absolute;
  top:10px;
  left:20px;
}

/* text */
.slide h2{
  font-size:55px;
  margin-bottom:20px;
}

.slide p{
  font-size:18px;
  line-height:1.8;
  color:#555;
  max-width:700px;
  margin:auto;
}

.client{
  margin-top:20px;
  font-weight:600;
  color:#6b7a52;
}

/* controls */
.controls{
  margin-top:25px;
}

.controls button{
  background:#6b7a52;
  color:#fff;
  border:none;
  width:50px;
  height:50px;
  border-radius:50%;
  font-size:22px;
  cursor:pointer;
  margin:0 8px;
  transition:0.3s;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.controls button:hover{
  transform:scale(1.1);
  background:#556644;
}

/* animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
.testimonial-section{
  background-image: url("../image/clientreviewbg.jpg");
}


    /* TESTIMONIAL */

    .testimonial{
      background:#efe5d6;
      border-radius:40px;
      text-align:center;
      padding:70px;
    }

    .testimonial h2{
      font-size:55px;
      margin-bottom:30px;
    }

    .testimonial p{
      max-width:800px;
      margin:auto;
      line-height:2;
      font-size:20px;
    }

    /* FAQ */

    .faq-container{
      max-width:900px;
      margin:auto;
    }

    .faq-item{
      background:#fff;
      border-radius:20px;
      margin-bottom:20px;
      overflow:hidden;
    }

    .faq-question{
      padding:25px;
      cursor:pointer;
      font-size:22px;
      font-weight:600;
    }

    .faq-answer{
      padding:0 25px 25px;
      line-height:1.8;
      display:none;
      color:#6d625a;
    }

    /* NEWSLETTER */

    .newsletter{
      background:#e8dccb;
      border-radius:40px;
      text-align:center;
      padding:80px 40px;
    }

    .newsletter h2{
      font-size:65px;
      margin-bottom:20px;
    }

    .newsletter-form{
      max-width:650px;
      margin:40px auto 0;
      display:flex;
      background:#fff;
      border-radius:60px;
      overflow:hidden;
    }

    .newsletter-form input{
      flex:1;
      padding:20px;
      border:none;
      outline:none;
      font-size:16px;
    }

    .newsletter-form button{
      border:none;
      background:#6b7a52;
      color:#fff;
      padding:0 40px;
      cursor:pointer;
    }

    /* FOOTER */

    footer{
      background:#2e2623;
      color:#fff;
      padding:100px 7% 40px;
    }

    .footer-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:40px;
      margin-bottom:60px;
    }

    .footer-col h3{
      font-size:32px;
      margin-bottom:20px;
    }

    .footer-col a,
    .footer-col p{
      display:block;
      color:#d8d1cb;
      margin-bottom:12px;
      text-decoration:none;
      line-height:1.8;
    }

    .copyright{
      text-align:center;
      border-top:1px solid rgba(255,255,255,0.1);
      padding-top:25px;
      color:#cfc7c0;
    }

    /* RESPONSIVE */

    @media(max-width:1100px){
      .features-grid,
      .collection-grid,
      .why-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .process-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .about{
        grid-template-columns:1fr;
      }

      .hero-content h1{
        font-size:70px;
      }
    }

    @media(max-width:768px){

      section{
        padding:80px 5%;
      }

      nav{
        display:none;
      }

      .hero-content h1,
      .about-content h2,
      .newsletter h2,
      .section-title h2{
        font-size:48px;
      }

      .features-grid,
      .materials-grid,
      .collection-grid,
      .why-grid,
      .footer-grid,
      .process-grid{
        grid-template-columns:1fr;
      }

      .newsletter-form{
        flex-direction:column;
        border-radius:25px;
      }

      .newsletter-form button{
        padding:20px;
      }

      .testimonial{
        padding:40px 25px;
      }

      .testimonial h2{
        font-size:40px;
      }
    }
    /* POPUP TABS */

.popup-tabs{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:50px;
}

.popup-btn{
  padding:14px 30px;
  border:none;
  border-radius:50px;
  background:#e7dccd;
  cursor:pointer;
  font-weight:600;
  transition:.4s;
}

.popup-btn.active,
.popup-btn:hover{
  background:#6b7a52;
  color:#fff;
}

.popup-content-box{
  display:none;
}

.popup-content-box.active-popup{
  display:block;
}

.view-btn{
  margin-top:20px;
}
.product-popup{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.75);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:9999;
      padding:20px;
    }

    .popup-content{
      width:100%;
      max-width:850px;
      background:#fff;
      border-radius:35px;
      overflow:hidden;
      display:grid;
      grid-template-columns:1fr 1fr;
      animation:fadePopup .5s ease;
    }

    @keyframes fadePopup{
      from{
        opacity:0;
        transform:translateY(40px) scale(.95);
      }
      to{
        opacity:1;
        transform:translateY(0) scale(1);
      }
    }

    .popup-content img{
      height:100%;
      object-fit:cover;
    }

    .popup-details{
      padding:45px;
    }

    .popup-details h2{
      font-size:55px;
      margin-bottom:20px;
    }

    .popup-details p{
      line-height:1.9;
      color:#6d625a;
      margin-bottom:20px;
    }

    .popup-details ul{
      padding-left:18px;
      line-height:2;
      color:#6d625a;
    }

    .close-popup{
      position:absolute;
      top:20px;
      right:25px;
      font-size:35px;
      cursor:pointer;
      color:#fff;
      z-index:10000;
    }

    @media(max-width:768px){

      .popup-content{
        grid-template-columns:1fr;
      }

      .popup-details h2{
        font-size:40px;
      }

    }
    .partner-section{
  padding:80px 20px;
  text-align:center;
  background:#fafaf7;
  display: none;
}

.partner-section h2{
  font-size:60px;
  margin-bottom:10px;
}

.partner-section p{
  color:#666;
  margin-bottom:40px;
}

/* marquee container */
.marquee{
  overflow:hidden;
  position:relative;
}

/* moving track */
.track{
  display:flex;
  gap:60px;
  align-items:center;
  width:max-content;
  animation:scroll 20s linear infinite;
}

/* logos */
.track img{
  width:120px;
  filter:grayscale(100%);
  opacity:0.7;
  transition:0.3s;
}

.track img:hover{
  filter:grayscale(0%);
  opacity:1;
  transform:scale(1.05);
}

/* animation */
@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}
/* SECTION BASE */
.our-story{
  padding: 100px 8%;
  background: #f8f4ee;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.story-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT IMAGES */
.story-images{
  flex: 1;
  position: relative;
  min-height: 450px;
}

.story-images .img{
  position: absolute;
  width: 55%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s ease;
}

.img1{
  top: 0;
  left: 0;
}

.img2{
  top: 80px;
  right: 0;
}

.img3{
  bottom: 0;
  left: 20%;
}

/* RIGHT CONTENT */
.story-content{
  flex: 1;
}

.title{
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: #2f3e2f;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.text{
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.quote{
  margin-top: 25px;
  padding-left: 15px;
  border-left: 3px solid #6b8e5a;
  font-style: italic;
  color: #3b4a3b;
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* ANIMATION ACTIVE STATE */
.show .img,
.show .title,
.show .text,
.show .quote{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* STAGGER EFFECT */
.show .img1{ transition-delay: 0.2s; }
.show .img2{ transition-delay: 0.4s; }
.show .img3{ transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 900px){
  .story-container{
    flex-direction: column;
  }

  .story-images{
    width: 100%;
    min-height: 350px;
  }

  .story-images .img{
    width: 60%;
  }

  .title{
    font-size: 28px;
  }
}
/* SECTION BASE */
.split-mv{
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.split-container{
  display: flex;
  min-height: 100vh;
}

/* BOX COMMON */
.split-box{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  transition: all 0.8s ease;
  overflow: hidden;
}

/* MISSION SIDE */
.mission{
  background: #2f4a33;
  color: #fff;
}

/* VISION SIDE */
.vision{
  background: #f8f4ee;
  color: #2f3e2f;
}

/* CONTENT */
.content{
  max-width: 500px;
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* ICON */
.icon{
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

/* HEADING */
h2{
  font-size: 34px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

/* PARAGRAPH */
p{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* LIST */
ul{
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

li{
  margin-bottom: 8px;
  font-size: 14px;
}

/* ANIMATION ON SCROLL */
.show .content{
  opacity: 1;
  transform: translateY(0);
}

/* HOVER EFFECT */
.split-box:hover{
  flex: 1.2;
}

/* FLOAT ANIMATION */
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* RESPONSIVE */
@media (max-width: 900px){
  .split-container{
    flex-direction: column;
  }

  .split-box{
    min-height: 50vh;
    padding: 40px 25px;
  }

  h2{
    font-size: 26px;
  }
}
/* SECTION */
.design-philosophy-img{
  position: relative;
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* BACKGROUND */
.dp-bg{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f8f4ee;
}

/* OVERLAY */
.dp-overlay{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 80px 8%;
}

/* CONTAINER */
.dp-container{
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.dp-left{
  flex: 1;
}

.dp-left img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: scale(0.95);
  opacity: 0;
  transition: 1s ease;
}

/* RIGHT CONTENT */
.dp-right{
  flex: 1;
  color: #2f3e2f;
}

.dp-right h2{
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.dp-right p{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* POINTS */
.points{
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.points div{
  padding: 10px 12px;
  background: #ffffff;
  border-left: 3px solid #6b8e5a;
  border-radius: 6px;
  font-size: 14px;

  opacity: 0;
  transform: translateX(30px);
  transition: 0.8s ease;
}

/* ANIMATION ACTIVE */
.show .dp-left img{
  opacity: 1;
  transform: scale(1);
}

.show .dp-right h2,
.show .dp-right p{
  opacity: 1;
  transform: translateY(0);
}

.show .points div{
  opacity: 1;
  transform: translateX(0);
}

/* STAGGER */
.show .points div:nth-child(1){ transition-delay: 0.2s; }
.show .points div:nth-child(2){ transition-delay: 0.3s; }
.show .points div:nth-child(3){ transition-delay: 0.4s; }
.show .points div:nth-child(4){ transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 900px){
  .dp-container{
    flex-direction: column;
    text-align: center;
  }

  .dp-right h2{
    font-size: 26px;
  }

  .points div{
    text-align: left;
  }
}
/* SECTION BASE */
.quality{
  padding: 100px 8%;
  background: #f8f4ee;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.qa-container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.qa-header{
  text-align: center;
  margin-bottom: 60px;
}

.qa-header h2{
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: #2f3e2f;
  margin-bottom: 15px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.qa-header p{
  color: #666;
  font-size: 16px;
  max-width: 700px;
  margin: auto;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* GRID */
.qa-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.qa-card{
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);

  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

/* ICON */
.qa-card .icon{
  font-size: 35px;
  margin-bottom: 12px;
}

/* TITLE */
.qa-card h3{
  font-size: 18px;
  margin-bottom: 10px;
  color: #2f3e2f;
}

/* TEXT */
.qa-card p{
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER */
.qa-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* ANIMATION ACTIVE */
.show .qa-header h2,
.show .qa-header p{
  opacity: 1;
  transform: translateY(0);
}

.show .qa-card{
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.show .qa-card:nth-child(1){ transition-delay: 0.2s; }
.show .qa-card:nth-child(2){ transition-delay: 0.3s; }
.show .qa-card:nth-child(3){ transition-delay: 0.4s; }
.show .qa-card:nth-child(4){ transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 1000px){
  .qa-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .qa-grid{
    grid-template-columns: 1fr;
  }

  .qa-header h2{
    font-size: 26px;
  }
}
/* SECTION BASE */
.team{
  padding: 100px 8%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: none;
}

/* CONTAINER */
.team-container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.team-header{
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2{
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: #2f3e2f;
  margin-bottom: 15px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.team-header p{
  font-size: 16px;
  color: #666;
  max-width: 750px;
  margin: auto;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* GRID */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.team-card{
  background: #f8f4ee;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

/* IMAGE */
.team-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: 0.5s ease;
}

/* NAME */
.team-card h3{
  font-size: 18px;
  color: #2f3e2f;
  margin-bottom: 5px;
}

/* ROLE */
.team-card span{
  font-size: 14px;
  color: #777;
}

/* HOVER EFFECT */
.team-card:hover{
  transform: translateY(-10px);
}

.team-card:hover img{
  transform: scale(1.05);
}

/* ANIMATION ACTIVE */
.show .team-header h2,
.show .team-header p{
  opacity: 1;
  transform: translateY(0);
}

.show .team-card{
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.show .team-card:nth-child(1){ transition-delay: 0.2s; }
.show .team-card:nth-child(2){ transition-delay: 0.3s; }
.show .team-card:nth-child(3){ transition-delay: 0.4s; }
.show .team-card:nth-child(4){ transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 1000px){
  .team-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .team-grid{
    grid-template-columns: 1fr;
  }

  .team-header h2{
    font-size: 26px;
  }
}
/* SECTION BASE */
.packaging{
  padding: 100px 8%;
  background: #f8f4ee;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.packaging-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.packaging-content{
  flex: 1;
}

.packaging-content h2{
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: #2f3e2f;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.packaging-content p{
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.packaging-content ul{
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.packaging-content li{
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;

  opacity: 0;
  transform: translateX(30px);
  transition: 0.8s ease;
}

/* RIGHT IMAGES */
.packaging-images{
  flex: 1;
  position: relative;
  min-height: 400px;
}

.packaging-images img{
  position: absolute;
  width: 70%;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.9);
  transition: 1s ease;
}

/* IMAGE POSITION */
.img1{
  top: 0;
  left: 0;
}

.img2{
  bottom: 0;
  right: 0;
}

/* HOVER EFFECT */
.packaging-images:hover img{
  transform: scale(1.05);
}

/* ANIMATION ACTIVE */
.show .packaging-content h2,
.show .packaging-content p{
  opacity: 1;
  transform: translateY(0);
}

.show .packaging-content li{
  opacity: 1;
  transform: translateX(0);
}

.show .packaging-images img{
  opacity: 1;
  transform: scale(1);
}

/* STAGGER */
.show .packaging-content li:nth-child(1){ transition-delay: 0.2s; }
.show .packaging-content li:nth-child(2){ transition-delay: 0.3s; }
.show .packaging-content li:nth-child(3){ transition-delay: 0.4s; }
.show .packaging-content li:nth-child(4){ transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 900px){
  .packaging-container{
    flex-direction: column;
  }

  .packaging-images{
    width: 100%;
    min-height: 300px;
  }

  .packaging-images img{
    width: 60%;
  }

  .packaging-content h2{
    font-size: 26px;
  }
}
/* SECTION */
.warehouse{
  position: relative;
  width: 100%;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.warehouse::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../image/packaging1.jpg") center/cover no-repeat;
  transform: scale(1.1);
  filter: brightness(0.6);
}

/* OVERLAY */
.warehouse-overlay{
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.3)
  );
  display: flex;
  align-items: center;
  padding: 0 8%;
}

/* CONTENT */
.warehouse-content{
  max-width: 650px;
  color: #fff;
}

.warehouse-content h2{
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.warehouse-content p{
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* POINTS */
.warehouse-points{
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.warehouse-points div{
  background: rgba(255,255,255,0.08);
  padding: 12px;
  border-left: 3px solid #6b8e5a;
  border-radius: 6px;
  font-size: 14px;

  opacity: 0;
  transform: translateX(30px);
  transition: 0.8s ease;
}

/* ANIMATION ACTIVE */
.show .warehouse-content h2,
.show .warehouse-content p{
  opacity: 1;
  transform: translateY(0);
}

.show .warehouse-points div{
  opacity: 1;
  transform: translateX(0);
}

/* STAGGER */
.show .warehouse-points div:nth-child(1){ transition-delay: 0.2s; }
.show .warehouse-points div:nth-child(2){ transition-delay: 0.3s; }
.show .warehouse-points div:nth-child(3){ transition-delay: 0.4s; }
.show .warehouse-points div:nth-child(4){ transition-delay: 0.5s; }

/* BACKGROUND ZOOM EFFECT */
.show::before{
  animation: zoomWarehouse 12s ease-in-out infinite alternate;
}

@keyframes zoomWarehouse{
  from{ transform: scale(1.1); }
  to{ transform: scale(1.2); }
}

/* RESPONSIVE */
@media (max-width: 768px){
  .warehouse-content h2{
    font-size: 28px;
  }

  .warehouse-overlay{
    padding: 0 5%;
  }
}
/* SECTION */
.work-us{
  padding: 100px 8%;
  background: #f8f4ee;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.work-container{
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.work-content{
  flex: 1;
}

.work-content h2{
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: #2f3e2f;
  margin-bottom: 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.work-content p{
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* LIST */
.work-content ul{
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.work-content li{
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;

  opacity: 0;
  transform: translateX(30px);
  transition: 0.8s ease;
}

/* BUTTON */
.cta-btn{
  margin-top: 25px;
  padding: 12px 22px;
  border: none;
  background: #2f4a33;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover{
  background: #3b5f42;
  transform: translateY(-3px);
}

/* RIGHT FORM */
.work-form{
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

/* FORM INPUTS */
.work-form input,
.work-form textarea{
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.work-form textarea{
  height: 120px;
  resize: none;
}

/* FORM BUTTON */
.work-form button{
  width: 100%;
  padding: 12px;
  background: #6b8e5a;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.work-form button:hover{
  background: #567347;
}

/* ANIMATION ACTIVE */
.show .work-content h2,
.show .work-content p{
  opacity: 1;
  transform: translateY(0);
}

.show .work-content li{
  opacity: 1;
  transform: translateX(0);
}

.show .work-form{
  opacity: 1;
  transform: translateY(0);
}

/* STAGGER */
.show .work-content li:nth-child(1){ transition-delay: 0.2s; }
.show .work-content li:nth-child(2){ transition-delay: 0.3s; }
.show .work-content li:nth-child(3){ transition-delay: 0.4s; }
.show .work-content li:nth-child(4){ transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 900px){
  .work-container{
    flex-direction: column;
  }

  .work-content h2{
    font-size: 26px;
  }
}
/* =========================
GOOGLE FONT
========================= */


img{
  width:100%;
  display:block;
}

/* =========================
COLLECTION SECTION
========================= */

.collection-section{
  padding:100px 8%;
  position:relative;
}

.collection-section:nth-child(even){
  background:#f2ece4;
}

/* =========================
SECTION HEADING
========================= */

.section-heading{
  text-align:center;
  margin-bottom:65px;
  animation:fadeUp 1s ease;
}

.section-heading h2{
  font-size:52px;
  font-family:'Playfair Display',serif;

  margin-bottom:18px;
  line-height:1.2;
}

.section-heading p{
  max-width:850px;
  margin:auto;
  color:#6c655f;
  line-height:1.9;
  font-size:16px;
}

/* =========================
GRID
========================= */

.collection-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* =========================
CARD
========================= */

.collection-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  transition:.5s;
  box-shadow:0 10px 35px rgba(0,0,0,0.07);
  animation:fadeUp 1.2s ease;
}

.collection-card:hover{
  transform:translateY(-12px);
}

/* =========================
IMAGE
========================= */

.collection-img{
  height:320px;
  overflow:hidden;
  position:relative;
}

.collection-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1s;
}

.collection-card:hover .collection-img img{
  transform:scale(1.08);
}

/* =========================
CONTENT
========================= */

.collection-content{
  padding:28px;
}

.collection-content h3{
  font-size:28px;
  font-family:'Playfair Display',serif;
  color:#3a3027;
  margin-bottom:14px;
  line-height:1.3;
}

.collection-content p{
  color:#6d655e;
  line-height:1.8;
  font-size:15px;
  margin-bottom:24px;
}

/* =========================
BUTTON
========================= */

.explore-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 26px;
  border-radius:40px;
  background:#efe3d4;
  color:#5d4b3c;
  text-decoration:none;
  transition:.4s;
  font-size:14px;
  font-weight:500;
}

.explore-btn:hover{
  background:#7b6148;
  color:#fff;
  transform:translateY(-3px);
}

/* =========================
CARD OVERLAY EFFECT
========================= */

.collection-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.08),
    transparent
  );
  opacity:0;
  transition:.5s;
}

.collection-card:hover::before{
  opacity:1;
}

/* =========================
ANIMATIONS
========================= */

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(60px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

  .collection-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .collection-section{
    padding:80px 20px;
  }

  .section-heading{
    margin-bottom:45px;
  }

  .section-heading h2{
    font-size:38px;
  }

  .section-heading p{
    font-size:15px;
    line-height:1.8;
  }

  .collection-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .collection-img{
    height:280px;
  }

  .collection-content{
    padding:24px;
  }

  .collection-content h3{
    font-size:24px;
  }

}
/* =========================
GOOGLE FONTS
========================= */


section{
  overflow:hidden;
}

/* =========================
COMMON TITLE
========================= */

.section-title{
  text-align:center;
  margin-bottom:60px;
}


/* =========================
HERO SECTION
========================= */


.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  max-width:850px;
  padding:20px;
}

.hero-content span{
  display:inline-block;
  padding:10px 24px;
  border-radius:40px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  margin-bottom:25px;
  font-size:14px;
  letter-spacing:1px;
}

.hero-content h1{
  font-size:88px;
  line-height:1;
  margin-bottom:25px;
  font-family:'Cormorant Garamond',serif;
}

.hero-content p{
  font-size:17px;
  line-height:2;
  color:#f3f3f3;
}

/* =========================
CONTACT INFO
========================= */

.contact-info-section{
  padding:110px 8%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  background:#f7f3ee;
}

.info-card{
  background:#fff;
  border-radius:35px;
  padding:45px 35px;
  text-align:center;
  transition:.5s;
  box-shadow:0 12px 35px rgba(0,0,0,0.05);
}

.info-card:hover{
  transform:translateY(-12px);
}

.info-icon{
  width:85px;
  height:85px;
  margin:auto;
  margin-bottom:24px;
  border-radius:24px;
  background:#f3e7d7;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
}

.info-card h3{
  font-size:34px;
  margin-bottom:14px;
  color:#2c241d;
  font-family:'Cormorant Garamond',serif;
}

.info-card p{
  color:#6b625a;
  line-height:1.9;
}

/* =========================
FORM + MAP
========================= */

.contact-main-section{
  padding:110px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  background:#fff;
}

.contact-form-wrapper span{
  display:inline-block;
  margin-bottom:18px;
  color:#8b6b4f;
}

.contact-form-wrapper h2{
  font-size:62px;
  line-height:1.1;
  margin-bottom:35px;
  color:#2c241d;
  font-family:'Playfair Display',serif;
}

.contact-form{
  display:grid;
  gap:22px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:20px 24px;
  border:none;
  outline:none;
  background:#f7f3ee;
  border-radius:18px;
  font-size:15px;
  transition:.4s;
}

.contact-form input:focus,
.contact-form textarea:focus{
  background:#fff;
  box-shadow:0 0 0 2px #d7bfa3;
}

.contact-form textarea{
  resize:none;
}

.contact-form button{
  height:60px;
  border:none;
  border-radius:60px;
  background:#8b6b4f;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:.4s;
}

.contact-form button:hover{
  transform:translateY(-5px);
  background:#6f543d;
}

.map-wrapper{
  height:100%;
}

.map-wrapper iframe{
  width:100%;
  height:650px;
  border:none;
  border-radius:40px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

/* =========================
WHATSAPP SECTION
========================= */

.whatsapp-section{
  margin:110px 8%;
  padding:70px;
  border-radius:40px;

  background:
  linear-gradient(
  135deg,
  #8b6b4f,
  #b08a67
  );

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.whatsapp-content{
  color:#fff;
}

.whatsapp-content span{
  display:inline-block;
  margin-bottom:18px;
}

.whatsapp-content h2{
  font-size:68px;
  line-height:1;
  margin-bottom:20px;
  font-family:'Cormorant Garamond',serif;
}

.whatsapp-content p{
  line-height:2;
  max-width:650px;
}

.whatsapp-btn{
  padding:20px 38px;
  border-radius:60px;
  background-color: #25d366;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
  transition:.4s;
}

.whatsapp-btn:hover{
  transform:translateY(-6px);
}

/* =========================
SOCIAL SECTION
========================= */

.social-section{
  padding:110px 8%;
  background:#fff;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.social-card{
  background:#f7f3ee;
  border-radius:35px;
  padding:55px 30px;
  text-align:center;
  text-decoration:none;
  transition:.5s;
}

.social-card:hover{
  transform:translateY(-12px);
}

.social-icon{
  width:90px;
  height:90px;
  margin:auto;
  margin-bottom:25px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
}

.social-card h3{
  font-size:34px;
  color:#2c241d;
  font-family:'Cormorant Garamond',serif;
}

/* =========================
MINI FAQ
========================= */

.mini-faq-section{
  padding:110px 8%;
  background:#f7f3ee;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.faq-card{
  background:#fff;
  border-radius:35px;
  padding:45px;
  transition:.5s;
  box-shadow:0 12px 30px rgba(0,0,0,0.04);
}

.faq-card:hover{
  transform:translateY(-10px);
}

.faq-card h3{
  font-size:34px;
  line-height:1.2;
  margin-bottom:18px;
  color:#2c241d;
  font-family:'Cormorant Garamond',serif;
}

.faq-card p{
  color:#6b625a;
  line-height:2;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

  .contact-info-section,
  .social-grid,
  .faq-grid,
  .contact-main-section{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .contact-hero{
    height:75vh;
  }

  .hero-content h1{
    font-size:52px;
  }

  .section-title h2,
  .contact-form-wrapper h2,
  .whatsapp-content h2{
    font-size:42px;
  }

  .contact-info-section,
  .social-grid,
  .faq-grid,
  .contact-main-section{
    grid-template-columns:1fr;
  }

  .contact-info-section,
  .contact-main-section,
  .social-section,
  .mini-faq-section{
    padding:90px 20px;
  }

  .whatsapp-section{
    margin:90px 20px;
    padding:40px 25px;
    flex-direction:column;
    text-align:center;
  }

  .map-wrapper iframe{
    height:450px;
  }

  .faq-card,
  .info-card,
  .social-card{
    padding:35px 25px;
  }

}
.view-all-wrapper{
  text-align:center;
  margin-top:40px;
}

.view-all-btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:50px;
  background:#8b6b4f;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:.4s;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.view-all-btn:hover{
  background:#6f543d;
  transform:translateY(-5px);
}
.product-page{
  display:flex;
  gap:40px;
  padding:80px 8%;
  background:#f7f3ee;
}

/* LEFT SIDEBAR */
/* =========================
PAGE LAYOUT
========================= */

.product-page{
  display:flex;
  gap:50px;
  padding:90px 8%;
  background:#faf7f3;
}

/* =========================
SIDEBAR (MINIMAL LUXURY)
========================= */

.product-sidebar{
  width:240px;
  padding:30px;
  background:transparent;
  border-right:1px solid rgba(0,0,0,0.08);
}

.product-sidebar h3{
  font-size:28px;
  margin-bottom:25px;
  color:#2c241d;
  font-family:'Cormorant Garamond',serif;
}

.product-sidebar ul{
  list-style:none;
}

.product-sidebar ul li{
  margin-bottom:18px;
}

.product-sidebar ul li a{
  text-decoration:none;
  font-size:15px;
  color:#6b625a;
  position:relative;
  transition:.3s;
}

.product-sidebar ul li a:hover{
  color:#8b6b4f;
  padding-left:8px;
}

/* =========================
HEADER
========================= */

.product-header{
  margin-bottom:50px;
}

.product-header h1{
  font-size:64px;
  color:#2c241d;
  font-family:'Cormorant Garamond',serif;
  line-height:1;
}

.product-header p{
  margin-top:12px;
  color:#6b625a;
}

/* =========================
GRID (AIRY DESIGN)
========================= */

.product-content{
  flex:1;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* =========================
PRODUCT CARD (MODERN STYLE)
========================= */

.product-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  transition:.5s;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.product-card:hover{
  transform:translateY(-10px);
}

.img-box{
  overflow:hidden;
}

.img-box img{
  height:260px;
  width:100%;
  object-fit:cover;
  transition:.6s;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-card h3{
  padding:18px 18px 5px;
  font-size:22px;
  color:#2c241d;
  font-family:'Cormorant Garamond',serif;
}

.product-card p{
  padding:0 18px 22px;
  color:#6b625a;
  font-size:14px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1000px){

  .product-page{
    flex-direction:column;
  }

  .product-sidebar{
    width:100%;
    border-right:none;
    border-bottom:1px solid rgba(0,0,0,0.08);
    margin-bottom:30px;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .product-grid{
    grid-template-columns:1fr;
  }

  .product-header h1{
    font-size:42px;
  }

}
.inquiry-btn{
  display:inline-block;
  margin:15px;
  padding:12px 22px;
  border-radius:50px;
  background:#8b6b4f;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:.4s;
  text-align:center;
}

.inquiry-btn:hover{
  background:#6f543d;
  transform:translateY(-4px);
}
.product-detail{
  display: flex;
  gap: 100px;
  padding: 40px;
  align-items: flex-start;
  justify-content: center;
}

/* LEFT SIDE */
.gallery{
  display: flex;
  gap: 15px;
}

.thumbs{
  display: none;
  flex-direction: column;
  gap: 12px;
}

.thumbs img{
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.thumbs img.active{
  border: 2px solid #8b0000;
  opacity: 1;
}

.main{
  width: 420px;
  height: 420px;
 
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.main img{
  width: 85%;
}

/* RIGHT SIDE */
.info{
  max-width: 450px;
}

.breadcrumb{
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.info h1{
  font-size: 60px;
  margin-bottom: 10px;
  font-family: Playfair Display'!important;
}

.sub{
  color: #000;
  margin-bottom: 15px;
}
.hero4{
  background-image: url("../image/productherobg.jpg")!important;
}

.details{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details div{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.buttons{
  margin-top: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-cart{
  background: #8b0000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-whatsapp{
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
}
.cart-icon{
  position:relative;
  color:#222;
  font-size:24px;
  text-decoration:none;
}

.cart-icon span{
  position:absolute;
  top:-10px;
  right:-10px;

  width:20px;
  height:20px;

  background:red;
  color:white;

  border-radius:50%;

  font-size:11px;

  display:flex;
  align-items:center;
  justify-content:center;
}
.cart-icon{
  position:relative;
  font-size:24px;
  color:#222;
  text-decoration:none;
}

.cart-icon span{
  position:absolute;

  top:-10px;
  right:-10px;

  width:20px;
  height:20px;

  background:#c0392b;
  color:white;

  border-radius:50%;

  font-size:11px;

  display:flex;
  align-items:center;
  justify-content:center;
}
.delete-btn{

  margin-top:15px;

  border:none;

  background:#c0392b;
  color:white;

  padding:10px 18px;

  border-radius:30px;

  cursor:pointer;
}
.cart-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}



.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom p{
    color:#94a3b8;
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:#94a3b8;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.footer-bottom-links a:hover{
    color:#c89b63;
}
@media(max-width:600px){

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
    }

}
@media(max-width:768px){

  .header{
    
    gap: 50px;
    padding:15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* hide navbar */

  .navbar{
    display: none;
  }

  .logo img{
    width: 75px;
    
  }

  .nav-right{
    gap: 12px;
    margin-left: auto;
  }

  .explore-btn{
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 30px;
  }

  .cart-icon{
    font-size: 18px;
  }

  #cart-count{
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

}
.legacy-section {
  padding: 80px 20px;
  background: #f7f3ed;
  font-family: Arial, sans-serif;
}

.legacy-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Image */
.legacy-image {
  flex: 1;
}

.legacy-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Content */
.legacy-content {
  flex: 1;
}

.legacy-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.legacy-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Cards */
.legacy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.card {
  background: #fff;
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .legacy-section .container {
    flex-direction: column;
  }

  .legacy-content h2 {
    font-size: 26px;
  }
}
.legacy-section{
  background: url("../image/paper-bg.jpg");
  background-size: cover;
  background-position: center;
}
.process-section{
  padding: 80px 20px;
  background: linear-gradient(135deg,#f5f1e8,#ffffff);
  font-family: Arial, sans-serif;
}

/* TITLE */
.section-title{
  text-align: center;
  margin-bottom: 60px;
}



.section-title p{
  color: #666;
}

/* TIMELINE */
.process-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #fbf7f0, #ffffff);
  font-family: Arial, sans-serif;
}

/* ⭐ CONTAINER (IMPORTANT) */
.process-container{
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.section-title{
  text-align: center;
  margin-bottom: 60px;
}



.section-title p{
  color: #666;
}

/* TIMELINE */
.timeline{
  position: relative;
}

/* CENTER LINE */
.timeline::before{
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #b08d57;
  left: 50%;
  transform: translateX(-50%);
}

/* STEP */
.step{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 20px;
}

/* CONTENT */
.step .content{
  width: 45%;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  color: #2b2b2b;
}

/* ICON */
.step .icon{
  width: 55px;
  height: 55px;
  background: #f3efe6;
  border: 2px solid #b08d57;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* LEFT RIGHT */
.step.left{
  flex-direction: row;
}

.step.right{
  flex-direction: row-reverse;
}

/* HOVER */
.step:hover .content{
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 20px 50px rgba(176, 141, 87, 0.2);
}

/* RESPONSIVE */
@media(max-width:768px){
  .timeline::before{
    left: 20px;
  }

  .step{
    flex-direction: column !important;
    align-items: flex-start;
  }

  .step .content{
    width: 100%;
  }

  .step .icon{
    margin: 10px 0;
  }
}
.process-section,
.process-container,
.timeline,
.step,
.step .content{
  all: unset;
  display: block;
}
.process-section{
  padding: 80px 20px;
  background: #fbf7f0;
  font-family: Arial, sans-serif;
}

.process-container{
  max-width: 1100px;
  margin: auto;
}

.section-title{
  text-align: center;
  margin-bottom: 50px;
}

/* TIMELINE */
.timeline{
  position: relative;
}

/* CENTER LINE */
.timeline::before{
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #b08d57;
  left: 50%;
  transform: translateX(-50%);
}

/* STEP */
.step{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
}

/* CONTENT */
.step .content{
  width: 45%;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  color: #2b2b2b;
  z-index: 2;
}

/* ICON */
.step .icon{
  width: 55px;
  height: 55px;
  background: #f3efe6;
  border: 2px solid #b08d57;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

/* LEFT RIGHT */
.step.left{
  flex-direction: row;
}

.step.right{
  flex-direction: row-reverse;
}

/* RESPONSIVE */
@media(max-width:768px){
  .timeline::before{
    left: 20px;
  }

  .step{
    flex-direction: column !important;
  }

  .step .content{
    width: 100%;
  }
}
.artisan-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #fbf7f0, #ffffff);
  font-family: Arial, sans-serif;
}

.artisan-container{
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.artisan-image{
  flex: 1;
}

.artisan-image img{
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.artisan-image img:hover{
  transform: scale(1.03);
}

/* CONTENT */
.artisan-content{
  flex: 1;
}

.artisan-content h2{
  font-size: 34px;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.artisan-content p{
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* BOXES */
.artisan-boxes{
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.box{
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.box:hover{
  transform: translateY(-5px);
}

.box h4{
  margin-bottom: 5px;
  color: #222;
}

/* RESPONSIVE */
@media(max-width:768px){
  .artisan-container{
    flex-direction: column;
  }

  .artisan-content h2{
    font-size: 26px;
  }
}
.artisan-image.collage{
  position: relative;
  width: 100%;
  height: 420px;
}

/* BIG IMAGE */
.artisan-image.collage .big{
  width: 70%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
  overflow: hidden;
}

/* SMALL TOP IMAGE */
.artisan-image.collage .small.top{
  width: 45%;
  height: 48%;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 20px;
  overflow: hidden;
}

/* SMALL BOTTOM IMAGE */
.artisan-image.collage .small.bottom{
  width: 45%;
  height: 48%;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE STYLE */
.artisan-image.collage img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.artisan-image.collage img:hover{
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  .artisan-image.collage{
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .artisan-image.collage .big,
  .artisan-image.collage .small{
    position: relative;
    width: 100%;
    height: 200px;
  }
}
.why-sectio{
  padding: 90px 20px;
  font-family: Arial, sans-serif;

  background: url("../image/paper-bg.jpg") center/cover no-repeat !important;
  position: relative;
}
.cert-section{
  padding: 80px 20px;
  background: linear-gradient(135deg, #fbf7f0, #ffffff);
  font-family: Arial, sans-serif;
}

/* CONTAINER */
.cert-container{
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.cert-title{
  text-align: center;
  margin-bottom: 50px;
}

.cert-title h2{
  font-size: 34px;
  color: #2b2b2b;
}

.cert-title p{
  color: #666;
}

/* GRID */
.cert-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.cert-card{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.cert-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.cert-card .icon{
  font-size: 28px;
  margin-bottom: 10px;
}

.cert-card h3{
  margin-bottom: 5px;
  color: #222;
}

.cert-card p{
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cert-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px){
  .cert-grid{
    grid-template-columns: 1fr;
  }
}
.impact-section{
  padding: 90px 20px;
  
  background-color: #214126;;
  font-family: Arial, sans-serif;
}

.impact-container{
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.impact-left{
  flex: 1;
}

.impact-left h2{
  font-size: 36px;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.impact-left p{
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.impact-highlight{
  padding: 15px;
  background: rgba(255,255,255,0.8);
  border-left: 4px solid #b08d57;
  border-radius: 10px;
  color: #333;
}

/* RIGHT GRID FLOAT STYLE */
.impact-right{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* CARD */
.impact-card{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.impact-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(176, 141, 87, 0.2);
}

/* NUMBER */
.impact-card h3{
  font-size: 34px;
  color: #b08d57;
  margin-bottom: 5px;
}

/* SMALL CARD VARIATION */
.impact-card.small{
  transform: scale(0.95);
}

/* RESPONSIVE */
@media(max-width:768px){
  .impact-container{
    flex-direction: column;
  }

  .impact-right{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:480px){
  .impact-right{
    grid-template-columns: 1fr;
  }
}
.footer{
    background:#0f172a;
    color:#fff;
    padding:80px 8% 25px;
    margin-top:80px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer h2{
    font-size:32px;
    margin-bottom:20px;
    color:#fff;
}

.footer h3{
    font-size:20px;
    margin-bottom:25px;
    position:relative;
}

.footer h3::after{
    content:'';
    width:45px;
    height:3px;
    background:#c89b63;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.footer-links ul li a:hover{
    color:#c89b63;
    padding-left:6px;
}

.footer-contact p{
    color:#cbd5e1;
    margin-bottom:18px;
    line-height:1.8;
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.footer-contact i{
    color:#c89b63;
    margin-top:5px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:42px;
    height:42px;
    background:rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:#c89b63;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
    font-size:14px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:600px){

    .footer{
        padding:60px 20px 20px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer h2{
        font-size:28px;
    }

}
.science{
  background-image: url("../image/sciencebg.jpg")!important;
}
.sustainability {
  padding: 120px 20px;
  background: #f8f5ef;
}

/* MAIN SPLIT */
.sustain-container {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */
.sustain-left .tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6d3b;
}

.sustain-left h2 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  margin: 12px 0;
  color: #2b2b2b;
}

.sustain-left p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* IMPACT BOX */
.impact-box {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.impact {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  flex: 1;
}

.impact h3 {
  font-size: 26px;
  color: #2b2b2b;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.impact p {
  font-size: 13px;
  color: #777;
}

/* RIGHT SIDE */
.sustain-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.sustain-item {
  display: flex;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

/* ICON */
.sustain-item .icon {
  font-size: 22px;
  margin-top: 2px;
}

/* TEXT */
.sustain-item h3 {
  font-size: 18px;
  font-family: "Playfair Display", serif;
  margin-bottom: 6px;
}

.sustain-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.sustain-item:hover {
  transform: translateX(6px);
  border-color: #b08d57;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}
@media (max-width: 900px) {
  .sustain-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .impact-box {
    flex-direction: column;
  }
}
.difference {
  padding: 130px 20px;
  background: linear-gradient(180deg, #ffffff, #f8f5ef);
}

/* HEADER */
.diff-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 70px;
}

.tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6d3b;
}

.diff-header h2 {
  font-size: 44px;
  font-family: "Playfair Display", serif;
  margin: 12px 0;
}

.diff-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.diff-comparison {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

/* BOX */
.diff-box {
  background: #f8f5ef;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

/* TITLE */
.diff-box h3 {
  font-size: 24px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

/* LIST */
.diff-box ul {
  list-style: none;
  padding: 0;
}

.diff-box ul li {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
}

/* BULLET STYLE */
.diff-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b08d57;
  font-weight: bold;
}

/* HIGHLIGHT BOX */
.diff-box.highlight {
  background: #214126;
  color: #fff;
  transform: scale(1.03);
  border: 1px solid #b08d57;
}

.diff-box.highlight ul li {
  color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .diff-comparison {
    grid-template-columns: 1fr;
  }

  .diff-box {
    padding: 30px;
  }
}
.artisan {
  padding: 120px 20px;
  background: #f8f5ef;
}

.artisan-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.artisan-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.artisan-text .tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6d3b;
}

.artisan-text h2 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  margin: 10px 0;
}

.artisan-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.cta {
  padding: 120px 20px;
  background: #214126;
  color: #fff;
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: auto;
}

.cta h2 {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #b08d57;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #8a6d3b;
}
.hero5{
  background-image: url("../image/papermakingbg.jpg");
}
.hero6{
  background-image: url("../image/privacybg.jpg")!important;
  color : #ffffff;
  padding: 90px 10%;
  text-align: center;
  background-color: none;
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero7{
  background-image: url("../image/term.jpg");
}
.dropdown{
    position: relative;
}

.dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;

    width: 500px;
    max-height: 420px;

    background: #fff;

    border-radius: 18px;

    padding: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 999;
}

.dropdown:hover .dropdown-content{
    opacity: 1;
    visibility: visible;
}

.dropdown-content a{
    text-decoration: none;

    color: #333;

    font-size: 15px;

    padding: 12px 16px;

    border-radius: 10px;

    transition: 0.3s;
}

.dropdown-content a:hover{
    background: #f7f3ee;
    color: #c59d5f;
    padding-left: 22px;
}

/* SCROLLBAR */

.dropdown-content::-webkit-scrollbar{
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-thumb{
    background: #c59d5f;
    border-radius: 20px;
}
.certification-section{
    padding:100px 8%;
    background:#f8f6f2;
    text-align:center;
    display: none;
}


.certification-section1{
    padding:100px 8%;
    background:#f8f6f2;
    text-align:center;
    
}

.certification-section1 h2{
    font-size:42px;
    color:#222;
    margin-bottom:10px;
}

.certification-section1 .subtitle{
    color:#666;
    margin-bottom:60px;
    font-size:16px;
}

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.certificate-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.certificate-card:hover{
    transform:translateY(-10px);
}

.certificate-card img{
    width:100%;
    height:400px;
    object-fit:contain;
    display:block;
}

.certificate-card h3{
    padding:20px;
    font-size:20px;
    color:#333;
}

/* Tablet */
@media(max-width:992px){
    .certificate-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:768px){

    .certification-section1{
        padding:70px 5%;
    }

    .certification-section1 h2{
        font-size:32px;
    }

    .certificate-grid{
        grid-template-columns:1fr;
    }

    .certificate-card img{
        height:300px;
    }
}
.hero9{
  background-image: url("../image/contactbg.jpg");
}
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    

}

.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}

.logo img{
    height:60px;
}

@media (max-width:768px){

   

    .menu-toggle{
        display:block;
        justify-self:start;
    }

    .logo{
        justify-self:center;
    }

    .nav-right{
        justify-self:end;
    }

    .explore-btn{
        padding:8px 12px;
        font-size:12px;
    }

    .navbar{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        padding:15px;
        box-shadow:0 5px 15px rgba(0,0,0,0.1);
        z-index:999;
        
    }
    

    .navbar.active{
        display:flex;
    }
     .dropdown{
    display:none;
  }

  .mobile-products{
    display:block;
  }
}
@media (min-width:769px){

  .mobile-products{
    display:none;
  }
}
.product-detail{
    display:flex;
    gap:20px;
    align-items:flex-start;
    
}

.gallery{
    display:flex;
    gap:15px;
    flex:0 0 38%;
}

.main img{
    width:100%;
    display:block;
    border-radius:10px;
}

.info{
    flex:1;
}

/* MOBILE */
@media(max-width:768px){

    .product-detail{
        flex-direction:column;
        padding:70px 15px 40px !important;
        gap:25px;
    }

    .gallery{
        flex-direction:column-reverse;
        width:100%;
    }

    .thumbs{
        display:flex;
        justify-content:center;
        gap:10px;
        flex-wrap:wrap;
    }

    .thumb{
        width:70px;
        height:70px;
        object-fit:cover;
        display: none;
    }

    .main{
        width:100%;
        
    }

    .main img{
        width:100%;
        height:auto;
    }

    .info{
        width:100%;
    }

    .info h1{
        font-size:28px;
        line-height:1.3;
    }

    .details div{
        display:flex;
        flex-direction:column;
        gap:5px;
        padding:10px 0;
    }

    .buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
    }

    .btn-cart,
    .whatsapp-btn{
        width:100%;
        text-align:center;
        box-sizing:border-box;
    }
    .btn{
      font-size: 20px;
    }
    .slide h2 {
      font-size: 40px;
    }
    
}
.footer-contact a{
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover{
    color: #8b6b43;
}


