/* === Collection Paragraph Styling === */
.paragraph {
  margin: 32px auto 32px auto;
  padding: 16px 24px;
  max-width: 600px;
  font-size: 1.35rem;
  text-align: center;
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  letter-spacing: 0.01em;
}

/* === Card Spacing === */
.collections .grid {
  gap: 36px 28px;
}
.collections .card {
  margin-bottom: 24px;
  padding-bottom: 18px;
}

@media (max-width: 600px) {
  .paragraph {
    font-size: 1.05rem;
    padding: 12px 8px;
    margin: 20px 8px 20px 8px;
    max-width: 98vw;
  }
  .collections .grid {
    gap: 24px 8px;
  }
  .collections .card {
    margin-bottom: 16px;
    padding-bottom: 10px;
  }
}
/* ===== Customer Review Horizontal Section ===== */

.home-review-section {
  padding: 60px 30px;
  background:transparent;
}

.review-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

/* Horizontal Form Layout */
.review-form-horizontal {
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 15px;
  background: transparent;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  align-items: center;
}

.review-form-horizontal input,
.review-form-horizontal textarea {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
}

.review-form-horizontal textarea {
  resize: none;
  height: 50px;
}

.review-form-horizontal input:focus,
.review-form-horizontal textarea:focus {
  border-color: #6a11cb;
}

/* Star Rating */
.stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.stars input {
  display: none;
}

.stars label {
  font-size: 26px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.stars input:checked ~ label,
.stars label:hover,
.stars label:hover ~ label {
  color: #f5b301;
}

/* Submit Button */
.review-form-horizontal button {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #687510, #629e1a);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.review-form-horizontal button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .review-form-horizontal {
    flex-direction: column;
  }

  .review-form-horizontal button {
    width: 100%;
  }
}
html, body {
  overflow-x: hidden; /* Prevent horizontal scroll */
}

