/* ═══════════════════════════════════════════════════════════
   GUL & GIFT — BRAND CSS
   Forest & Rose palette · Apple-design-compliant animations
   Mobile-first · Elegant · Modern
   ═══════════════════════════════════════════════════════════ */

/* ─── NAVIGATION ─────────────────────────────────────────── */

/* Translucent sticky nav — Apple §12 */
#header,
.uncollapsed-menu-bar,
.menu-wrapper {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  background: rgba(6, 31, 24, 0.82) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(42, 107, 85, 0.25);
  transition: background var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease);
}

/* Nav scrolled — more opaque */
#header.scrolled,
.uncollapsed-menu-bar.scrolled {
  background: rgba(6, 31, 24, 0.96) !important;
}

/* Nav logo */
#logo img,
.custom-logo {
  max-height: 48px;
  width: auto;
}

/* Nav links */
#navigation ul li a,
.menu-item a {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mist) !important;
  transition: color var(--dur-fast) var(--ease);
}

#navigation ul li a:hover,
.menu-item a:hover {
  color: var(--white) !important;
}

/* Nav CTA */
.menu-item.nav-cta > a {
  background: var(--amber) !important;
  color: var(--forest) !important;
  padding: 8px 20px !important;
  border-radius: var(--r-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  transition: background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.menu-item.nav-cta > a:hover {
  background: var(--amber-d) !important;
  box-shadow: var(--sh-glow);
}

/* Mobile nav */
@media (max-width: 768px) {
  .mobile-menu {
    background: var(--forest-d);
    border-top: 1px solid var(--forest-l);
  }
}


/* ─── BUTTONS ────────────────────────────────────────────── */

/* Primary CTA — amber with forest text */
.gg-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-cart .wc-proceed-to-checkout a,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--amber);
  color: var(--forest) !important;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  /* Apple §1: respond on pointer-down */
  transition: background var(--dur-fast) var(--ease),
              transform 100ms ease-out,
              box-shadow var(--dur-fast) var(--ease);
}

.gg-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--amber-d);
  box-shadow: var(--sh-glow);
  transform: translateY(-1px);
}

/* Apple §1: instant pointer-down feedback */
.gg-btn:active,
.woocommerce a.button:active,
.woocommerce button.button:active {
  transform: scale(0.97) !important;
  transition-duration: 80ms;
}

/* Secondary button — ghost on dark */
.gg-btn--ghost {
  background: transparent;
  color: var(--white) !important;
  border: 1.5px solid var(--forest-l);
  box-shadow: none;
}

.gg-btn--ghost:hover {
  border-color: var(--mist);
  background: rgba(255,255,255,.06);
  box-shadow: none;
  transform: translateY(-1px);
}

/* WhatsApp button */
.gg-btn--wa {
  background: #25D366;
  color: #fff !important;
  border-radius: var(--r-sm);
}

.gg-btn--wa:hover { background: #1EBE57; }

/* ─── HERO SECTION ───────────────────────────────────────── */

.gg-hero {
  min-height: 100svh;
  background: var(--forest-d);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: var(--section-y) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.gg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(10,56,46,.8) 0%, var(--forest-d) 70%);
  pointer-events: none;
}

.gg-hero__content { position: relative; z-index: 1; }

.gg-hero__eyebrow {
  color: var(--pink);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.gg-hero__headline {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.gg-hero__headline em {
  font-style: italic;
  color: var(--amber);
}

.gg-hero__sub {
  font-size: var(--fs-lead);
  color: var(--mist);
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 40px;
}

.gg-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.gg-hero__proof { position: relative; z-index: 1; display: flex; justify-content: center; }

@media (max-width: 1024px) {
  .gg-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .gg-hero__proof { display: none; }
}


/* ─── PROOF CARD — The Signature Element ──────────────────── */

.gg-proof-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  transform: rotate(-3deg);
  max-width: 360px;
  position: relative;
}

.gg-proof-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.gg-proof-card__body {
  padding: 20px 24px 24px;
}

.gg-proof-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--stem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}

.gg-proof-card__status::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--stem);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.gg-proof-card__note {
  font-family: var(--font-ur);
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--forest);
  direction: rtl;
}

.gg-proof-card__gul {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  opacity: .6;
}

