/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   EFG MARKET — Shopify Theme Stylesheet
   Brand: Eco-Friendly Ganesh Idols | efg.market
   Color Palette: Deep Saffron, Forest Green, Ivory, Gold
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --efg-saffron:       #E8641A;
  --efg-saffron-dark:  #C4511A;
  --efg-saffron-light: #F5A86E;
  --efg-green:         #2E6B3E;
  --efg-green-light:   #4A9B5F;
  --efg-green-pale:    #EDF7F0;
  --efg-gold:          #D4A017;
  --efg-gold-light:    #F2C94C;
  --efg-ivory:         #FDF8F1;
  --efg-ivory-dark:    #F5EDD8;
  --efg-brown:         #5C3D1E;
  --efg-brown-dark:    #3D2609;
  --efg-text:          #1A1A1A;
  --efg-text-muted:    #6B6050;
  --efg-border:        #E8D9C0;
  --efg-white:         #FFFFFF;
  --efg-shadow:        0 4px 24px rgba(92,61,30,0.10);
  --efg-shadow-lg:     0 12px 48px rgba(92,61,30,0.16);
  --efg-radius:        12px;
  --efg-radius-lg:     20px;
  --efg-font-head:     'Cormorant Garamond', Georgia, serif;
  --efg-font-body:     'DM Sans', 'Helvetica Neue', sans-serif;
  --efg-transition:    0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--efg-font-body);
  color: var(--efg-text);
  background-color: var(--efg-ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   UTILITY
   ============================================================ */
.efg-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media(min-width:768px) { .efg-container { padding: 0 40px; } }
@media(min-width:1200px) { .efg-container { padding: 0 60px; } }

/* ---- Section Headers ---- */
.efg-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.efg-section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--efg-saffron);
  margin-bottom: 0.6rem;
}
.efg-section-title {
  font-family: var(--efg-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--efg-brown-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.efg-section-subtitle {
  font-size: 1.05rem;
  color: var(--efg-text-muted);
  line-height: 1.7;
}

/* ---- Buttons ---- */
.efg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--efg-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--efg-transition);
}
.efg-btn--primary {
  background: var(--efg-saffron);
  color: var(--efg-white);
  border-color: var(--efg-saffron);
}
.efg-btn--primary:hover {
  background: var(--efg-saffron-dark);
  border-color: var(--efg-saffron-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,100,26,0.35);
}
.efg-btn--outline {
  background: transparent;
  color: var(--efg-brown-dark);
  border-color: var(--efg-brown-dark);
}
.efg-btn--outline:hover {
  background: var(--efg-brown-dark);
  color: var(--efg-white);
  transform: translateY(-2px);
}
.efg-btn--outline.efg-btn--light {
  color: var(--efg-white);
  border-color: rgba(255,255,255,0.7);
}
.efg-btn--outline.efg-btn--light:hover {
  background: var(--efg-white);
  color: var(--efg-brown-dark);
}
.efg-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }
.efg-btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.efg-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--efg-white);
  border-bottom: 1px solid var(--efg-border);
  box-shadow: 0 2px 12px rgba(92,61,30,0.07);
}
.efg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media(min-width:768px) { .efg-header__inner { padding: 0 40px; height: 80px; } }

/* Logo */
.efg-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.efg-logo__img {
  height: 48px;
  width: auto;
}
.efg-logo__text {
  font-family: var(--efg-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--efg-brown-dark);
  line-height: 1.1;
}
.efg-logo__tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--efg-green);
  display: block;
}

/* Nav */
.efg-nav {
  display: none;
}
@media(min-width: 1024px) {
  .efg-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}
