/** Shopify CDN: Minification failed

Line 496:0 Expected "}" to go with "{"

**/

/* ═══════════════════════════════════════════════════════════════════════════
   LUSHROOTS — Design Language inspired by The Sill
   Colors: Forest Green #2d5a27, Gold #c8a96e, Cream #f5f0e8
   Fonts: Cormorant Garamond (headings), DM Sans (body)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --forest: #2d5a27;
  --forest-deep: #1a3d16;
  --forest-mid: #3d6b35;
  --forest-light: #4a7d42;
  --gold: #c8a96e;
  --gold-light: #d4bc8a;
  --gold-pale: #e8dcc5;
  --cream: #f5f0e8;
  --cream-dark: #ebe4d8;
  --cream-mid: #f0e9de;
  --white: #ffffff;
  --text-primary: #1a2e18;
  --text-secondary: #4a5d47;
  --text-muted: #7a8a77;
  --text-light: #9aaa97;
  --border: #ddd5c8;
  --border-light: #e8e0d3;
  --shadow-sm: 0 1px 3px rgba(26,61,22,0.06);
  --shadow-md: 0 4px 16px rgba(26,61,22,0.08);
  --shadow-lg: 0 8px 32px rgba(26,61,22,0.12);
  --shadow-xl: 0 16px 48px rgba(26,61,22,0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1320px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar .divider { color: var(--forest-light); }


/* ── HEADER / NAV ────────────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo span { color: var(--gold); font-style: italic; font-weight: 500; font-size: 24px; }

.nav-main { display: flex; gap: 0; align-items: center; }
.nav-item {
  position: relative;
  padding: 24px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-item:hover { color: var(--forest); }
.nav-item.active { color: var(--forest); }
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--forest);
}
.nav-item.highlight { color: var(--forest-mid); font-weight: 600; }

/* Mega Menu Dropdown */
.nav-dropdown-trigger { position: relative; }
.nav-dropdown-trigger:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: -120px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--forest);
  box-shadow: var(--shadow-lg);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(3, 180px) 240px;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all var(--transition);
  z-index: 200;
}
.mega-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.mega-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color var(--transition);
}
.mega-col a:hover { color: var(--forest); }
.mega-featured {
  border-left: 1px solid var(--border-light);
  padding-left: 32px;
}
.mega-featured-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.mega-featured-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.mega-featured-card .caption {
  padding: 12px 0 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mega-featured-card .caption::after { content: '→'; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: 100px;
  padding: 8px 16px;
  min-width: 220px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.header-search:hover { border-color: var(--border); }
.header-search svg { width: 16px; height: 16px; opacity: 0.5; }
.header-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  position: relative;
}
.header-icon:hover { background: var(--cream); }
.header-icon svg { width: 20px; height: 20px; color: var(--text-primary); }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--forest);
  color: var(--white);
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.mobile-menu-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--text-primary);
  position: relative;
}
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--text-primary);
}
.mobile-menu-btn span::before { top: -6px; }
.mobile-menu-btn span::after { top: 6px; }


/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-ghost {
  color: var(--forest);
  padding: 12px 16px;
}
.btn-ghost:hover { background: var(--cream); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1fba59; }
.btn-lg { padding: 14px 36px; font-size: 15px; }

/* ── TRUST BAR ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  max-width: 280px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--forest); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 48px;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.payment-icons {
  display: flex;
  gap: 8px;
  font-size: 11px;
}
.payment-icons span {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
}


/* ── WHATSAPP FLOATING ───────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 1000;
  transition: all var(--transition);
  color: white;
  font-size: 28px;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--white);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}


/* ── RESPONSIVE (shared components) ──*/
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-main { height: 60px; }
}
@media (max-width: 768px) {
  .announcement-bar { font-size: 11px; padding: 8px 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
/* ── MOBILE MENU OPEN STATE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-main {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white, #ffffff);
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
    border-top: 1px solid var(--border-light, #e8e0d3);
  }
  .nav-main.mobile-open {
    display: flex;
  }
  .nav-main .nav-item {
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--border-light, #e8e0d3);
  }
  .nav-main .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-dropdown-trigger:hover .mega-menu,
  .nav-dropdown-trigger.open .mega-menu {
    display: block;
  }
  .nav-main .mega-menu .mega-featured { display: none; }
  .nav-main .mega-menu .mega-col { padding: 8px 0; }
  .nav-main .mega-menu .mega-col h4 { font-size: 14px; margin-bottom: 8px; }
  .nav-main .mega-menu .mega-col a { padding: 6px 0; font-size: 14px; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu-btn.active span { background: transparent; }
  .mobile-menu-btn.active span::before { transform: rotate(45deg); top: 0; }
  .mobile-menu-btn.active span::after { transform: rotate(-45deg); top: 0; }
  .header-search { display: none; }
}
