/* ====== Variables ====== */
:root{
  --bg:#f7f1e6;          /* warm cream */
  --bg-2:#efe5d2;        /* deeper cream */
  --card:#ffffff;        /* clean surface */
  --surface:#fffdf8;     /* soft surface */
  --ink:#2a241c;         /* warm dark text */
  --muted:#7a7164;       /* muted warm grey */
  --green:#c62828;       /* primary accent — now red (was green #2e7d32) */
  --green-2:#e53935;     /* bright accent — now red (was green #43a047) */
  --green-deep:#8e1414;  /* deep accent — now red (was green #1b5e20) */
  --gold:#c9a227;        /* premium gold */
  --gold-2:#e0b84a;      /* light gold */
  --accent1:#8e1414;     /* was #1b5e20 */
  --accent2:#c62828;     /* was #2e7d32 */
  --red:#c0392b;         /* urgency / price */
  --white:#ffffff;
  --border:#e7dcc6;      /* warm tan border */
  --container:1100px;
  --radius:12px;
  --glass: rgba(43,36,28,0.04);
  --font: 'Poppins', sans-serif;
}

/* ====== Base ====== */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: linear-gradient(180deg,#faf5ea 0%, #f1e7d4 100%);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}



/* ====== Container helper ====== */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

.css-marquee {
    white-space: nowrap;
    /* was green: linear-gradient(90deg,#1b7026,#37eb1fab) */
    background: linear-gradient(90deg,#8e1414,#e53935); padding:20px 0;
    padding: 5px 0;
    overflow: hidden;
    min-height: 2rem;
 }
.css-marquee span { display:inline-block; padding-left:100%; animation: slide 24s linear infinite; font-weight:500; color:#ffffff; }
@keyframes slide { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }


/* ====== Header ====== */
.site-header{
  background: linear-gradient(180deg, #ffffff, #fbf6ec);
  border-bottom:1px solid var(--border);
  box-shadow: 0 2px 12px rgba(43,36,28,0.05);
  position:sticky; top:0; z-index:1200;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 20px;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--ink)}
.brand-logo{
    height: 100px;
    width: 100px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 1px solid rgba(255, 255, 255, 0.04); */
    /* background-color: rgb(255 255 255); */
}
.brand-title{font-weight:700;font-size:1.5rem}
.brand-title .herbs {
  color: var(--green);
}

.brand-title .two {
  color: var(--gold);
}

.brand-title .heart {
  color: var(--red);
}

.site-nav{
    display:flex;
    gap:18px;
    align-items:center;
}

.site-nav .btn{
    color:var(--ink);
    text-decoration:none;
    font-weight:600;
}

.site-nav .btn:hover{
    color:var(--green);
}

@media (max-width: 768px){
    .site-nav{
        display:flex !important;
    }
}

.toast{
    position:fixed;
    bottom:20px;
    left:20px;
    background:#ffffff;
    color:var(--ink);
    padding:12px 16px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(43,36,28,0.18);
    border:1px solid var(--border);
    font-size:14px;
    opacity:0;
    transform:translateY(20px);
    transition:0.5s ease;
    z-index:9999;
    max-width:300px;
    line-height:1.4;
}

.toast.show{
    opacity:1;
    transform:translateY(0);
    border-left:4px solid var(--green-2);
}

.floating-box{
    position:fixed;
    right:20px;
    background:#ffffff;
    color:var(--ink);
    padding:12px 14px;
    border-radius:12px;
    font-size:13px;
    box-shadow:0 20px 50px rgba(43,36,28,0.18);
    border:1px solid var(--border);
    opacity:0;
    transform:translateX(20px);
    transition:0.4s ease;
    z-index:9999;
    max-width:260px;
}

/* positions */
#visitorBox{ bottom:20px; }
#reviewBox{ bottom:90px; }

.floating-stock{
    position:fixed;
    top:20px;
    left:20px;
    background:var(--red);
    color:#fff;
    padding:10px 14px;
    border-radius:10px;
    font-weight:700;
    font-size:13px;
    opacity:0;
    transform:scale(0.9);
    transition:0.4s ease;
    z-index:9999;
}

/* show state */
.show{
    opacity:1 !important;
    transform:translateX(0) scale(1) !important;
}

/* ====== Product hero ====== */
.product-hero{
    display: flex;
    gap: 28px;
    padding: 20px;
    align-items: flex-start;
}
.gallery{flex:0 0 48%;min-width:280px}
.main-photo{background:var(--card);border-radius:var(--radius);border:1px solid var(--border);box-shadow:0 10px 30px rgba(43,36,28,0.08)}
.main-photo img{width:100%;height:auto;border-radius:8px;display:block}
.thumbs{display:flex;gap:8px;margin-top:10px;justify-content:flex-start;flex-wrap:wrap}
.thumb{width:64px;height:64px;object-fit:cover;border-radius:8px;border:2px solid var(--border);cursor:pointer;transition:transform .15s, border-color .15s;background:#fff}
.thumb:hover{transform:translateY(-6px);border-color:var(--green-2)}

.thumbs {
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}
.thumbs::-webkit-scrollbar {
  display: none;
}

.product-info {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 22px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(43,36,28,0.07);
}
.title{font-size:1.6rem;margin:0 0 8px;color:var(--ink)}
.short-desc{
  font-family: "Noto Nastaliq Urdu", "Noto Nastaleeq", "Urdu Typesetting", serif;
  direction: rtl;    /* Urdu ke liye */
  font-size: 17px;   /* apni zarurat ke mutabiq */
color:var(--muted);
margin-bottom:14px;
    direction: rtl;
}
.col-md-12{
padding-left: 20px;
padding-right: 20px;
}



.rating-text {
    font-size: 16px;
    color: #b8860b;
    font-weight: 600;
}

.urdu-text {
    /* was green tints: #f3faf3/#e8f5e9, color #1b5e20, border #cdeacd */
    background: linear-gradient(135deg, #fdf3f2 0%, #fbe6e4 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 16px;
    color: #8e1414;
    line-height: 1.9;
    direction: rtl;
    text-align: right;
    border: 2px solid #f3cccb;
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.1);
    font-weight: 500;
}

.urdu-text .short-desc {
    margin: 0;
    font-family: "Noto Nastaliq Urdu", "Noto Nastaleeq", "Urdu Typesetting", serif;
}

.urdu-text .highlight-text {
    color: #c0392b;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(192, 57, 43, 0.2);
}

.urdu-text strong {
    color: #b8860b;                     /* was green #2e7d32 */
    font-weight: 700;
    background: rgba(198, 40, 40, 0.1); /* was rgba(46,125,50,0.1) */
    padding: 2px 6px;
    border-radius: 4px;
}

.urdu-text p{
  color: #8e1414;                       /* was green #1b5e20 */
}

.product-approval p{
  font-size: 15px;
  color: var(--ink);
}

.product-approval strong{
  color: var(--green);
 text-decoration-line: underline;
 font-size: 15px;
}


/* price */
.price-row{display:flex;align-items:baseline;gap:16px;margin-bottom:12px}
.price-old .strike{text-decoration:line-through;color:var(--muted)}
.price-now{font-size:1.5rem;font-weight:700;color:var(--red)}

/* timer */
.timer-card{
/* was green gradient #1b5e20,#2e7d32 */
background: linear-gradient(180deg,#8e1414,#c62828);
padding:12px;
border-radius:8px;
border:1px solid rgba(0,0,0,0.05);
margin:12px 0;
text-align: center;
box-shadow: 0 8px 22px rgba(198,40,40,0.18);
}
.timer-label{
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}
.countdown{display:flex;gap:10px;align-items:center;justify-content: center;}
.countdown div{
    background: linear-gradient(180deg, #ffffff, #fdf3da);
    color:#8e1414;                       /* was green #1b5e20 */
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 72px;
}
.countdown span{display:block;font-weight:700;font-size:1.1rem;color:#8e1414} /* was green #1b5e20 */
.countdown small{display:block;color:#7a7164;font-size:0.75rem}
.timer-note{
    font-size: 0.9rem;
    color: #fff6df;
    margin-bottom: 8px;
    font-weight: 500;
}

/* actions */
.action-row{display:flex;gap:12px;margin-top:14px;flex-wrap:wrap}
.btn{padding:10px 16px;border-radius:10px;border:0;cursor:pointer;font-weight:700}
.btn-primary{
    background: linear-gradient(135deg,#d4af37,#b8860b); /* was green #2e7d32,#43a047 */
    color: var(--white);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.25);     /* was rgba(46,125,50,0.25) */
    width: -webkit-fill-available;
    padding: 15px;
    font-size: 1rem;
}

.bounce-animation{
    animation: bounce 1.1s infinite;
}

.btn:hover{
  cursor: pointer;
}

#submitOrder{
    padding:10px 16px;border-radius:10px;border:0;cursor:pointer;font-weight:700;

    background:linear-gradient(
        135deg,
        #d4af37,
        #b8860b,
        #9f7710
    );

    color:#fff;

    font-size:16px;
    font-weight:700;
    letter-spacing:.5px;

    cursor:pointer;

    box-shadow:
    0 12px 30px rgba(212,175,55,.30);

    transition:all .3s ease;
}

#submitOrder:hover{
    transform:translateY(-3px);

    box-shadow:
    0 18px 40px rgba(212,175,55,.40);
}


@keyframes bounce {
  0% {transform: scale(.85);}
  50% {transform: scale(1);}
  100%{transform: scale(.85);}

}

.btn-outline{background:transparent;border:1px solid var(--border);color:var(--ink)}

/* quick features */
.quick-features{list-style:none;margin-top:14px;padding-left:0;color:var(--muted)}
.quick-features li{margin:6px 0}

/* promo block */
.promo{display:flex;gap:18px;padding:20px;align-items:center}
.promo-left{flex:1}
.promo-left p {
  direction: rtl;
  font-family: "Noto Nastaliq Urdu", "Noto Nastaleeq", "Urdu Typesetting", serif;
  direction: rtl;    /* Urdu ke liye */
  font-size: 1.2rem;   /* apni zarurat ke mutabiq */
  color: var(--ink);
}
.promo-left h2{color:var(--green-deep)}
.promo-right{flex:0 0 260px;display:flex;flex-direction:column;align-items:center;gap:12px}
.promo-badge{background:linear-gradient(90deg,var(--gold),var(--gold-2));padding:6px 12px;border-radius:999px;font-weight:700;color:#4a3a06}
.promo-image img{width:220px;height:auto;border-radius:10px;border:1px solid var(--border);box-shadow:0 10px 28px rgba(43,36,28,0.12)}
.promo-left ul{
  direction: rtl;
  font-family: "Noto Nastaliq Urdu", "Noto Nastaleeq", "Urdu Typesetting", serif;
  direction: rtl;    /* Urdu ke liye */
  font-size: 1.2rem;   /* apni zarurat ke mutabiq */
  color: var(--ink);
}

/*  product description */

.product-description{
    margin: 18px auto;
    padding: 18px;
    border-radius: 10px;
    background-color: #ffffff;
    color: var(--ink);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(43,36,28,0.06);
}
.product-description h3{margin:0 0 8px;color:var(--green-deep)}
.product-description p{
  direction: rtl;
  font-family: "Noto Nastaliq Urdu", "Noto Nastaleeq", "Urdu Typesetting", serif;
  direction: rtl;    /* Urdu ke liye */
  font-size: 1.2rem;   /* apni zarurat ke mutabiq */
}

/* content sections */
.content-section{
    margin: 18px auto;
    padding: 18px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #fdf8ee);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(43,36,28,0.06);
}
.content-section h3{margin:0 0 8px;color:var(--green-deep)}
.content-section p{color:var(--ink)}
.specs-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:12px;color:var(--ink)}


.certificates-section {
  padding: 60px 20px;
  background: #fdf3f2;       /* was green #f0fdf4 */
  font-family: Arial, sans-serif;
  text-align: center;
}

.certificates-container {
  max-width: 1200px;
  margin: auto;
}

.certificates-title {
  font-size: 36px;
  color: #b71c1c;          /* was green #2f855a */
  margin-bottom: 10px;
  font-weight: 700;
}

.certificates-subtitle {
  font-size: 16px;
  color: #8e1414;          /* was green #276749 */
  margin-bottom: 40px;
}

.certificates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ===== Certificate Card ===== */
.certificate-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1 1 260px;
  max-width: 300px;
  cursor: pointer;
}

.certificate-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===== Certificate Image ===== */
.certificate-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* Ensures no cutting */
}

.certificate-info {
  padding: 15px;
  text-align: left;
}

.certificate-info h3 {
  font-size: 20px;
  color: #b71c1c;          /* was green #2f855a */
  margin-bottom: 5px;
}

.certificate-info p {
  font-size: 14px;
  color: #4a5568;
  margin: 3px 0;
}

/* ===== Lightbox ===== */
#lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top:0; left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  cursor: zoom-out;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* ===== Responsive Fix ===== */
@media(max-width:768px){
  .certificates-grid{
    flex-direction: column;
    gap:20px;
  }
  .certificate-card{
    max-width: 100%;
    flex: 1 1 100%;
  }
  .certificate-img {
    width: 100%;
    height: auto; /* mobile fully visible */
  }
  .certificates-title{ font-size:28px;}
  .certificates-subtitle{ font-size:14px; margin-bottom:25px;}
  .certificate-info h3{ font-size:16px;}
  .certificate-info p{ font-size:12px;}
}


/* Expert Section - Desktop + Proper Mobile Responsive */
.expert-section {
  padding: 60px 15px;  /* thoda overall padding */
  background: linear-gradient(135deg, #fdf3f2 0%, #fbe9e7 100%); /* was green #f3faf3/#eef7ec */
  font-family: Arial;
  box-sizing: border-box; /* important for padding */
}

.expert-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px; /* ensures container has side spacing */
  box-sizing: border-box;
}

.expert-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-deep);
  text-align: center;
}

.expert-subtitle {
  color: var(--ink);
  margin-bottom: 30px;
  text-align: center;
}
.expert-subtitle h2{color:var(--green);}

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.expert-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(43, 36, 28, 0.08);
  transition: 0.3s;
  padding-bottom: 20px;
  box-sizing: border-box; /* ensures padding inside card */
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(43, 36, 28, 0.14);
}

.doctor-img {
  position: relative;
}

.doctor-img img {
  width: 100%;
  height: auto;
  display: block; /* avoids extra bottom space */
}

.verified {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--green);
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

.expert-card h3 {
  margin-top: 15px;
  font-size: 20px;
  color: var(--green-deep);
  padding: 0 15px;
}

.doctor-role {
  color: #b8860b;
  font-size: 14px;
  margin: 5px 0 10px;
  padding: 0 15px;
  font-weight: 600;
}

.doctor-text {
  font-size: 14px;
  color: var(--muted);
  padding: 0 15px;
  line-height: 1.6;
}

/* ===== Mobile Responsive ===== */
@media only screen and (max-width: 768px) {
  .expert-section {
    padding: 50px 10px;
  }

  .expert-title {
    font-size: 28px;
  }

  .expert-subtitle {
    font-size: 16px;
  }

  .expert-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .expert-card {
    width: 100%;
    padding-bottom: 15px;
  }

  .doctor-img img {
    width: 100%;
    height: auto;
  }

  .expert-card h3 {
    font-size: 18px;
  }

  .doctor-role {
    font-size: 13px;
  }

  .doctor-text {
    font-size: 13px;
  }

  .verified {
    font-size: 11px;
    padding: 4px 8px;
  }
}

@media only screen and (max-width: 480px) {
  .expert-section {
    padding: 40px 10px;
  }

  .expert-title {
    font-size: 24px;
  }

  .expert-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .doctor-text {
    font-size: 12px;
    padding: 0 10px;
  }

  .expert-card h3,
  .doctor-role {
    padding: 0 10px;
  }
}

/* GALLERY SECTION */
/* ================================ */

.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf3f2 0%, #fbe9e7 100%); /* was green #f3faf3/#eef7ec */
}