.efg-nav__item {
  position: relative;
}
.efg-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--efg-brown-dark);
  border-radius: 8px;
  transition: all var(--efg-transition);
  white-space: nowrap;
}
.efg-nav__link:hover, .efg-nav__link.active {
  background: var(--efg-ivory-dark);
  color: var(--efg-saffron);
}
.efg-nav__chevron {
  width: 14px; height: 14px;
  transition: transform var(--efg-transition);
}
.efg-nav__item:hover .efg-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.efg-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--efg-white);
  border: 1px solid var(--efg-border);
  border-radius: var(--efg-radius);
  box-shadow: var(--efg-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--efg-transition);
  overflow: hidden;
  z-index: 100;
}
.efg-nav__item:hover .efg-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.efg-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  color: var(--efg-text);
  transition: background var(--efg-transition);
  border-bottom: 1px solid var(--efg-border);
}
.efg-dropdown__link:last-child { border-bottom: none; }
.efg-dropdown__link:hover {
  background: var(--efg-ivory);
  color: var(--efg-saffron);
}
.efg-dropdown__icon { font-size: 1.1rem; }

/* Header Actions */
.efg-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.efg-header__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  color: var(--efg-brown-dark);
  transition: background var(--efg-transition);
}
.efg-header__icon-btn:hover { background: var(--efg-ivory-dark); }
.efg-header__icon-btn svg { width: 20px; height: 20px; }
.efg-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--efg-saffron);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.efg-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}
@media(min-width:1024px) { .efg-mobile-toggle { display: none; } }
.efg-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--efg-brown-dark);
  border-radius: 2px;
  transition: all var(--efg-transition);
}

/* Mobile Drawer */
.efg-mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2000;
  pointer-events: none;
}
.efg-mobile-nav.is-open { pointer-events: all; }
.efg-mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--efg-transition);
}
.efg-mobile-nav.is-open .efg-mobile-nav__overlay { opacity: 1; }
.efg-mobile-nav__drawer {
  position: absolute;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--efg-white);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.efg-mobile-nav.is-open .efg-mobile-nav__drawer { transform: translateX(0); }
.efg-mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--efg-brown-dark);
  padding: 4px;
  margin-bottom: 0.5rem;
}
.efg-mobile-nav__link {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--efg-brown-dark);
  border-radius: 8px;
  transition: background var(--efg-transition);
}
.efg-mobile-nav__link:hover { background: var(--efg-ivory); color: var(--efg-saffron); }
.efg-mobile-nav__group { margin-top: 0.5rem; }

