/** Shopify CDN: Minification failed

Line 32:0 All "@import" rules must come first

**/
/* ============================================================
   ZAYA HERBAL CARE — Custom Theme Styles
   Brand: Forest Green #2D6A4F | Light Mint #D8F3DC
         Warm Gold #C9A84C | Off White #F9F9F6 | Dark Charcoal #1B1B1B
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --zaya-green: #2D6A4F;
  --zaya-green-dark: #245840;
  --zaya-green-light: #3d8a67;
  --zaya-mint: #D8F3DC;
  --zaya-mint-dark: #b8e0bc;
  --zaya-gold: #C9A84C;
  --zaya-gold-dark: #b8962e;
  --zaya-off-white: #F9F9F6;
  --zaya-charcoal: #1B1B1B;
  --zaya-whatsapp: #25D366;
  --zaya-whatsapp-dark: #1fad55;
  --zaya-font-heading: 'Playfair Display', Georgia, serif;
  --zaya-font-body: 'Inter', 'DM Sans', system-ui, sans-serif;
  --zaya-font-cta: 'DM Sans', system-ui, sans-serif;
  --zaya-font-urdu: 'Jameel Noori Nastaleeq', 'Noto Nastaliq Urdu', serif;
}

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600&family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

/* ---------- Global Base ---------- */
body {
  background-color: var(--zaya-off-white);
  color: var(--zaya-charcoal);
}

/* ---------- Heading Overrides ---------- */
h1, h2, h3, h4 {
  font-family: var(--zaya-font-heading);
  color: var(--zaya-charcoal);
}

/* ---------- RTL Urdu Text ---------- */
.urdu,
.urdu-text,
[lang="ur"],
.zaya-urdu {
  font-family: var(--zaya-font-urdu) !important;
  direction: rtl;
  text-align: right;
  line-height: 2.2;
  font-size: 1.05em;
}

/* ---------- Announcement Bar ---------- */
.zaya-announcement {
  background-color: var(--zaya-green);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--zaya-font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.zaya-announcement a {
  color: var(--zaya-gold);
  text-decoration: none;
  font-weight: 700;
}

/* ---------- COD Badge ---------- */
.zaya-cod-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--zaya-gold);
  color: var(--zaya-charcoal);
  font-family: var(--zaya-font-cta);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.zaya-cod-badge svg,
.zaya-cod-badge .cod-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- Trust Badge Bar ---------- */
.zaya-trust-bar {
  background-color: var(--zaya-mint);
  padding: 20px 16px;
}

.zaya-trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.zaya-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
  text-align: center;
}

.zaya-trust-badge__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--zaya-green);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.zaya-trust-badge__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.zaya-trust-badge__label {
  font-family: var(--zaya-font-cta);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--zaya-charcoal);
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ---------- WhatsApp Floating Button ---------- */
.zaya-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--zaya-whatsapp);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  font-family: var(--zaya-font-cta);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.zaya-whatsapp-float:hover {
  background: var(--zaya-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
  text-decoration: none;
}

.zaya-whatsapp-float__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

@media screen and (max-width: 749px) {
  .zaya-whatsapp-float {
    bottom: 72px;
    right: 16px;
    padding: 11px 16px 11px 12px;
    font-size: 0.82rem;
  }
}

/* ---------- WhatsApp Button (Product / Inline) ---------- */
.zaya-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--zaya-whatsapp);
  color: #fff !important;
  text-decoration: none !important;
  border: none;
  border-radius: 12px;
  padding: 15px 24px;
  font-family: var(--zaya-font-cta);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 12px;
}

.zaya-whatsapp-btn:hover {
  background: var(--zaya-whatsapp-dark);
  transform: translateY(-1px);
  color: #fff !important;
}

.zaya-whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #fff;
}

/* ---------- Mobile Sticky WhatsApp Footer ---------- */
.zaya-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  padding: 10px 16px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  border-top: 1px solid var(--zaya-mint-dark);
}