.gallery-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #b71c1c;          /* was green #166534 */
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-section .section-customer{
  color: var(--ink);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.gallery-section h1{
  color: var(--green-deep);
  text-align: center;
  margin-top: 40px;
  font-size: 26px;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(43, 36, 28, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.82), rgba(142, 20, 20, 0.82)); /* was green */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .gallery-item img {
        height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 10px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .gallery-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .gallery-item img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .gallery-overlay h4 {
        font-size: 16px;
    }
}

.eid-hero {
      padding: 20px 18px !important;
      margin-top: 10px !important;
      border-radius: 24px !important;
    }

    .eid-hero-copy {
      gap: 12px !important;
    }

    .eid-hero-title {
      margin: 4px 0 6px !important;
      font-size: clamp(32px, 5.2vw, 52px) !important;
      line-height: 1.06 !important;
    }

    .eid-hero-text {
      margin: 0 0 8px !important;
      font-size: clamp(14px, 1.5vw, 18px) !important;
      line-height: 1.5 !important;
    }

    .eid-hero-points {
      gap: 8px !important;
      margin-bottom: 6px !important;
    }

    .eid-hero-actions {
      margin: 6px 0 8px !important;
      gap: 10px !important;
    }

    /* Ensure hero buttons center their text horizontally and vertically */
    .eid-hero-btn {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      padding: 12px 20px !important;
      min-height: 48px !important;
      box-sizing: border-box !important;
    }

    .eid-hero-stats {
      gap: 10px !important;
      margin-top: 4px !important;
    }

    .eid-hero-stat {
      min-height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px 14px;
      border-radius: 18px !important;
    }

    .eid-hero-stat span {
      font-family: "Noto Nastaliq Urdu", "Jameel Noori Nastaleeq", serif !important;
      font-size: clamp(16px, 2vw, 22px) !important;
      font-weight: 600 !important;
      line-height: 1.35 !important;
      letter-spacing: 0 !important;
      text-align: center;
      color: #1e376f !important;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        margin-top: 10px !important;
      }

      .eid-hero {
        padding: 16px 12px !important;
        margin-top: 8px !important;
      }

      .eid-hero-stat {
        min-height: 54px;
        padding: 9px 10px;
      }

      .eid-hero-stat span {
        font-size: clamp(15px, 4.2vw, 19px) !important;
      }

      /* Mobile: make the hero action buttons full-width and stacked */
      .eid-hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
      }

      .eid-hero-actions .eid-hero-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        padding: 12px 18px !important;
        min-height: 52px !important;
      }
    }