.efg-mobile-nav__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--efg-saffron);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background var(--efg-transition);
}
.efg-mobile-nav__group-toggle:hover { background: var(--efg-ivory); }
.efg-mobile-nav__group-chevron {
  transition: transform var(--efg-transition);
  flex-shrink: 0;
}
.efg-mobile-nav__group-toggle[aria-expanded="true"] .efg-mobile-nav__group-chevron {
  transform: rotate(180deg);
}
.efg-mobile-nav__sub {
  padding-left: 1.25rem;
  padding-bottom: 0.5rem;
}
.efg-mobile-nav__sub[hidden] { display: none; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.efg-announcement {
  background: var(--efg-gold);
  color: var(--efg-white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.efg-announcement a { color: var(--efg-green); text-decoration: underline; font-weight: 800; }

/* ============================================================
   HERO SECTION
   ============================================================ */

/* ============================================================
   HERO SECTION — Full background image with overlay card
   ============================================================ */
.efg-hero {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 80vh, 780px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0rem 5%;
}

.efg-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.efg-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.efg-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0) 0%,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.efg-hero__overlay-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  background: rgba(30, 20, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--efg-radius-lg);
  padding: 2rem 2.25rem;
}

.efg-hero__card-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.efg-hero__card-left > img {
  flex-shrink: 0;
  margin-top: 4px;
}

.efg-hero__title {
  font-family: var(--efg-font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--efg-white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.efg-hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.efg-hero__vg-tag {
  display: inline-block;
  background: var(--efg-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: background var(--efg-transition);
}
.efg-hero__vg-tag:hover { background: var(--efg-green-light); }

.efg-hero__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.efg-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media(max-width: 600px) {
  .efg-hero {
    align-items: flex-end;
    padding: 0;
    min-height: 55vh;
  }

  .efg-btn-hero-contact {
    display: none;
  }

  .efg-hero__bg img {
    object-position: center 20%;
  }


  .efg-hero__overlay-card {
    /* display: none; */
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1.25rem 2rem;
    background: rgba(20, 12, 5, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .efg-hero__card-left {
    flex-direction: row;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .efg-hero__card-left > img {
    width: 28px;
    height: 28px;
    margin-top: 6px;
  }

  .efg-hero__title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
  }

  .efg-hero__subtitle {
    font-size: 0.875rem;
    margin-bottom: 0.4rem;
  }

  .efg-hero__desc {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }

  .efg-hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .efg-hero__cta .efg-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
}


/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.efg-marquee-strip {
  background: var(--efg-saffron);
  color: var(--efg-white);
  overflow: hidden;
  padding: 0.65rem 0;
  white-space: nowrap;
}
.efg-marquee-track {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  animation: efg-marquee 30s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.efg-marquee-dot { color: rgba(255,255,255,0.5); font-size: 0.6rem; }
@keyframes efg-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.efg-mission {
  padding: 5rem 0;
  background: var(--efg-green-pale);
}
.efg-mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.efg-mission-card {
  background: var(--efg-white);
  border-radius: var(--efg-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(46,107,62,0.12);
  transition: transform var(--efg-transition), box-shadow var(--efg-transition);
}
.efg-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--efg-shadow-lg);
}
.efg-mission-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.efg-mission-card h3 {
  font-family: var(--efg-font-head);
  font-size: 1.3rem;
  color: var(--efg-green);
  margin-bottom: 0.6rem;
}
.efg-mission-card p { font-size: 0.9rem; color: var(--efg-text-muted); line-height: 1.7; }

/* ============================================================
   COLLECTIONS SECTION
   ============================================================ */
.efg-collections {
  padding: 5rem 0;
  background: var(--efg-ivory);
}
.efg-collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media(max-width: 640px) { .efg-collections__grid { grid-template-columns: 1fr; } }

.efg-collection-card {
  border-radius: var(--efg-radius-lg);
  overflow: hidden;
  display: block;
  position: relative;
  min-height: 320px;
  background: var(--efg-brown);
  transition: transform var(--efg-transition);
}
.efg-collection-card--large { min-height: 380px; }
.efg-collection-card:hover { transform: scale(1.02); }
.efg-collection-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to bottom, transparent 30%, rgba(30,15,5,0.85) 100%);
}
.efg-collection-card--large .efg-collection-card__inner {
  background:
    linear-gradient(135deg, rgba(232,100,26,0.7) 0%, rgba(30,15,5,0.8) 100%);
}
.efg-collection-card:nth-child(2) .efg-collection-card__inner {
  background: linear-gradient(135deg, rgba(46,107,62,0.7) 0%, rgba(30,15,5,0.8) 100%);
}
.efg-collection-card__content { color: var(--efg-white); }
.efg-collection-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.4rem;
  display: block;
}
.efg-collection-card__title {
  font-family: var(--efg-font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.efg-collection-card__desc {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 1rem;
  max-width: 280px;
  line-height: 1.5;
}
.efg-collection-card__cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
  transition: border-color var(--efg-transition);
}
.efg-collection-card:hover .efg-collection-card__cta { border-color: white; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.efg-products {
  padding: 5rem 0;
  background: var(--efg-white);
}
.efg-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.efg-product-card {
  display: block;
  background: var(--efg-ivory);
  border-radius: var(--efg-radius-lg);
  overflow: hidden;
  border: 1px solid var(--efg-border);
  transition: transform var(--efg-transition), box-shadow var(--efg-transition);
}
.efg-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--efg-shadow-lg);
}
.efg-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--efg-ivory-dark);
}
.efg-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.efg-product-card:hover .efg-product-card__img-wrap img { transform: scale(1.06); }
.efg-product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.efg-product-card__badge {
  position: absolute;
  top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.efg-product-card__badge--eco {
  left: 10px;
  background: var(--efg-green);
  color: white;
}
.efg-product-card__badge--sale {
  right: 10px;
  background: var(--efg-saffron);
  color: white;
}
.efg-product-card__info {
  padding: 1.25rem;
}
.efg-product-card__vendor {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--efg-green);
  margin-bottom: 0.25rem;
}
.efg-product-card__title {
  font-family: var(--efg-font-head);
  font-size: 1.1rem;
  color: var(--efg-brown-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.efg-product-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.efg-price { font-weight: 700; color: var(--efg-saffron); font-size: 1.05rem; }
.efg-price--compare {
  font-size: 0.85rem;
  color: var(--efg-text-muted);
  text-decoration: line-through;
}
.efg-products__cta { text-align: center; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.efg-why {
  padding: 5rem 0;
  background: var(--efg-ivory-dark);
}
.efg-why__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width: 900px) {
  .efg-why__inner { grid-template-columns: 1fr; }
}
.efg-why__text p { color: var(--efg-text-muted); line-height: 1.75; }
.efg-why__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.efg-why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--efg-white);
  border-radius: var(--efg-radius);
  border: 1px solid var(--efg-border);
  transition: box-shadow var(--efg-transition);
}
.efg-why-item:hover { box-shadow: var(--efg-shadow); }
.efg-why-item__num {
  font-family: var(--efg-font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--efg-saffron);
  opacity: 0.4;
  line-height: 1;
  min-width: 2.5rem;
}
.efg-why-item h4 {
  font-family: var(--efg-font-head);
  font-size: 1.1rem;
  color: var(--efg-brown-dark);
  margin-bottom: 0.3rem;
}
.efg-why-item p { font-size: 0.875rem; color: var(--efg-text-muted); line-height: 1.65; }

/* ============================================================
   PARTNER SECTION
   ============================================================ */
.efg-partner {
  padding: 3rem 0;
  background: var(--efg-green);
}
.efg-partner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.efg-partner__logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.efg-partner__text h3 {
  font-family: var(--efg-font-head);
  font-size: 1.4rem;
  color: var(--efg-white);
  margin-bottom: 0.4rem;
}
.efg-partner__text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.efg-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--efg-brown-dark) 0%, #2C1A08 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.efg-cta-section::before {
  content: '🕉';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.efg-cta-section__inner { position: relative; z-index: 1; }