/* Hero proof section standalone */
.gg-proof-section {
  background: var(--forest-d);
  padding: var(--section-y) var(--gutter);
  text-align: center;
}

.gg-proof-section .gg-proof-card {
  margin: 48px auto 0;
  transform: rotate(-2deg);
  transition: transform var(--dur-slow) var(--ease);
}

.gg-proof-section .gg-proof-card:hover {
  transform: rotate(0deg) scale(1.02);
}


/* ─── SECTIONS — Dark / Light alternation ─────────────────── */

.gg-section {
  padding: var(--section-y) var(--gutter);
}

.gg-section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* Dark sections — forest ground */
.gg-section--dark {
  background: var(--forest);
}

.gg-section--darker {
  background: var(--forest-d);
}

/* Light sections — white/mint ground */
.gg-section--light {
  background: var(--white);
}

.gg-section--mint {
  background: var(--mint);
}

/* Section header */
.gg-section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.gg-section__eyebrow {
  display: block;
  margin-bottom: 12px;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gg-section--dark .gg-section__eyebrow { color: var(--pink); }
.gg-section--light .gg-section__eyebrow,
.gg-section--mint  .gg-section__eyebrow { color: var(--stem); }

.gg-section__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.gg-section--dark  .gg-section__title { color: var(--white); }
.gg-section--light .gg-section__title,
.gg-section--mint  .gg-section__title { color: var(--forest); }

.gg-section__sub {
  margin-top: 16px;
  font-size: var(--fs-lead);
  line-height: 1.6;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.gg-section--dark .gg-section__sub { color: var(--mist); }
.gg-section--light .gg-section__sub,
.gg-section--mint  .gg-section__sub { color: rgba(10,56,46,.65); }


/* ─── SERVICES GRID ──────────────────────────────────────── */

.gg-services,
.gg-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(42,107,85,.3);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.gg-service-card {
  background: var(--forest-s);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--dur-base) var(--ease);
  cursor: default;
}

.gg-service-card:hover {
  background: var(--forest-l);
}

.gg-service-card__icon {
  width: 48px; height: 48px;
  background: rgba(232,154,58,.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}

.gg-service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.gg-service-card__desc {
  font-size: var(--fs-sm);
  color: var(--mist);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .gg-services, .gg-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .gg-services, .gg-services__grid { grid-template-columns: 1fr; }
}


/* ─── PRODUCTS — WooCommerce overrides ───────────────────── */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

.woocommerce ul.products li.product {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.woocommerce ul.products li.product a img {
  border-radius: 0;
  transition: transform 600ms var(--ease);
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.04);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  padding: 16px 16px 4px;
}

.woocommerce ul.products li.product .price {
  color: var(--forest);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 0 16px;
}

.woocommerce ul.products li.product .price ins { text-decoration: none; }

.woocommerce ul.products li.product .button {
  margin: 12px 16px 16px;
  width: calc(100% - 32px);
  justify-content: center;
}

@media (max-width: 1024px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* Product badges */
.gg-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--petal);
  color: var(--forest);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-xs);
}

/* On-sale badge */
.woocommerce span.onsale {
  background: var(--amber) !important;
  color: var(--forest) !important;
  border-radius: var(--r-xs) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 4px 10px !important;
  line-height: 1.4 !important;
}


/* ─── HOW IT WORKS / STEPS ───────────────────────────────── */

.gg-steps,
.gg-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(42,107,85,.2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 56px;
}

.gg-step {
  background: var(--white);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 3.5vw, 40px);
  position: relative;
}

.gg-section--mint .gg-step { background: var(--mint); }

.gg-step__number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(10,56,46,.08);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.gg-step__icon {
  width: 52px; height: 52px;
  background: var(--mint);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 20px;
}

.gg-step__title {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.gg-step__desc {
  font-size: var(--fs-sm);
  color: rgba(10,56,46,.65);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .gg-steps, .gg-steps__grid { grid-template-columns: 1fr; }
}


/* ─── OCCASION CATEGORIES ────────────────────────────────── */

.gg-occasions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.gg-occasion-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid var(--forest-l);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--mist);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.gg-occasion-chip:hover {
  background: rgba(232,154,58,.12);
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.gg-occasion-chip:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}


/* ─── TWO-CITY SECTION ───────────────────────────────────── */

.gg-corridor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--forest-l);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}