:root{
  --bg:#f7f1e6;
  --bg-2:#efe5d2;
  --card:#ffffff;
  --surface:#fffdf8;
  --ink:#2a241c;
  --muted:#7a7164;
  --green:#c62828;
  --green-2:#e53935;
  --green-deep:#8e1414;
  --gold:#c9a227;
  --gold-2:#e0b84a;
  --border:#e7dcc6;
  --container:1100px;
  --radius:18px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--ink);
  overflow-x:hidden;
  /* line-height:1.6; */
  /* padding:70px 20px; */
}

/* ===== CENTER LAYOUT ===== */

.heading,
.summary,
.filters,
.grid,
.load-more{
  max-width:var(--container);
  margin-left:auto;
  margin-right:auto;
}

/* ===== HEADING ===== */

.heading{
  text-align:center;
  margin-bottom:40px;
}

.heading h2{
  font-size:clamp(28px,4vw,48px);
  line-height:1.2;
  font-weight:700;
  margin-bottom:15px;
}

.heading p{
  color:var(--muted);
  font-size:16px;
}

/* ===== SUMMARY BOX ===== */

.summary{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:35px;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:40px;
  box-shadow:
  0 15px 40px rgba(0,0,0,.05),
  0 3px 10px rgba(0,0,0,.03);
  margin-bottom:30px;
}