.efg-cta-section h2 {
  font-family: var(--efg-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--efg-white);
  margin-bottom: 1rem;
}
.efg-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.efg-cta-section__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.efg-cta-section .efg-btn--outline {
  color: var(--efg-white);
  border-color: rgba(255,255,255,0.4);
}
.efg-cta-section .efg-btn--outline:hover {
  background: var(--efg-white);
  color: var(--efg-brown-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
.efg-footer {
  background: var(--efg-brown-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.efg-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media(max-width: 900px) { .efg-footer__top { grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px) { .efg-footer__top { grid-template-columns: 1fr; } }

.efg-footer__brand .efg-logo__text { color: var(--efg-white); }
.efg-footer__brand .efg-logo__tagline { color: var(--efg-green-light); }
.efg-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}
.efg-footer__partner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--efg-radius);
}
.efg-footer__partner img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.efg-footer__partner span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.efg-footer__partner strong { color: var(--efg-gold-light); font-size: 0.82rem; display: block; }

.efg-footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--efg-saffron-light);
  margin-bottom: 1rem;
}
.efg-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.efg-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--efg-transition);
}
.efg-footer__links a:hover { color: var(--efg-gold-light); }

.efg-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.efg-footer__contact-icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.efg-footer__hours {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.efg-footer__hours strong { color: var(--efg-gold-light); display: block; margin-bottom: 0.25rem; font-size: 0.78rem; }

.efg-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.efg-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.efg-footer__bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--efg-transition); }
.efg-footer__bottom-links a:hover { color: var(--efg-gold-light); }
.efg-footer__serving {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 0;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.efg-collection-header {
  background: linear-gradient(135deg, var(--efg-brown-dark) 0%, var(--efg-brown) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--efg-white);
}
.efg-collection-header h1 {
  font-family: var(--efg-font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--efg-white);
  margin-bottom: 0.5rem;
}
.efg-collection-header p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto;
}
.efg-collection-body { padding: 3rem 0; }
.efg-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ============================================================
   PAGE TEMPLATES (Creation, Contact, Privacy, Terms)
   ============================================================ */