@media screen and (max-width: 749px) {
  .zaya-sticky-footer {
    display: block;
  }
}

.zaya-sticky-footer__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--zaya-whatsapp);
  color: #fff !important;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-family: var(--zaya-font-cta);
  font-size: 0.9rem;
  font-weight: 700;
}

.zaya-sticky-footer__wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* ---------- Why Choose Us Section ---------- */
.zaya-why-us {
  padding: 64px 16px;
  background: var(--zaya-off-white);
}

.zaya-why-us__heading {
  text-align: center;
  font-family: var(--zaya-font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--zaya-green);
  margin-bottom: 40px;
}

.zaya-why-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .zaya-why-us__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.zaya-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--zaya-mint-dark);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.zaya-why-card:hover {
  box-shadow: 0 6px 24px rgba(45, 106, 79, 0.12);
  transform: translateY(-3px);
}

.zaya-why-card__icon {
  width: 56px;
  height: 56px;
  background: var(--zaya-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zaya-green);
  flex-shrink: 0;
}

.zaya-why-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.zaya-why-card__title {
  font-family: var(--zaya-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zaya-green);
  line-height: 1.3;
}

.zaya-why-card__desc {
  font-family: var(--zaya-font-body);
  font-size: 0.8rem;
  color: var(--zaya-charcoal);
  line-height: 1.6;
  opacity: 0.85;
}

/* ---------- Testimonials Section ---------- */
.zaya-testimonials {
  padding: 64px 16px;
  background: var(--zaya-mint);
}

.zaya-testimonials__heading {
  text-align: center;
  font-family: var(--zaya-font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--zaya-green);
  margin-bottom: 40px;
}

.zaya-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .zaya-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zaya-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(45, 106, 79, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zaya-review-card__quote {
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--zaya-green);
  opacity: 0.18;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.zaya-review-card__stars {
  display: flex;
  gap: 3px;
  padding-top: 4px;
}

.zaya-review-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--zaya-gold);
}

.zaya-review-card__text {
  font-family: var(--zaya-font-urdu);
  direction: rtl;
  text-align: right;
  line-height: 2.2;
  font-size: 0.95rem;
  color: var(--zaya-charcoal);
  padding-top: 4px;
}

.zaya-review-card__author {
  font-family: var(--zaya-font-cta);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zaya-green);
  margin-top: auto;
}

/* ---------- Hero Section Enhancements ---------- */
.zaya-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.zaya-hero-badge {
  background: rgba(201, 168, 76, 0.9);
  color: #1B1B1B;
  font-family: var(--zaya-font-cta);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Product Page Enhancements ---------- */
.zaya-product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.zaya-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--zaya-mint);
  color: var(--zaya-green);
  font-family: var(--zaya-font-cta);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--zaya-mint-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.zaya-product-badge svg {
  width: 13px;
  height: 13px;
  fill: var(--zaya-green);
  flex-shrink: 0;
}

.zaya-plain-pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--zaya-gold);
  color: var(--zaya-charcoal);
  font-family: var(--zaya-font-cta);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zaya-trust-note {
  font-family: var(--zaya-font-body);
  font-size: 0.82rem;
  color: var(--zaya-green);
  font-style: italic;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zaya-trust-note::before {
  content: "✓";
  font-style: normal;
  font-weight: 700;
}

/* ---------- Section Heading Styles ---------- */
.zaya-section-heading {
  font-family: var(--zaya-font-heading);
  color: var(--zaya-green);
  text-align: center;
}

.zaya-section-subheading {
  font-family: var(--zaya-font-body);
  text-align: center;
  color: var(--zaya-charcoal);
  opacity: 0.75;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* ---------- Product Card Enhancements ---------- */
.zaya-product-card-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--zaya-whatsapp);
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 8px;
  padding: 9px 14px;
  font-family: var(--zaya-font-cta);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 8px;
  width: 100%;
  transition: background 0.2s ease;
}

.zaya-product-card-wa:hover {
  background: var(--zaya-whatsapp-dark);
  color: #fff !important;
}