.score{
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.big{
  font-size:72px;
  font-weight:700;
  color:var(--green);
  line-height:1;
  margin-bottom:10px;
}

.score div:nth-child(2){
  color:var(--gold);
  font-size:24px;
  letter-spacing:3px;
}

.score p{
  color:var(--muted);
  margin-top:12px;
}

.bars{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
}

.row{
  display:flex;
  align-items:center;
  gap:12px;
}

.row span{
  width:35px;
  font-weight:600;
}

.bar{
  flex:1;
  height:12px;
  background:#eee7d9;
  border-radius:999px;
  overflow:hidden;
}

.fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(
  90deg,
  var(--green),
  var(--gold)
  );
}

/* ===== FILTERS ===== */

.filters{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
  margin:35px auto;
}

.filters button{
  border:none;
  background:#fff;
  padding:12px 22px;
  border-radius:999px;
  cursor:pointer;
  font-weight:500;
  border:1px solid var(--border);
  transition:.35s ease;
}

.filters button:hover{
  background:var(--green);
  color:#fff;
  transform:translateY(-2px);
}

/* ===== REVIEWS GRID ===== */

.grid{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(300px,1fr));
  gap:24px;
}

/* ===== CARD ===== */

.card{
  background:#fff;
  border-radius:22px;
  padding:22px;
  border:1px solid var(--border);
  box-shadow:
  0 10px 25px rgba(0,0,0,.05);
  transition:.35s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 40px rgba(0,0,0,.08);
}