.efg-page-hero {
  background: linear-gradient(135deg, var(--efg-saffron) 0%, var(--efg-saffron-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--efg-white);
  position: relative;
  overflow: hidden;
}
.efg-page-hero::after {
  content: '🕉';
  position: absolute;
  font-size: 15rem;
  opacity: 0.06;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.efg-page-hero h1 {
  font-family: var(--efg-font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.6rem;
}
.efg-page-hero p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto; }

.efg-page-content { padding: 4rem 0; }
.efg-page-content .efg-container { max-width: 860px; }
.efg-page-content h2 {
  font-family: var(--efg-font-head);
  font-size: 1.8rem;
  color: var(--efg-brown-dark);
  margin: 2rem 0 0.75rem;
}
.efg-page-content h3 {
  font-family: var(--efg-font-head);
  font-size: 1.3rem;
  color: var(--efg-green);
  margin: 1.5rem 0 0.5rem;
}
.efg-page-content p { color: var(--efg-text-muted); line-height: 1.8; margin-bottom: 1rem; }
.efg-page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.efg-page-content ul li { color: var(--efg-text-muted); line-height: 1.8; margin-bottom: 0.3rem; }

/* Creation Process Steps */
.efg-process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--efg-border);
  align-items: flex-start;
}
.efg-process-step:last-child { border-bottom: none; }
.efg-process-step__num {
  font-family: var(--efg-font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--efg-saffron);
  opacity: 0.3;
  line-height: 1;
  min-width: 4rem;
  text-align: center;
}
.efg-process-step h2 { font-size: 1.5rem; margin-top: 0; }

/* Environmental Impact Grid */
.efg-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.efg-impact-card {
  background: var(--efg-green-pale);
  border: 1px solid rgba(46,107,62,0.15);
  border-radius: var(--efg-radius);
  padding: 1.25rem;
}
.efg-impact-card h3 { font-size: 1rem; color: var(--efg-green); margin: 0 0 0.5rem; }
.efg-impact-card p { font-size: 0.85rem; margin: 0; }