:root{
  --leaf:#375342;
  --beige:rgb(182, 141, 90);
  --beige-dark:#C5A177;
  --ivory:#FFF9F3;
  --muted:#6D6A52;
  --accent:#EB9999;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%;scroll-behavior:smooth}

/* ===== CLEAN BODY ===== */
/* ===== CLEAN BODY ===== */
body{
  font-family: "Poppins", sans-serif;
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== FIXED BACKGROUND (MATCH OLD DESIGN) ===== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('gem.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
/* NAVBAR */
.nav-left {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1500;
}

.nav-logo {
  width: 48px; /* adjust size as needed */
  height: auto;
}

.nav-text {
  color: #000000;
  font-family: 'Playfair Display', serif; /* new elegant font */
  font-weight: 700;                        /* bold */
  font-size: 1.3rem;                       /* adjust size */
  letter-spacing: 0.5px;                   /* optional spacing */
}


.navbar{
    position: fixed;     /* REQUIRED */
  overflow: visible;      /* IMPORTANT */
  top:0;right:0;left:0;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 28px;
  z-index:1200;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.navbar.scrolled{
  background: rgba(55,83,66,0.9);
  backdrop-filter: blur(12px);
}
.menu{
  display:flex;
  gap:22px;
  align-items:center;
}
.menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  letter-spacing:0.2px;
  position:relative;
}
.menu a::after{
  content:"";
  position:absolute;
  left:0;bottom:-6px;
  height:2px;width:0;
  background:var(--beige);
  transition:width .28s ease;
}
.menu a:hover::after{width:100%}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer; z-index:1400}
.hamburger div{width:26px;height:3px;background:#fff;border-radius:3px;transition:all .3s ease}

/* Mobile Menu Styles */
.mobile-menu{
  position: fixed;
  top: 0;
  right: -100%;

  width: 100%;
  max-width: 320px;
  height: 100vh;

  /* premium glass + gradient */
  background: linear-gradient(
    160deg,
    rgba(167, 175, 159, 0.96),
    rgba(17, 18, 16, 0.96)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  display: flex;
  flex-direction: column;
  gap: 20px;

  padding: 100px 26px 26px;

  z-index: 1300;

  /* luxury depth */
  box-shadow: -12px 0 40px rgba(0,0,0,0.25);
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;

  transition:
    right 0.45s cubic-bezier(.4,0,.2,1);

  overflow-y: auto;
}

/* open state */
.mobile-menu.show{
  right: 0;
}

/* ================= MENU LINKS ================= */
.mobile-menu a{
  color: black;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;

  padding: 14px 18px;
  border-radius: 14px;

  background: rgba(255,255,255,0.25);

  letter-spacing: .4px;

  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease,
    opacity .3s ease;
}

.mobile-menu a:hover{
  background: rgba(255,255,255,0.45);
  transform: translateX(6px);
  opacity: 1;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

/* ================= CLOSE BUTTON ================= */
.mobile-menu .close-btn{
  position: absolute;
  top: 18px;
  right: 22px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  font-weight: 700;

  color: var(--leaf);

  background: rgba(255,255,255,0.35);
  border-radius: 50%;

  cursor: pointer;

  transition:
    transform .3s ease,
    background .3s ease;
}

.mobile-menu .close-btn:hover{
  background: rgba(255,255,255,0.6);
  transform: rotate(90deg) scale(1.05);
}


/* HERO */
.hero-section{
  min-height:100vh;
  display:flex;align-items:center;
  position:relative;padding-top:72px;
  overflow:hidden;
}
.leaf-background{
  position:absolute;top:0;right:0;width:70%;height:100%;
  background-image:url('http://googleusercontent.com/image_generation_content/0');
  background-size:cover;background-position:right center;
  z-index:1;
  opacity:.95;
}
.content-box{
  position:relative;z-index:10;
  padding:110px 6% 80px 8%;
  max-width:720px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:12px;
  backdrop-filter: blur(0px);
}
.logo-title{display:flex;align-items:center;gap:16px;margin-bottom:12px}
.logo-title img{ width: 100%;
  max-width: 250px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(55,83,66,0.13), 0 1.5px 6px rgba(55,83,66,0.08);
}.logo-title img:hover {
  transform: scale(1.05) rotate(1deg);
}
.logo-title h1{font-family:'Playfair Display', serif;font-size:3.5rem;color:#ffffff;margin:0;line-height:1; font-weight:600;text-shadow:2px 2px 6px rgba(0,0,0,0.6),}
.hero-desc{color:#ffffff;font-weight:300;font-size:1rem;line-height:1.7;padding-right:20px;text-shadow:2px 2px 6px rgba(0,0,0,0.6);margin-bottom:18px}
.btn-primary{background:var(--beige);padding:12px 36px;border-radius:999px;text-decoration:none;color:#333;font-weight:500;display:inline-block;box-shadow:16px 16px 18px rgba(0,0,0,0.18);transition:transform .2s, background .2s}
.btn-primary:hover{transform:translateY(-3px);background:var(--beige-dark)}

@media (max-width: 768px) {

  /* Reduce logo image size */
  .logo-title img {
    max-width: 240px;   /* smaller than 260px */
  }

  /* Stack image and text vertically */
  .logo-title {
    flex-direction: column;
    text-align: center;
  }

  /* Fix heading size and spacing */
  .logo-title h1 {
    font-size: 22px;    /* instead of 3.5rem */
    margin-top: 8px;
  }

}

.leaf-background{
  pointer-events: none;
}
.content-box{
  position: relative;
  z-index: 2;
}

/* MAIN SECTIONS */
main{position:relative;z-index:5}
.section{padding:80px 8%;background:linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.0));margin-top:0px !important;}

/* About */
/* ================== ABOUT SECTION ================== */
/* ================= ABOUT SECTION ================= */
.about-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 0px !important;

  /* Transparent to show main page background */
  background: transparent;

  display: block;
}

.about-section canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.container {
  max-width: 1111200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  background: transparent; /* transparent card */
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); /* subtle shadow */
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  perspective: 1000px;
}

.about-content {
  flex: 1 1 400px;
  padding: 50px;
}

.about-content h2 {
  font-size: 3rem;
  color: #375342;
  margin-bottom: 20px;
  position: relative;
}

.about-content h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #f2dfdf, #D6B287);
  border-radius: 2px;
  margin-top: 10px;
}

.about-content p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 20px;
    font-family: 'Poppins', sans-serif
}

.btn-about {
  padding: 12px 30px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(45deg, #375342, #EB9999);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-about:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ================= IMAGE ================= */
  .about-image {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    min-height: 220px;
    padding: 16px;
    background: transparent;
  }

.about-image img {
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s cubic-bezier(.4,2,.6,1);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(55,83,66,0.13), 0 1.5px 6px rgba(55,83,66,0.08);
}

.about-image img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ================= REVEAL EFFECT ================= */

.about-card.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s cubic-bezier(.4,1,.6,1), transform 0.45s cubic-bezier(.4,1,.6,1);
}

.about-card.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px) {
  .about-card {
    flex-direction: column;
  }
  .about-image img {
    border-radius: 0 0 20px 20px;
    height: auto; /* lets the image scale naturally on mobile */
  }
}


/* RESPONSIVE */
@media(max-width: 900px) {
  .about-card {
    flex-direction: column;
  }
  .about-image img {
    border-radius: 0 0 20px 20px;
  }
}


/* Collections / Products */
.collections{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border-radius:14px;padding:40px}
.collections h2{color:var(--leaf);margin-bottom:18px}
.grid{display:grid;grid-template-columns: repeat(3,1fr);gap:20px;}
.card{background:var(--ivory);border-radius:12px;padding:18px;display:flex;flex-direction:column;gap:12px;box-shadow: 6px 8px 20px rgba(0,0,0,0.12);transition:transform .28s ease, box-shadow .28s;}
/* ✅ FINAL & CORRECT COLLECTION IMAGE RULE */
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;   /* reserves space before image loads */
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.card h3{margin:0;color:var(--leaf);font-size:1.05rem}
.card p{font-size:.9rem;color:var(--muted);font-weight:300}
.card .shop{margin-top:auto;text-align:right}
.card .shop a{display:inline-block;padding:8px 16px;border-radius:20px;background:var(--beige);color:#333;text-decoration:none;font-weight:500}
.card:hover{transform:translateY(-8px);box-shadow: 12px 18px 30px rgba(0,0,0,0.18)}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .card img {
    aspect-ratio: 1/1; /* Optional: square images on mobile for best fit */
  }
}

/* Sustainability 
.sustain{margin-top:30px;padding:60px;background-image: url('wyyuuu.jpeg');background-size:cover;background-position:center;border-radius:12px;color:#fff;position:relative;overflow:hidden}
.sustain .overlay{position:absolute;inset:0;background:rgba(21,34,21,0.45)}
.sustain .content{position:relative;z-index:3;max-width:900px}
.sustain h2{color:var(--beige);margin-bottom:12px}
.sustain p{color:#fff;opacity:0.95;font-weight:300;line-height:1.6}
*/

/* TESTIMONIALS - full-screen infinite left loop */
/* We make a full-viewport-width wrapper (edge-to-edge) and a wide inner track that we animate via JS */
.testimonials{
  padding:60px 0;
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.testimonials .container {
  /* full width edge-to-edge */
  width:auto;
  position:relative;
  left:50%;
  right:5%;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
  background:transparent;
  padding:24px 0;
}
.testimonials h2{color:var(--leaf);margin-bottom:24px;text-align:center;font-size:2rem}
.slider-track{
  display:flex;
  align-items:stretch;
  gap:24px;
  will-change:transform;
  /* no CSS animation — JS drives transform to ensure seamless full-width loop */
  padding: 0 24px; /* small breathing room at edges */
}
.slide{
  flex:0 0 320px;
  background:var(--ivory);
  padding:24px;
  border-radius:16px;
  box-shadow: 8px 10px 28px rgba(0,0,0,0.12);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.slide p{font-weight:300;color:var(--muted);line-height:1.6;margin-bottom:12px}
.slide .testimonial-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
}
.slide .customer-photo{
  width:50px;
  height:50px;
  border-radius:50%;
  object-fit:cover;
  margin-right:12px;
  border:2px solid var(--leaf);
  flex-shrink:0;
}
.slide .who{font-weight:600;color:var(--leaf);text-align:right}
.slide .rating{color:#FFD700;margin-left:8px;font-size:0.9rem}

/* CTA Newsletter */
.cta{margin-top:40px;padding:36px;border-radius:12px;background:linear-gradient(90deg, rgba(55,83,66,0.06), rgba(214,178,135,0.04));display:flex;gap:20px;align-items:center;justify-content:space-between;}
.cta .left h3{margin:0;color:var(--leaf)}
.subscribe{display:flex;gap:10px;align-items:center}
.subscribe input{padding:12px 14px;border-radius:10px;border:1px solid rgba(109,106,82,0.12);min-width:220px}
.subscribe button{padding:12px 18px;border-radius:999px;border:none;background:var(--beige);cursor:pointer;font-weight:600}

/* Footer */
footer{padding:30px 8%;color:#fff;background:transparent;opacity:.9}

/* Reveal Animations */
/* ===== Optimized Reveal Animations (NO MOBILE LAG) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Directional reveals */
.fade-left {
  transform: translateX(-40px);
  opacity: 0;
}

.fade-right {
  transform: translateX(40px);
  opacity: 0;
}

.zoom-in {
  transform: scale(0.95);
  opacity: 0;
}

.fade-left.show,
.fade-right.show,
.zoom-in.show {
  transform: none;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 🚑 Mobile safety: disable transform stacking */
@media (max-width: 768px) {
  .fade-left,
  .fade-right,
  .zoom-in {
    transform: none !important;
  }
}


/* Responsive */
@media (max-width:1100px){.grid{grid-template-columns: repeat(2,1fr)}}
@media (max-width:800px){
  .about{flex-direction:column}
  .about .about-media{width:100%;height:220px}
  .content-box{padding:60px 5%}
  .logo-title h1{font-size:2.4rem}
  .grid{grid-template-columns:1fr}
  .menu{display:none}
  .hamburger{display:flex;position:relative;margin-left:12px; z-index:1400}
  .navbar{justify-content:flex-end;padding:10px 16px}
  .hero-section{min-height:78vh;padding-top:64px}
  .hamburger.active div:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .hamburger.active div:nth-child(2){opacity:0}
  .hamburger.active div:nth-child(3){transform:rotate(-45deg) translate(6px,-6px)}
  /* on small screens, make slide a bit narrower so more fits visually */
  .slide{flex:0 0 280px}
}

/* ================= FAQ SECTION ================= */
/* ================= FAQ SECTION ================= */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9f9f9, #f1efe9);
  font-family: 'Poppins', sans-serif;
  transition: background 0.5s ease;
  background: transparent;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(81, 121, 90, 0.12), transparent 50%);
  transition: background 0.2s ease;
  z-index: 1;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c412e;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  position: relative;
}

/* ================= FAQ ITEM ================= */
.faq-container {
  text-align: left;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  overflow: hidden;
  border-left: 4px solid transparent;
  transition: all 0.4s ease, border 0.4s ease;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transform: translateY(0);
}

.faq-item:hover {
  border-left: 4px solid #7fa47d;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 28px rgba(55,83,66,0.15);
}

/* ================= FAQ QUESTION ================= */
.faq-question {
  width: 100%;
  background: transparent;
  color: #2e3c2f;
  border: none;
  outline: none;
  text-align: left;
  padding: 22px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.3px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 1.5rem;
  color: #4f684f;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg) scale(1.2);
}

/* ================= FAQ ANSWER ================= */
.faq-answer {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px; /* allow enough height */
  padding: 22px 24px 28px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  color: #4f4f4f;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 1.9rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }
}

/*=============footer style==============*/
.footer {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 40px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background:linear-gradient(
    to bottom,
    #375342,
    #1f3328
  );
  color: #FFF9F3;;
 
}

/* Canvas */
#footer-leaves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;              /* ⬅ bring canvas above background */
  pointer-events: none;
}


/* Glow */
.footer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,223,180,0.3) 0%, transparent 70%);
  z-index: 0;
  animation: glowShiftColor 60s linear infinite alternate;
}