.zaya-product-card-wa svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* ---------- About Us Section ---------- */
.zaya-about-promise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 32px auto 0;
}

@media screen and (min-width: 750px) {
  .zaya-about-promise {
    grid-template-columns: repeat(4, 1fr);
    max-width: 900px;
  }
}

.zaya-promise-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px 12px;
  background: var(--zaya-mint);
  border-radius: 14px;
}

.zaya-promise-block__icon {
  width: 48px;
  height: 48px;
  background: var(--zaya-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.zaya-promise-block__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.zaya-promise-block__title {
  font-family: var(--zaya-font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zaya-green);
}

.zaya-promise-block__desc {
  font-family: var(--zaya-font-body);
  font-size: 0.75rem;
  color: var(--zaya-charcoal);
  line-height: 1.5;
  opacity: 0.8;
}

/* ---------- FAQ Accordion ---------- */
.zaya-faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.zaya-faq__item {
  border-bottom: 1px solid var(--zaya-mint-dark);
}

.zaya-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 4px;
  text-align: left;
  font-family: var(--zaya-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--zaya-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.zaya-faq__question:hover {
  color: var(--zaya-green);
}

.zaya-faq__question-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--zaya-green);
  transition: transform 0.25s ease;
}

.zaya-faq__item.open .zaya-faq__question-icon {
  transform: rotate(45deg);
}

.zaya-faq__answer {
  display: none;
  padding: 0 4px 18px;
  font-family: var(--zaya-font-body);
  font-size: 0.875rem;
  color: var(--zaya-charcoal);
  line-height: 1.7;
  opacity: 0.85;
}

.zaya-faq__item.open .zaya-faq__answer {
  display: block;
}

/* ---------- Blog CTA ---------- */
.zaya-blog-cta {
  background: var(--zaya-mint);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin: 32px 0;
}

.zaya-blog-cta__heading {
  font-family: var(--zaya-font-heading);
  font-size: 1.1rem;
  color: var(--zaya-green);
  margin-bottom: 12px;
}

/* ---------- Disclaimer Box ---------- */
.zaya-disclaimer {
  background: var(--zaya-mint);
  border-left: 4px solid var(--zaya-gold);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}

.zaya-disclaimer p {
  font-family: var(--zaya-font-body);
  font-size: 0.82rem;
  color: var(--zaya-charcoal);
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

/* ---------- Responsive Utilities ---------- */
@media screen and (max-width: 749px) {
  .zaya-hide-mobile { display: none !important; }
}

@media screen and (min-width: 750px) {
  .zaya-hide-desktop { display: none !important; }
}

/* ---------- Page Body Padding for Sticky Footer ---------- */
@media screen and (max-width: 749px) {
  body {
    padding-bottom: 72px;
  }
}

/* ---------- Header WhatsApp Link ---------- */
.zaya-header-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--zaya-whatsapp);
  color: #fff !important;
  text-decoration: none;
  font-family: var(--zaya-font-cta);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s ease;
}

.zaya-header-wa:hover {
  background: var(--zaya-whatsapp-dark);
}

.zaya-header-wa svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* ---------- Target Audience Badge ---------- */
.zaya-audience-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--zaya-mint);
  border: 2px solid var(--zaya-green);
  color: var(--zaya-green);
  font-family: var(--zaya-font-cta);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 8px 0;
}

/* ---------- Marquee Trust Strip ---------- */
.zaya-marquee-strip {
  background: var(--zaya-green);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.zaya-marquee-strip__inner {
  display: inline-flex;
  gap: 48px;
  animation: zaya-marquee 30s linear infinite;
}

.zaya-marquee-strip__item {
  font-family: var(--zaya-font-cta);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.zaya-marquee-strip__item::before {
  content: "✦";
  color: var(--zaya-gold);
  font-size: 0.7rem;
}

@keyframes zaya-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- WhatsApp SVG Icon (reusable) ---------- */
.zaya-wa-svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