/* Contact Page */
.efg-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media(max-width:768px) { .efg-contact-grid { grid-template-columns: 1fr; } }
.efg-contact-form__field {
  margin-bottom: 1.25rem;
}
.efg-contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--efg-brown-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.efg-contact-form input,
.efg-contact-form textarea,
.efg-contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--efg-border);
  border-radius: 10px;
  font-family: var(--efg-font-body);
  font-size: 0.9rem;
  background: var(--efg-white);
  color: var(--efg-text);
  transition: border-color var(--efg-transition);
  outline: none;
}
.efg-contact-form input:focus,
.efg-contact-form textarea:focus {
  border-color: var(--efg-saffron);
}
.efg-contact-form textarea { resize: vertical; min-height: 130px; }
.efg-contact-info-box {
  background: var(--efg-ivory-dark);
  border-radius: var(--efg-radius-lg);
  padding: 2rem;
  border: 1px solid var(--efg-border);
}
.efg-contact-info-box h3 {
  font-family: var(--efg-font-head);
  font-size: 1.4rem;
  color: var(--efg-brown-dark);
  margin-bottom: 1.25rem;
}
.efg-contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.efg-contact-detail__icon {
  width: 36px; height: 36px;
  background: var(--efg-saffron);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.efg-contact-detail__text strong { display: block; font-size: 0.8rem; color: var(--efg-brown-dark); }
.efg-contact-detail__text a, .efg-contact-detail__text span { font-size: 0.875rem; color: var(--efg-text-muted); }
.efg-contact-detail__text a:hover { color: var(--efg-saffron); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media(max-width: 480px) {
  .efg-hero__cta { flex-direction: column; align-items: flex-start; }
  .efg-products__grid { grid-template-columns: 1fr 1fr; }
  .efg-process-step { flex-direction: column; gap: 0.5rem; }
  .efg-process-step__num { font-size: 2rem; min-width: auto; }
}

/* ============================================================
   SEARCH / CART DRAWER
   ============================================================ */
.efg-cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--efg-white);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.efg-cart-drawer.is-open { transform: translateX(0); }
.efg-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--efg-border);
}
.efg-cart-drawer__header h3 {
  font-family: var(--efg-font-head);
  font-size: 1.2rem;
  color: var(--efg-brown-dark);
}
.efg-cart-drawer__close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--efg-text-muted);
}
.efg-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.efg-cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--efg-border);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.efg-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--efg-transition);
}
.efg-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.efg-cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100%;
  background: var(--efg-white);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
}
.efg-cart-drawer.is-open {
  transform: translateX(0);
}
.efg-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--efg-border);
  flex-shrink: 0;
}
.efg-cart-drawer__header h3 {
  font-family: var(--efg-font-head);
  font-size: 1.3rem;
  color: var(--efg-brown-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.efg-cart-drawer__count {
  background: var(--efg-saffron);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
}
.efg-cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--efg-ivory);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--efg-transition);
}
.efg-cart-drawer__close:hover { background: var(--efg-ivory-dark); }

.efg-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

/* Empty state */
.efg-cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.efg-cart-drawer__empty-icon { font-size: 3.5rem; }
.efg-cart-drawer__empty h4 {
  font-family: var(--efg-font-head);
  font-size: 1.3rem;
  color: var(--efg-brown-dark);
}
.efg-cart-drawer__empty p { font-size: 0.875rem; color: var(--efg-text-muted); }

/* Cart items */
.efg-cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--efg-border);
}
.efg-cart-item:last-child { border-bottom: none; }
.efg-cart-item__img {
  width: 76px; height: 76px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--efg-border);
  flex-shrink: 0;
}
.efg-cart-item__img-placeholder {
  width: 76px; height: 76px;
  border-radius: 10px;
  background: var(--efg-ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.efg-cart-item__info { flex: 1; min-width: 0; }
.efg-cart-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--efg-brown-dark);
  line-height: 1.3;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.efg-cart-item__variant {
  font-size: 0.75rem;
  color: var(--efg-text-muted);
  margin-bottom: 0.4rem;
}
.efg-cart-item__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--efg-saffron);
}
.efg-cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.efg-cart-item__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--efg-border);
  border-radius: 8px;
  overflow: hidden;
}
.efg-cart-item__qty-btn {
  width: 28px; height: 28px;
  border: none;
  background: var(--efg-ivory);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--efg-transition);
  flex-shrink: 0;
}
.efg-cart-item__qty-btn:hover { background: var(--efg-ivory-dark); }
.efg-cart-item__qty-num {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 1px solid var(--efg-border);
  border-right: 1px solid var(--efg-border);
  line-height: 28px;
}
.efg-cart-item__remove {
  font-size: 0.75rem;
  color: var(--efg-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  transition: color var(--efg-transition);
}
.efg-cart-item__remove:hover { color: #c0392b; }

/* Footer */
.efg-cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--efg-border);
  flex-shrink: 0;
  background: var(--efg-ivory);
}
.efg-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.efg-cart-drawer__subtotal span:first-child {
  font-size: 0.875rem;
  color: var(--efg-text-muted);
}
.efg-cart-drawer__subtotal span:last-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--efg-brown-dark);
}
.efg-cart-drawer__tax-note {
  font-size: 0.75rem;
  color: var(--efg-text-muted);
  margin-bottom: 1rem;
}
.efg-cart-drawer__footer .efg-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.efg-cart-drawer__footer .efg-btn:last-child { margin-bottom: 0; }