@keyframes glowShiftColor {
  0%   { background: radial-gradient(circle, rgba(255,223,180,0.3), transparent 70%); }
  25%  { background: radial-gradient(circle, rgba(255,200,150,0.3), transparent 70%); }
  50%  { background: radial-gradient(circle, rgba(255,240,180,0.3), transparent 70%); }
  75%  { background: radial-gradient(circle, rgba(255,210,170,0.3), transparent 70%); }
  100% { background: radial-gradient(circle, rgba(255,223,180,0.3), transparent 70%); }
}

/* Layout */
.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-links,
.footer-contact,
.footer-newsletter {
  flex: 1 1 280px;
  min-width: 260px;
}

.footer-newsletter {
  align-self: flex-start;
}

.footer-contact p {
  margin: 8px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-map {
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  height: 220px;
}

.footer-map iframe {
  width: 100%;
  height: 100% !important;
  display: block;
  border: 0;
}

/* Headings */
.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #a3d18c;
  letter-spacing: 0.5px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 12px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #a3d18c;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #a3d18c;
  letter-spacing: 0.5px;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Contact */
.footer-contact p {
  margin: 8px 0;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #a3d18c;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 12px;
  justify-content: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(255,255,255,0.15);
}

.footer-social img {
  width: 22px;
  height: 22px;
  
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: rgba(163,209,140,0.25);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(163,209,140,0.7);
}

/* Newsletter */
.footer-newsletter form {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  min-width: 180px;
  padding: 12px 15px;
  border-radius: 50px 0 0 50px;
  border: none;
  outline: none;
}

.footer-newsletter button {
  padding: 12px 20px;
  border-radius: 0 50px 50px 0;
  border: none;
  background: #a3d18c;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-newsletter button:hover {
  background: #8ac176;
}

/* Success */
.success-msg {
  display: none;
  margin-top: 8px;
  color: #00ff7f;
  font-weight: 500;
}

/* Logo */
.footer-logo {
  text-align: center;
  margin-top: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #a3d18c;
  text-shadow: 0 0 10px rgba(163,209,140,0.7);
  letter-spacing: 1px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #ccc;
}

.footer-bottom:hover {
  color: #a3d18c;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    border-radius: 50px;
    margin: 5px 0;
  }

  .footer-social a {
    width: 35px;
    height: 35px;
  }

  .footer-social img {
    width: 18px;
    height: 18px;
  }
}