.gg-city {
  background: var(--forest-s);
  padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 56px);
}

.gg-city__flag { font-size: 2.5rem; margin-bottom: 20px; display: block; }

.gg-city__name {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.gg-city__desc {
  font-size: var(--fs-sm);
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 24px;
}

.gg-city__currency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(232,154,58,.15);
  border: 1px solid rgba(232,154,58,.3);
  border-radius: var(--r-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--amber);
}

@media (max-width: 640px) {
  .gg-corridor { grid-template-columns: 1fr; }
}


/* ─── EVENTS GALLERY ─────────────────────────────────────── */

.gg-events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 4px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 48px;
}

.gg-events-grid__item {
  overflow: hidden;
  position: relative;
}

.gg-events-grid__item:first-child {
  grid-row: 1 / 3;
}

.gg-events-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gg-events-grid__item:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .gg-events-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gg-events-grid__item:first-child { grid-row: auto; }
  .gg-events-grid__item { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .gg-events-grid { grid-template-columns: 1fr; }
}


/* ─── TESTIMONIALS ───────────────────────────────────────── */

.gg-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.gg-testimonial {
  background: var(--forest-s);
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gg-testimonial__stars {
  color: var(--amber);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.gg-testimonial__quote {
  font-size: var(--fs-sm);
  color: var(--white);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.gg-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gg-testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--forest-l);
  overflow: hidden;
  flex-shrink: 0;
}

.gg-testimonial__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
}

.gg-testimonial__location {
  font-size: 0.75rem;
  color: var(--mist);
}

@media (max-width: 900px) {
  .gg-testimonials { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .gg-testimonials { grid-template-columns: 1fr; }
}


/* ─── COUNTRY SELECTOR POPUP ─────────────────────────────── */

.gg-region-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gg-region-popup__scrim {
  position: absolute;
  inset: 0;
  background: rgba(6,31,24,.85);
  backdrop-filter: blur(6px);
}

.gg-region-popup__card {
  position: relative;
  background: var(--forest-s);
  border-radius: var(--r-xl);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--sh-lg);
}

/* Ensure all text inside popup card is white regardless of class */
.gg-region-popup__card h2,
.gg-region-popup__card p,
.gg-region-popup__card .gg-eyebrow {
  color: var(--white) !important;
}

.gg-region-popup__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-align: center;
}

.gg-region-popup__sub {
  text-align: center;
  color: var(--mist);
  font-size: var(--fs-sm);
  margin-bottom: 36px;
}

.gg-region-popup__choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gg-region-choice {
  background: var(--forest);
  border: 2px solid var(--forest-l);
  border-radius: var(--r-md);
  padding: 24px 20px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.gg-region-choice:hover {
  border-color: var(--amber);
  background: var(--forest-s);
  transform: translateY(-3px);
}

.gg-region-choice:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

.gg-region-choice__flag { font-size: 2rem; }
.gg-region-choice__city { color: var(--white); font-weight: 600; font-size: 1rem; }
.gg-region-choice__note { color: var(--mist); font-size: var(--fs-sm); }

@media (max-width: 420px) {
  .gg-region-popup__card { padding: 32px 24px; }
  .gg-region-popup__choices { grid-template-columns: 1fr; }
}


/* ─── CHECKOUT — SAR Toggle ──────────────────────────────── */

.gg-sar-toggle {
  background: var(--mint);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.gg-sar-toggle__label {
  font-weight: 600;
  color: var(--forest);
  flex: 1;
}

.gg-sar-toggle__switch {
  position: relative;
  width: 48px; height: 28px;
  cursor: pointer;
}

.gg-sar-toggle__input {
  opacity: 0; width: 0; height: 0;
}

.gg-sar-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--mist);
  border-radius: var(--r-full);
  transition: background var(--dur-base) var(--ease);
}

.gg-sar-toggle__input:checked + .gg-sar-toggle__track {
  background: var(--amber);
}

.gg-sar-toggle__thumb {
  position: absolute;
  top: 4px; left: 4px;
  width: 20px; height: 20px;
  background: var(--white);
  border-radius: var(--r-full);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: left var(--dur-base) var(--ease);
}

.gg-sar-toggle__input:checked ~ .gg-sar-toggle__thumb { left: 24px; }