/* Loading spinner */
.efg-cart-drawer__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.efg-cart-spinner {
  width: 28px; height: 28px;
  border: 3px solid var(--efg-border);
  border-top-color: var(--efg-saffron);
  border-radius: 50%;
  animation: efg-spin 0.6s linear infinite;
}
@keyframes efg-spin { to { transform: rotate(360deg); } }

/* ============================================================
   MAP SECTION
   ============================================================ */
.efg-map-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 480px;
  overflow: hidden;
}

.efg-map-section__map {
  position: relative;
  min-height: 480px;
}

.efg-map-section__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.efg-map-section__card {
  background: var(--efg-white);
  display: flex;
  align-items: center;
  box-shadow: -4px 0 24px rgba(92,61,30,0.10);
  z-index: 1;
}

.efg-map-section__card-inner {
  padding: 2.5rem 2rem;
  width: 100%;
}

.efg-map-section__title {
  font-family: var(--efg-font-head);
  font-size: 1.9rem;
  color: var(--efg-brown-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.efg-map-detail {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.efg-map-detail__icon {
  width: 36px;
  height: 36px;
  background: var(--efg-ivory-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.efg-map-detail div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.efg-map-detail strong {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--efg-brown-dark);
}

.efg-map-detail span {
  font-size: 0.875rem;
  color: var(--efg-text-muted);
  line-height: 1.5;
}

.efg-map-detail a {
  color: var(--efg-saffron);
  transition: color var(--efg-transition);
}
.efg-map-detail a:hover { color: var(--efg-saffron-dark); }

.efg-map-section__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

@media(max-width: 900px) {
  .efg-map-section {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
  }
  .efg-map-section__map {
    min-height: 300px;
  }
  .efg-map-section__card {
    box-shadow: 0 -4px 24px rgba(92,61,30,0.08);
  }
  .efg-map-section__card-inner {
    padding: 2rem 1.25rem;
  }
  .efg-map-section__actions .efg-btn {
    flex: 1;
    justify-content: center;
  }
}

/* ── Orders temporarily disabled ── */
/* .efg-atc-row,
#efg-cart-trigger,
.efg-qty-wrap-main,
.efg-cart-drawer__footer { 
  display: none !important; 
} */

/* ============================================================
   SEARCH / CART PAGE
   ============================================================ */
.efg-qty-wrap { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--efg-border); border-radius: 10px; overflow: hidden; width: fit-content; margin-bottom: 1.5rem; }
.efg-qty-btn { width: 40px; height: 44px; border: none; background: var(--efg-ivory); font-size: 1.2rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.efg-qty-btn:hover { background: var(--efg-ivory-dark); }
.efg-qty-input { width: 52px; height: 44px; border: none; border-left: 1px solid var(--efg-border); border-right: 1px solid var(--efg-border); text-align: center; font-size: 1rem; font-family: var(--efg-font-body); font-weight: 600; background: var(--efg-white); }
.efg-qty-input:focus { outline: none; }

  .efg-product-info__badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
  .efg-product-info__badge { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 50px; }
  .efg-product-info__badge--eco { background: var(--efg-green-pale); color: var(--efg-green); border: 1px solid rgba(46,107,62,0.2); font-weight: 800;}
  .efg-product-info__badge--saffron { background: var(--efg-ivory-dark); color: var(--efg-saffron); border: 1px solid rgba(255, 125, 4, 0.2); font-weight: 800;}
  .efg-product-info__badge--hand { background: var(--efg-ivory-dark); color: var(--efg-brown); border: 1px solid var(--efg-border); }