/* Season Toggle Button */
.season-toggle {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 5;
}

.season-toggle button {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.season-toggle button:hover {
  background: rgba(255,255,255,0.3);
}
.season-toggle {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
}

.season-toggle button {
  padding: 8px 14px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.season-toggle button:hover {
  background: rgba(255,255,255,0.35);
}

/* === SOCIAL MEDIA SECTION FIX === */
.footer-social {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.footer-social a {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.4);
}

 /* Prevent image zoom overflow */
  .fragrance-card:hover .imageWrap img {
    transform: none !important;
  }

  /* Fix footer glow overflow */
  .footer-glow {
    width: 100%;
    height: 100%;
  }

  /* Ensure images never overflow */
  img {
    max-width: 100%;
    height: auto;
  }

  /* ===== FIX FOOTER CANVAS ON MOBILE ===== */
/* ===== FOOTER CANVAS FULL HEIGHT FIX (ALL DEVICES) ===== */
.footer {
  position: relative;
}

#footer-leaves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* === FINAL FOOTER CANVAS FIX (MOBILE + DESKTOP) === */
.footer {
  position: relative;
  overflow: hidden;
  min-height: auto; /* allow footer to grow naturally on mobile */
}

#footer-leaves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ================= MOBILE SCROLL LAG FIX (FINAL) ================= */

/* 1️⃣ Disable fixed background on mobile (MAJOR FIX) */
@media (max-width: 768px) {
  body {
    background-attachment: scroll !important;
  }
}

/* 2️⃣ Reduce heavy reveal animations on mobile */
@media (max-width: 768px) {
  .reveal {
    transform: none !important;
    transition: opacity 0.4s ease !important;
  }
}

/* 3️⃣ Optimize product cards for smooth scrolling */
@media (max-width: 768px) {
  .card {
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }
}


/* ================= MOBILE COLLECTION & ABOUT FIX ================= */

/* 2️⃣ Disable heavy reveal animation on cards (mobile only) */
@media (max-width: 768px) {
  .card.reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 3️⃣ Reduce animation load on mobile scrolling */
@media (max-width: 768px) {
  .reveal {
    transition: opacity 0.3s ease !important;
  }
}
@media (max-width: 768px) {
  #products .reveal,
  #products .card.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ================= HEADER SEARCH (FINAL WORKING) ================= */
/* ===== CONTAINER ===== */
.birds-container {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

/* ===== MOVEMENT WRAPPER (RIGHT → LEFT) ===== */
* CONTAINER */
.birds-container {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
  z-index: 999;
}

/* MOVEMENT (RIGHT → LEFT) */
.bird-move {
  position: absolute;
  animation: flyRTL linear infinite;
}

/* SPEEDS */
.birds-1 { top: 12px; animation-duration: 18s; }
.birds-2 { top: 32px; animation-duration: 22s; }
.birds-3 { top: 50px; animation-duration: 26s; }

/* BIRD IMAGE */
.bird {
  width: 120px;
  height: 55px;
  background: url("birds.png") no-repeat center;
  background-size: contain;
  opacity: 0.85;
}

/* ANIMATION */
@keyframes flyRTL {
  from { transform: translateX(110vw); }
  to   { transform: translateX(-250px); }
}

/* MOBILE */
@media (max-width: 768px) {
  .bird {
    width: 90px;
    height: 40px;
  }
}


/* ===== CTA NEWSLETTER MOBILE FIX ===== */

@media (max-width: 768px) {

  /* Remove all reveal transforms inside CTA */
  .cta .reveal,
  .cta.fade-left,
  .cta.fade-right,
  .cta.zoom-in {
    transform: none !important;
    opacity: 1 !important;
  }

  /* Stack input & button properly */
  .subscribe {
    flex-direction: column;
    width: 100%;
  }

  .subscribe input {
    width: 100%;
    min-width: 100%;
    border-radius: 50px;
  }

  .subscribe button {
    width: 100%;
    border-radius: 50px;
    margin-top: 10px;
  }

}



iframe {
  width: 100%;
  height: auto;
}