/* ─── WHATSAPP PROMPT (Order confirmation) ───────────────── */

.gg-whatsapp-prompt {
  background: var(--mint);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
}

.gg-whatsapp-prompt p { max-width: 40ch; margin: 8px auto 20px; }


/* ─── FOOTER ─────────────────────────────────────────────── */

#footer,
.footer-container,
footer {
  background: var(--forest-d) !important;
  color: var(--mist);
}

footer a { color: var(--mist); transition: color var(--dur-fast) var(--ease); }
footer a:hover { color: var(--white); }

.gg-footer__logo { margin-bottom: 20px; }

.gg-footer__tagline {
  font-size: var(--fs-sm);
  color: var(--mist);
  max-width: 34ch;
  line-height: 1.65;
  margin-bottom: 24px;
}

.gg-footer__regions {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--mist);
}

.gg-footer__divider {
  color: var(--forest-l);
  padding-top: clamp(16px, 3vw, 32px);
  margin-top: clamp(16px, 3vw, 32px);
  border-top: 1px solid var(--forest-l);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--fs-sm);
}


/* ─── WOOCOMMERCE — Single product ──────────────────────── */

.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--r-md);
  overflow: hidden;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--forest);
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.woocommerce div.product div.summary .cart .button {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
}

/* Sticky add to cart on mobile */
@media (max-width: 768px) {
  .woocommerce div.product .cart {
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding: 16px;
    border-top: 1px solid var(--border-light);
    margin: 0 -16px;
    z-index: 100;
  }
}

/* ─── FORMS ──────────────────────────────────────────────── */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select,
.woocommerce-input-wrapper input {
  font-family: var(--font-body);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: var(--fs-body);
  color: var(--forest);
  background: var(--white);
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,154,58,.18);
}

label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--forest);
  display: block;
  margin-bottom: 6px;
}


/* ─── SCROLL REVEAL ANIMATION STATES ─────────────────────── */

.gg-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.gg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.gg-reveal-group > * { opacity: 0; transform: translateY(16px); }
.gg-reveal-group.is-visible > *:nth-child(1) { animation: gg-fade-up 500ms 0ms   var(--ease) forwards; }
.gg-reveal-group.is-visible > *:nth-child(2) { animation: gg-fade-up 500ms 80ms  var(--ease) forwards; }
.gg-reveal-group.is-visible > *:nth-child(3) { animation: gg-fade-up 500ms 160ms var(--ease) forwards; }
.gg-reveal-group.is-visible > *:nth-child(4) { animation: gg-fade-up 500ms 240ms var(--ease) forwards; }
.gg-reveal-group.is-visible > *:nth-child(5) { animation: gg-fade-up 500ms 320ms var(--ease) forwards; }
.gg-reveal-group.is-visible > *:nth-child(6) { animation: gg-fade-up 500ms 400ms var(--ease) forwards; }

@keyframes gg-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Proof card settle animation */
@keyframes gg-proof-settle {
  from { transform: rotate(-6deg) scale(.96); opacity: 0; }
  to   { transform: rotate(-3deg) scale(1);  opacity: 1; }
}

.gg-proof-card.is-visible {
  animation: gg-proof-settle 900ms var(--ease) both;
}


/* ─── REDUCED MOTION — Apple §14 ─────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gg-reveal,
  .gg-reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .gg-proof-card { transform: rotate(-3deg) !important; }
}

@media (prefers-reduced-transparency: reduce) {
  #header, .uncollapsed-menu-bar, .menu-wrapper {
    background: var(--forest-d) !important;
    backdrop-filter: none !important;
  }
}

@media (prefers-contrast: more) {
  :root { --border-light: #4A7C59; --border-dark: #fff; }
  input, textarea, select { border-width: 2px; }
}


/* ─── UTILITY CLASSES ────────────────────────────────────── */

.gg-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.gg-text-center { text-align: center; }
.gg-text-balance { text-wrap: balance; }
.gg-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* RTL support for Urdu/Arabic */
[lang="ur"], [lang="ar"] {
  font-family: var(--font-ur), var(--font-ar);
  direction: rtl;
}


/* ─── PRINT ──────────────────────────────────────────────── */

@media print {
  #header, footer, .gg-btn, .gg-whatsapp-prompt { display: none !important; }
  body { background: #fff; color: #000; }
}