.top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:15px;
}

.top img{
  width:65px;
  height:65px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--bg-2);
}

.name{
  font-size:16px;
  font-weight:600;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  margin-top:5px;
  background:#eaf7ea;
  color:#1d6a21;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

.stars{
  color:var(--gold);
  font-size:18px;
  margin-bottom:10px;
}

.review-text{
  color:var(--muted);
  font-size:14px;
  margin-bottom:12px;
}

.product{
  color:var(--green-deep);
  font-weight:600;
  font-size:14px;
}

/* ===== LOAD MORE ===== */

.load-more{
  display:block;
  margin:45px auto 0;
  border:none;
  background:linear-gradient(
  135deg,
  var(--green),
  var(--green-deep)
  );
  color:#fff;
  padding:15px 30px;
  border-radius:999px;
  cursor:pointer;
  font-weight:600;
  transition:.35s ease;
}

.load-more:hover{
  transform:translateY(-3px);
}

.load-more:active{
  transform:translateY(0);
}

/* ===== ANIMATIONS ===== */

.card{
  animation:fadeUp .6s ease both;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== TABLET ===== */

@media(max-width:900px){

  .summary{
    grid-template-columns:1fr;
    text-align:center;
  }

  .bars{
    width:100%;
  }

  .row{
    text-align:left;
  }

}

/* ===== MOBILE ===== */

@media(max-width:600px){

  body{
    /* padding:50px 15px; */
  }

  .heading h2{
    font-size:30px;
  }

  .summary{
    padding:22px;
    border-radius:18px;
  }

  .big{
    font-size:58px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .card{
    padding:18px;
  }

  .top img{
    width:58px;
    height:58px;
  }

  .filters{
    gap:8px;
  }

  .filters button{
    width:100%;
  }

  .load-more{
    width:100%;
  }

}


/* ===== PREMIUM CARD TOP BORDER ===== */

.card{
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(
    90deg,
    var(--gold),
    var(--green)
  );
}

/* ===== PREMIUM SUMMARY GRADIENT ===== */

.summary{
  background:linear-gradient(
    135deg,
    #ffffff,
    #fffaf1
  );
}

/* ===== PREMIUM BUTTON SHADOW ===== */

.load-more{
  box-shadow:
    0 10px 25px rgba(198,40,40,.25);
}

/* ===== EXTRA HOVER EFFECTS ===== */

.load-more:hover{
  box-shadow:
    0 15px 35px rgba(198,40,40,.35);
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 20px 45px rgba(0,0,0,.10);
}

/* ===== PREMIUM IMAGE STYLE ===== */

.top img{
  border:3px solid var(--bg-2);
  transition:.4s ease;
}

.card:hover .top img{
  transform:scale(1.05);
}

/* ===== PREMIUM TITLE EFFECT ===== */

.heading h2{
  background:linear-gradient(
    135deg,
    var(--green-deep),
    var(--green),
    var(--gold)
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ===== PREMIUM GLASS FEEL ===== */

.summary,
.card{
  backdrop-filter:blur(10px);
}

/* ===== SMOOTH TRANSITIONS ===== */

.card,
.summary,
.filters button,
.load-more,
.top img{
  transition:all .35s ease;
}




/* ===== PHOTO GALLERY ===== */

.photo-gallery{
  display:none;
  max-width:1100px;
  margin:40px auto 0;
}

.gallery-title{
  text-align:center;
  margin-bottom:30px;
}

.gallery-title h3{
  font-size:32px;
  color:var(--green-deep);
  margin-bottom:10px;
}

.gallery-title p{
  color:var(--muted);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-item{
  background:#fff;
  padding:12px;
  border-radius:20px;
  border:1px solid var(--border);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.35s ease;
}

.gallery-item:hover{
  transform:translateY(-6px);
}

.gallery-item img{
  width:100%;
  display:block;
  border-radius:14px;
}

/* Mobile */

@media(max-width:768px){

  .gallery-grid{
    grid-template-columns:1fr;
  }

}

.filters button.active{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}

/* ===== VOICE NOTES ===== */

.voice-gallery{
  display:none;
  max-width:1100px;
  margin:40px auto 0;
}

.voice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.voice-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:22px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.35s ease;
}

.voice-card:hover{
  transform:translateY(-6px);
}

.voice-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:15px;
}

.voice-badge{
  background:#eaf7ea;
  color:#1d6a21;
  padding:5px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

.voice-stars{
  color:var(--gold);
}

.voice-card h4{
  margin-bottom:15px;
  color:var(--green-deep);
}

.voice-card audio{
  width:100%;
}

@media(max-width:768px){

  .voice-grid{
    grid-template-columns:1fr;
  }

}





/* GALLERY SECTION */
/* ================================ */

.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf3f2 0%, #fbe9e7 100%); /* was green #f3faf3/#eef7ec */
}



.gallery-section .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-section .section-customer{
  color: var(--ink);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(43, 36, 28, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.82), rgba(142, 20, 20, 0.82)); /* was green */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-section .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .gallery-item img {
        height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 10px;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .gallery-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .gallery-item img {
        height: 300px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .gallery-overlay h4 {
        font-size: 16px;
    }
}



html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f7f1e6;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}

/* Ensures main content takes remaining height */
main {
  flex: 1;
}

/* Footer Styling */
footer {
  background: linear-gradient(180deg,#8e1414,#5a0d0d); /* was green #1b5e20,#14401a */
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  margin-top: auto; /* keeps footer at bottom */
  color: #eaf5ea;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-section h3 {
  color: var(--gold-2);
  margin-bottom: 10px;
}

.footer-section p {
  line-height: 1.6;
  color: #d7ead7;
}

.footer-section a {
  color: #d7ead7;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--gold-2);
}

.copy {
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 15px;
  margin-top: 25px;
  color: #cfe3cf;
}

/* Responsive: mobile view vertical layout */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-section {
    max-width: 100%;
  }
}

/* modal */
.modal{position:fixed;inset:0;background:rgba(43,36,28,0.55);display:none;align-items:center;justify-content:center;padding:20px;z-index:1000}
.modal.show{display:flex}
.modal-content{background:white;padding:18px;border-radius:12px;max-width:520px;width:100%;border:1px solid var(--border);box-shadow:0 24px 60px rgba(43,36,28,0.25);position:relative}
.modal-close{position:absolute;right:10px;top:8px;background:transparent;border:0;color:var(--green);font-size:22px;cursor:pointer}
.modal-content h4{margin:0 0 10px; color: var(--green-deep); }
.modal-content form{display:flex;flex-direction:column;gap:10px;}
.modal-content input, .modal-content textarea{padding:10px;border-radius:8px;border:1px solid var(--border);background:#fffdf8;color:var(--ink)}
.btn.wide{width:100%}

/* small helpers */
.strike{text-decoration:line-through}
.small{font-size:0.85rem;color:var(--muted)}

/* ====== Responsive ====== */
@media (max-width: 1000px){
  .product-hero{flex-direction:column}
  .gallery{width:100%}
  .promo{flex-direction:column-reverse;align-items:center}
  .reviews-grid{grid-template-columns:repeat(2,1fr)}
  .specs-grid{grid-template-columns:1fr}
}

@media (max-width: 700px){

  .promo-image img{width:180px}
  .reviews-grid{grid-template-columns:1fr}
  .thumb{width:56px;height:56px}
  .countdown div{min-width:60px}
  .brand-title{display:none}
}

@media (max-width:420px){
  .thumb{width:48px;height:48px}
  .promo-image img{width:140px}
  .price-now{font-size:1.25rem}
}


.loader-box{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
z-index: 1200;
    background-color: rgba(247,241,230,0.7);
}

.loader {
  width: 100px;
  height: 100px;
  border: 5px solid #c62828;  /* was green #2e7d32 */
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  animation: pulse 1s linear infinite;
}
.loader:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 5px solid var(--gold);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
  0% { transform: translate(-50%, -50%) scale(0) }
  60% , 100% { transform: translate(-50%, -50%)  scale(1)}
}
@keyframes pulse {
  0% , 60% , 100%{ transform:  scale(1) }
  80% { transform:  scale(1.2)}
}

.trust-badges{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    flex-wrap:nowrap;
}

.trust-badges img{
    width:90px;
    height:90px;
    object-fit:contain;
}

@media(max-width:768px){
    .trust-badges img{
        width:70px;
        height:70px;
    }
}
