/* Clinton Garden Group — Premium, depth-rich design system */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary: vibrant indigo with depth */
  --cgg-primary: #6366f1;
  --cgg-primary-dark: #4f46e5;
  --cgg-primary-light: #818cf8;
  --cgg-primary-glow: rgba(99, 102, 241, 0.35);
  /* Surfaces with subtle warmth */
  --cgg-bg: #f5f3ff;
  --cgg-bg-mesh: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent),
                 radial-gradient(ellipse 60% 40% at 100% 50%, rgba(139, 92, 246, 0.08), transparent),
                 linear-gradient(180deg, #fafaff 0%, #f5f3ff 50%, #ede9fe 100%);
  --cgg-surface: #ffffff;
  --cgg-surface-alt: #f5f3ff;
  --cgg-surface-elevated: #ffffff;
  /* Text */
  --cgg-text: #1e1b4b;
  --cgg-text-muted: #5b5569;
  --cgg-text-light: #78716c;
  /* Status */
  --cgg-success: #16a34a;
  --cgg-success-bg: #dcfce7;
  --cgg-pending: #d97706;
  --cgg-pending-bg: #fef3c7;
  --cgg-alert: #dc2626;
  --cgg-alert-bg: #fee2e2;
  --cgg-info: #2563eb;
  /* UI: deeper shadows and radius */
  --cgg-radius: 16px;
  --cgg-radius-sm: 10px;
  --cgg-radius-lg: 20px;
  --cgg-shadow: 0 1px 2px rgba(30, 27, 75, 0.04), 0 4px 12px rgba(30, 27, 75, 0.06);
  --cgg-shadow-md: 0 4px 6px -1px rgba(30, 27, 75, 0.06), 0 10px 24px -4px rgba(30, 27, 75, 0.1);
  --cgg-shadow-lg: 0 20px 40px -12px rgba(30, 27, 75, 0.15), 0 8px 16px -8px rgba(99, 102, 241, 0.2);
  --cgg-shadow-glow: 0 0 0 1px rgba(99, 102, 241, 0.08), 0 8px 24px -4px rgba(99, 102, 241, 0.2);
  /* Tap targets */
  --cgg-tap-min: 44px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Parallax hero: richer gradient and depth */
.parallax-hero { position: relative; }
.parallax-hero-bg {
  /* Photo (bottom) + soft washes (top) — keeps existing indigo/pink blob aesthetic */
  background-color: #eef2ff;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.55) 38%, rgba(238, 242, 255, 0.45) 72%, rgba(255, 255, 255, 0.82) 100%),
    linear-gradient(125deg, rgba(99, 102, 241, 0.12) 0%, rgba(255, 255, 255, 0.15) 45%, rgba(167, 139, 250, 0.1) 100%),
    url('../assets/hero-wholesale-market.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 1023px) {
  .parallax-hero-bg {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .parallax-hero-bg {
    background-attachment: scroll;
  }
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--cgg-bg);
  background-image: var(--cgg-bg-mesh);
  color: var(--cgg-text);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-bottom: calc(var(--cgg-tap-min) + 1rem);
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}
@media (max-width: 1023px) {
  body { padding-bottom: 5rem; }
}

/* Site header: soft elevation */
.cgg-site-header {
  box-shadow: 0 1px 0 rgba(30, 27, 75, 0.06), 0 8px 24px -8px rgba(30, 27, 75, 0.08);
}

/* ----- Header (mobile-first) ----- */
.app-header {
  background: var(--cgg-surface);
  box-shadow: var(--cgg-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.app-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.app-header .logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.app-header .search-wrap {
  flex: 1;
  min-width: 0;
}
.app-header .search-wrap .form-control {
  border-radius: var(--cgg-radius-sm);
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
}
.app-header .search-wrap .form-control:focus {
  border-color: var(--cgg-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.app-header .cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--cgg-tap-min);
  height: var(--cgg-tap-min);
  border-radius: var(--cgg-radius-sm);
  background: var(--cgg-surface-alt);
  color: var(--cgg-text);
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.app-header .cart-btn:hover { background: #e2e8f0; color: var(--cgg-text); }
.app-header .cart-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.app-header .desktop-nav { display: none; }
@media (min-width: 768px) {
  .app-header .header-inner { padding: 1rem 1.5rem; }
  .app-header .logo { height: 40px; }
  .app-header .search-wrap { max-width: 280px; }
  .app-header .desktop-nav { display: flex; align-items: center; gap: 0.5rem; }
  .app-header .desktop-nav .nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: var(--cgg-radius-sm);
    color: var(--cgg-text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  .app-header .desktop-nav .nav-link:hover,
  .app-header .desktop-nav .nav-link.active { color: var(--cgg-primary); background: var(--cgg-surface-alt); }
}

/* ----- Bottom navigation (mobile) ----- */
.app-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--cgg-tap-min);
  background: var(--cgg-surface);
  box-shadow: 0 -2px 10px rgba(0,0,0,.06);
  z-index: 99;
  padding: 0 0.5rem;
}
.app-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.5rem;
  min-width: 56px;
  min-height: var(--cgg-tap-min);
  color: var(--cgg-text-muted);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 500;
  border-radius: var(--cgg-radius-sm);
  transition: color .15s, background .15s;
}
.app-bottom-nav a:hover { color: var(--cgg-primary); background: var(--cgg-surface-alt); }
.app-bottom-nav a.active { color: var(--cgg-primary); }
.app-bottom-nav a .bi { font-size: 1.25rem; }
@media (min-width: 768px) {
  .app-bottom-nav { display: none; }
}

/* ----- Main content ----- */
.app-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
@media (min-width: 768px) {
  .app-main { padding: 1.5rem 2rem; }
}

/* ----- Page title ----- */
.page-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--cgg-text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .page-title { font-size: 1.875rem; margin-bottom: 1.25rem; }
}

/* ----- Cards: elevated with depth ----- */
.cgg-card {
  background: var(--cgg-surface);
  border-radius: var(--cgg-radius);
  box-shadow: var(--cgg-shadow);
  border: 1px solid rgba(30, 27, 75, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
}
.cgg-card:hover {
  box-shadow: var(--cgg-shadow-md);
  border-color: rgba(99, 102, 241, 0.12);
}
.cgg-card .card-body { padding: 1rem; }
@media (min-width: 768px) {
  .cgg-card .card-body { padding: 1.25rem 1.5rem; }
}

/* ----- Banner card ----- */
.banner-hero {
  background: linear-gradient(135deg, var(--cgg-primary) 0%, #7c3aed 50%, #6d28d9 100%);
  color: #fff;
  border-radius: var(--cgg-radius);
  padding: 1.5rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  box-shadow: var(--cgg-shadow-glow);
}
.banner-hero h1 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.02em;
}
.banner-hero p {
  font-size: 0.9375rem;
  opacity: .95;
  margin: 0;
}
@media (min-width: 768px) {
  .banner-hero { padding: 2rem; margin-bottom: 2rem; }
  .banner-hero h1 { font-size: 1.5rem; }
  .banner-hero p { font-size: 1rem; }
}

/* ----- Product grid (2 cols mobile) ----- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .product-grid { gap: 1rem; }
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (min-width: 992px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Home page product grid: elevated cards with hover lift */
#products article {
  border-radius: var(--cgg-radius);
  box-shadow: var(--cgg-shadow);
  border: 1px solid rgba(30, 27, 75, 0.06);
  transition: box-shadow 0.3s ease, transform 0.25s ease, border-color 0.2s ease;
}
#products article:hover {
  box-shadow: var(--cgg-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.15);
}
#products article .aspect-square {
  border-radius: var(--cgg-radius-sm);
  overflow: hidden;
  background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
}
#products article .aspect-square img {
  transition: transform 0.4s ease;
}
#products article:hover .aspect-square img {
  transform: scale(1.06);
}
#products article .btn-add,
#products article a[href*="product.php"]:last-of-type {
  border-radius: var(--cgg-radius-sm);
  font-weight: 600;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
#products article .btn-add:hover,
#products article a[href*="product.php"]:last-of-type:hover {
  box-shadow: 0 4px 14px var(--cgg-primary-glow);
  transform: translateY(-1px);
}

.product-card {
  background: var(--cgg-surface);
  border-radius: var(--cgg-radius);
  box-shadow: var(--cgg-shadow);
  border: 1px solid rgba(30, 27, 75, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.product-card:hover {
  box-shadow: var(--cgg-shadow-lg);
  transform: translateY(-4px);
}
.product-card .product-img-wrap {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--cgg-surface-alt) 0%, #ede9fe 100%);
  overflow: hidden;
}
.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-card .product-img-wrap .no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cgg-text-light);
  font-size: 0.875rem;
}
.product-card .product-info {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .product-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cgg-text);
  margin: 0 0 0.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.product-card .product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cgg-success);
  margin: 0 0 0.5rem 0;
}
.product-card .btn-add {
  margin-top: auto;
  min-height: 40px;
  border-radius: var(--cgg-radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.product-card .btn-add:hover {
  box-shadow: 0 4px 14px var(--cgg-primary-glow);
  transform: translateY(-1px);
}

/* ----- Product page: hide site bottom nav on mobile (product.css handles layout) ----- */
@media (max-width: 767px) {
  body.product-detail-page nav[aria-label="Main"] {
    display: none;
  }
}

/* ----- Buttons ----- */
.btn-primary {
  background: linear-gradient(180deg, var(--cgg-primary-light) 0%, var(--cgg-primary) 50%, var(--cgg-primary-dark) 100%);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--cgg-radius-sm);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  min-height: var(--cgg-tap-min);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: box-shadow 0.2s ease, transform 0.15s ease, filter 0.2s ease;
}
.btn-primary:hover {
  box-shadow: 0 6px 20px var(--cgg-primary-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-outline-primary {
  border-radius: var(--cgg-radius-sm);
  font-weight: 600;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-outline-primary:hover {
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
  transform: translateY(-1px);
}
.btn-lg {
  border-radius: var(--cgg-radius-sm);
  min-height: 48px;
  font-weight: 600;
}

/* ----- Form controls ----- */
.form-control, .form-select {
  border-radius: var(--cgg-radius-sm);
  border: 1px solid rgba(30, 27, 75, 0.15);
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  min-height: var(--cgg-tap-min);
  background: var(--cgg-surface);
  box-shadow: 0 1px 2px rgba(30, 27, 75, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--cgg-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2), 0 1px 2px rgba(30, 27, 75, 0.04);
  outline: none;
}
.form-label {
  font-weight: 600;
  color: var(--cgg-text);
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

/* ----- Status badges ----- */
.badge-status {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(30, 27, 75, 0.06);
  border: 1px solid rgba(30, 27, 75, 0.06);
}
.badge-status.pending { background: var(--cgg-pending-bg); color: #b45309; }
.badge-status.received,
.badge-status.delivered,
.badge-status.success { background: var(--cgg-success-bg); color: #15803d; }
.badge-status.processing,
.badge-status.confirmed,
.badge-status.on_transit { background: #dbeafe; color: var(--cgg-info); }
.badge-status.rejected,
.badge-status.alert { background: var(--cgg-alert-bg); color: #b91c1c; }

/* ----- Order summary / summary card ----- */
.summary-card {
  background: linear-gradient(145deg, var(--cgg-surface-alt) 0%, #ede9fe 100%);
  border-radius: var(--cgg-radius);
  padding: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: var(--cgg-shadow);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
}
.summary-row.total {
  font-weight: 700;
  font-size: 1.125rem;
  border-top: 1px solid rgba(30, 27, 75, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

/* ----- Bank transfer instructions ----- */
.bank-instructions {
  background: linear-gradient(145deg, var(--cgg-surface-alt) 0%, #f5f3ff 100%);
  border-radius: var(--cgg-radius);
  padding: 1.25rem;
  margin: 1rem 0;
  font-size: 0.9375rem;
  border: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow: 0 1px 3px rgba(30, 27, 75, 0.05);
}
.bank-instructions h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--cgg-text);
}

/* ----- Empty state ----- */
.empty-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--cgg-text-muted);
  background: linear-gradient(145deg, var(--cgg-surface) 0%, var(--cgg-surface-alt) 100%);
  border-radius: var(--cgg-radius);
  border: 1px solid rgba(30, 27, 75, 0.06);
  box-shadow: var(--cgg-shadow);
}
.empty-state .btn { margin-top: 1rem; }

/* ----- Footer (desktop) ----- */
.app-footer {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--cgg-text-muted);
  border-top: 1px solid #e2e8f0;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .app-footer { padding: 2rem; }
}

/* ----- Success / confirmation ----- */
.confirmation-card {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: var(--cgg-shadow-md);
  border: 1px solid rgba(30, 27, 75, 0.06);
}
.confirmation-card .icon-success {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cgg-success-bg) 0%, #bbf7d0 100%);
  color: var(--cgg-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
  border: 2px solid rgba(22, 163, 74, 0.2);
}

/* ----- Loading spinner (utility) ----- */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ----- Hero blobs and hero UI ----- */
.parallax-hero .hero-blob {
  opacity: 0.45;
  filter: blur(64px);
}
.parallax-hero .transform-gpu {
  will-change: transform;
}
.parallax-hero h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 2px 24px rgba(255, 255, 255, 0.65);
}
.parallax-hero form .shadow-lg {
  box-shadow: var(--cgg-shadow-md), 0 0 0 1px rgba(30, 27, 75, 0.06);
}
.parallax-hero form button[type="submit"] {
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.parallax-hero form button[type="submit"]:hover {
  box-shadow: 0 6px 20px var(--cgg-primary-glow);
  transform: translateY(-1px);
}
.parallax-hero a.rounded-md.bg-indigo-600 {
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}
.parallax-hero a.rounded-md.bg-indigo-600:hover {
  box-shadow: 0 6px 20px var(--cgg-primary-glow);
  transform: translateY(-1px);
}

/* ----- Footer: CTA banner + purple gradient + scroll-to-top ----- */
.cgg-footer-cta {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 40%, #15803d 100%);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  margin: 0 1rem -2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.15), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
  z-index: 2;
}
.cgg-footer-cta-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.cgg-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.cgg-footer-cta-btn:hover { background: #333; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.cgg-footer-wrap {
  background: linear-gradient(180deg, #5b21b6 0%, #4c1d95 50%, #3b0764 100%);
  width: 100%;
  padding: 3rem 1rem 2rem;
  margin-top: 0;
  color: rgba(255,255,255,.9);
}
@media (max-width: 1023px) {
  .cgg-footer-wrap {
    padding-bottom: 8rem;
  }
}
.cgg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cgg-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cgg-footer-main { grid-template-columns: 1fr auto; gap: 3rem; }
  .cgg-footer-cta { margin: 0 auto -2rem; max-width: 1200px; padding: 1.75rem 2rem; }
}
.cgg-footer-logo-box {
  display: inline-block;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.cgg-footer-logo {
  display: block;
  width: 100px;
  height: auto;
  object-fit: contain;
}
.cgg-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 1.5rem;
  font-size: 0.9375rem;
}
.cgg-footer-cols a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .15s;
}
.cgg-footer-cols a:hover { color: #fff; }
.cgg-footer-right .cgg-footer-tag { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: .05em; opacity: .9; margin-bottom: 0.25rem; }
.cgg-footer-right .cgg-footer-headline { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
@media (min-width: 480px) {
  .cgg-footer-right .cgg-footer-headline { font-size: 3rem; }
}
@media (min-width: 768px) {
  .cgg-footer-right .cgg-footer-headline { font-size: 3.5rem; }
}
.cgg-footer-divider {
  border: none;
  border-top: 2px dotted rgba(255,255,255,.35);
  margin: 1rem 0 1.25rem;
}
.cgg-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}
.cgg-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.cgg-footer-legal a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
}
.cgg-footer-legal a:hover { color: #fff; }
.cgg-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .cgg-footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .cgg-footer-social {
    justify-content: flex-end;
    margin-left: 0;
  }
}
.cgg-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background .2s, color .2s;
}
.cgg-footer-social a:hover { background: rgba(255,255,255,.3); color: #fff; }

/* Scroll-to-top + mobile social: one fixed container so they can join at bottom */
.cgg-fixed-bottom-actions {
  position: fixed;
  left: 1rem;
  bottom: 5.5rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}
.cgg-fixed-bottom-actions > * { pointer-events: auto; }

.cgg-scroll-top {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(91, 33, 182, .95);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: transform .2s, background .2s, opacity .25s;
  opacity: 0;
  pointer-events: none;
}
.cgg-scroll-top.visible { opacity: 1; pointer-events: auto; }
.cgg-scroll-top:hover { background: #6d28d9; transform: scale(1.05); }

/* Mobile: social icons fixed on the right; when at bottom they join the arrow (left) via JS body.cgg-at-bottom */
.cgg-fixed-social-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .cgg-fixed-bottom-actions {
    right: 1rem;
    left: auto;
    justify-content: flex-end;
    transition: left .3s ease, right .3s ease, justify-content .3s ease;
  }
  .cgg-fixed-bottom-actions .cgg-scroll-top {
    order: 2;
  }
  .cgg-fixed-social-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 1;
  }
  .cgg-fixed-social-mobile a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(91, 33, 182, .95);
    color: #fff;
    border: 2px solid rgba(255,255,255,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: background .2s, transform .15s;
  }
  .cgg-fixed-social-mobile a:hover {
    background: #6d28d9;
    color: #fff;
    transform: scale(1.08);
  }
  /* When scrolled to bottom: arrow joins social on the left as one group */
  body.cgg-at-bottom .cgg-fixed-bottom-actions {
    left: 1rem;
    right: auto;
    justify-content: flex-start;
  }
  body.cgg-at-bottom .cgg-fixed-bottom-actions .cgg-scroll-top {
    order: 1;
  }
  body.cgg-at-bottom .cgg-fixed-bottom-actions .cgg-fixed-social-mobile {
    order: 2;
  }
  .cgg-footer-bottom .cgg-footer-social {
    display: none;
  }
  .cgg-footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .cgg-fixed-bottom-actions {
    left: 1rem;
    right: auto;
    bottom: 1.5rem;
    justify-content: flex-start;
  }
  .cgg-fixed-social-mobile { display: none; }
}

/* Bottom nav (mobile): soft elevation */
.cgg-bottom-nav {
  box-shadow: 0 -4px 20px rgba(30, 27, 75, 0.08), 0 -1px 0 rgba(30, 27, 75, 0.05);
}

/* ===== 2026 Hybrid Neumorphic Minimal Theme Overrides ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --cgg-primary: #1b1f5b;
  --cgg-primary-dark: #151846;
  --cgg-primary-light: #2b317d;
  --cgg-primary-glow: rgba(27, 31, 91, 0.24);
  --cgg-bg: #eef0f6;
  --cgg-bg-mesh: linear-gradient(135deg, #e6e7ef 0%, #f4f5fa 100%);
  --cgg-surface: #f3f4f9;
  --cgg-surface-alt: #eceef5;
  --cgg-surface-elevated: #f8f9fd;
  --cgg-text: #1b1f5b;
  --cgg-text-muted: #5f678f;
  --cgg-text-light: #7b82a6;
  --cgg-radius: 18px;
  --cgg-radius-sm: 999px;
  --cgg-radius-lg: 24px;
  --cgg-shadow: 8px 8px 18px rgba(165, 173, 201, 0.34), -8px -8px 18px rgba(255,255,255,0.85);
  --cgg-shadow-md: 10px 10px 22px rgba(160, 168, 195, 0.35), -10px -10px 22px rgba(255,255,255,0.88);
  --cgg-shadow-lg: 16px 16px 30px rgba(154, 163, 190, 0.32), -14px -14px 28px rgba(255,255,255,0.9);
}

body{
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  letter-spacing: 0.01em;
  background: var(--cgg-bg-mesh);
  color: var(--cgg-text);
}
h1, h2, h3, h4, h5, h6{ font-weight: 600; letter-spacing: 0.01em; }

.cgg-card{
  background: linear-gradient(145deg, #f7f8fc 0%, #eceef5 100%);
  border: 0;
  border-radius: var(--cgg-radius);
  box-shadow: var(--cgg-shadow);
}
.cgg-card:hover{
  box-shadow: var(--cgg-shadow-md);
  transform: translateY(-1px);
}

.btn{
  border-radius: var(--cgg-radius-sm);
  min-height: 44px;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:active{ transform: scale(.97); }

.btn-primary{
  background: var(--cgg-primary) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 4px 12px rgba(27,31,91,.18);
}
.btn-primary:hover{
  background: var(--cgg-primary-light) !important;
  box-shadow: 0 7px 16px rgba(27,31,91,.24);
}

.btn-outline-primary,
.btn-outline-secondary{
  background: rgba(255,255,255,.45);
  color: var(--cgg-primary) !important;
  border: 2px solid var(--cgg-primary) !important;
  box-shadow: 0 2px 8px rgba(27,31,91,.08);
}
.btn-outline-primary:hover,
.btn-outline-secondary:hover{
  background: rgba(27,31,91,.08);
}

.rounded-pill,
.category-chip{
  border-radius: 999px !important;
}

/* Circular icon button utility */
.cgg-icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cgg-primary);
  color: #fff;
  border: 0;
  box-shadow: 0 6px 16px rgba(27,31,91,.2);
}

/* Segmented controls / option groups */
.cgg-segment{
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  background: #e8ebf3;
  border-radius: 999px;
  box-shadow: inset 3px 3px 8px rgba(167,176,203,.28), inset -3px -3px 8px rgba(255,255,255,.85);
}
.cgg-segment .active{
  background: var(--cgg-primary);
  color: #fff;
  border-radius: 999px;
}

.form-control, .form-select{
  border: 1px solid rgba(27,31,91,.16);
  background: #f7f8fc;
  border-radius: 14px;
  color: var(--cgg-text);
  box-shadow: inset 2px 2px 8px rgba(199,206,228,.25), inset -2px -2px 8px rgba(255,255,255,.8);
}
.form-control:focus, .form-select:focus{
  border-color: var(--cgg-primary);
  box-shadow: 0 0 0 3px rgba(27,31,91,.14);
}

/* Media/content card variants */
.cgg-card-dark{
  background: var(--cgg-primary);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(27,31,91,.24);
}
.cgg-card-dark .text-muted{ color: rgba(255,255,255,.7) !important; }

/* Payment QR modal — appended to body; z-index above header/nav; no hover-transform parent */
.payment-qr-modal.modal {
  z-index: 10050 !important;
}
/* Match backdrop to this modal only (Bootstrap pairs backdrop z-index with modal) */
body.modal-open:has(#paymentQrModal.show) .modal-backdrop.show {
  z-index: 10040 !important;
}
.payment-qr-modal .payment-qr-modal__dialog {
  max-width: min(96vw, 420px);
  margin: 1rem auto;
  max-height: min(92vh, 900px);
  /* Avoid scrollable + centered flex fighting (desktop jitter) */
}
@media (max-width: 576px) {
  .payment-qr-modal .payment-qr-modal__dialog {
    margin: 0.5rem auto;
    max-height: min(88dvh, 900px);
  }
}
.payment-qr-modal .modal-content {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  border-radius: var(--cgg-radius-sm, 12px);
  overflow: hidden;
}
.payment-qr-modal .modal-header .btn-close {
  padding: 0.65rem;
  margin: -0.35rem -0.35rem -0.35rem auto;
  z-index: 2;
  position: relative;
}
.payment-qr-modal__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 45vh, 280px);
}
.payment-qr-modal__spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem !important;
  height: 2.5rem !important;
}
.payment-qr-modal__img {
  max-width: min(88vw, 320px);
  max-height: min(58dvh, 360px);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ----- Ad landing page (/landing.php) — forest hero, lime CTAs (conversion layout) ----- */
body.landing-page {
  --landing-forest: #0a2920;
  --landing-forest-mid: #0f3d2e;
  --landing-lime: #28e070;
  --landing-lime-hover: #22c965;
  background: #e8ecf1;
  background-image: none;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 1024px) {
  body.landing-page {
    padding-bottom: 2rem;
  }
}
.landing-page-shell {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.landing-hero-wrap {
  margin-bottom: 0.5rem;
}
.landing-page-wrap {
  padding-top: 0.5rem;
}
.landing-hero {
  margin: 0;
  padding: 0;
}
.landing-hero-squircle {
  position: relative;
  overflow: hidden;
  border-radius: clamp(22px, 5vw, 36px);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: linear-gradient(165deg, var(--landing-forest-mid) 0%, var(--landing-forest) 48%, #0d4a32 100%);
  box-shadow:
    0 24px 56px rgba(10, 41, 32, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.landing-hero-wave {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(78%, 440px);
  height: min(42%, 200px);
  pointer-events: none;
  opacity: 0.95;
}
.landing-hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}
.landing-hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 992px) {
  .landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 38%);
    gap: 1.5rem 2rem;
    align-items: end;
  }
}
@media (max-width: 991.98px) {
  .landing-hero-visual {
    order: -1;
  }
}
.landing-hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}
.landing-text-accent {
  color: var(--landing-lime);
  text-shadow: 0 0 48px rgba(40, 224, 112, 0.35);
}
.landing-hero-lead {
  margin: 0 0 1.15rem;
  max-width: 38rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.landing-hero-form-panel {
  border-radius: 22px;
  padding: 1.15rem 1rem 1.25rem;
  background: #fff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.landing-hero-form .landing-field--compact {
  margin-bottom: 0.75rem;
}
.landing-label--dark {
  color: #0f172a;
}
.landing-input--light.form-control {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  min-height: 48px;
}
.landing-input--light.form-control:focus {
  border-color: var(--landing-forest-mid);
  box-shadow: 0 0 0 3px rgba(40, 224, 112, 0.2);
}
.landing-hero-cta-row {
  margin-top: 0.35rem;
}
.landing-btn-primary-pill {
  min-height: 50px;
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 999px;
  background: var(--landing-lime);
  color: #052e1f !important;
  box-shadow: 0 6px 22px rgba(40, 224, 112, 0.42);
  transition: background 0.15s ease, transform 0.12s ease;
}
.landing-btn-primary-pill:hover {
  background: var(--landing-lime-hover);
  color: #052e1f !important;
}
.landing-btn-primary-pill:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.landing-btn-secondary-pill {
  min-height: 50px;
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid var(--landing-forest-mid);
  background: #fff;
  color: var(--landing-forest-mid) !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.landing-btn-secondary-pill:hover {
  background: #f0fdf4;
  color: var(--landing-forest) !important;
  border-color: var(--landing-forest);
}
.landing-hero-categories {
  margin-top: 1.2rem;
}
.landing-hero-cat-label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.landing-hero-cat-track {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 0 0.35rem;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
.landing-hero-cat-track::-webkit-scrollbar {
  height: 5px;
}
.landing-hero-cat-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
.landing-hero-mini {
  flex: 0 0 auto;
  width: 106px;
  min-height: 116px;
  padding: 0.65rem 0.45rem 0.75rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  text-decoration: none !important;
  scroll-snap-align: start;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.landing-hero-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}
.landing-hero-mini--mint {
  background: linear-gradient(180deg, #ecfdf5 0%, #a7f3d0 100%);
}
.landing-hero-mini--coral {
  background: linear-gradient(180deg, #fff1f2 0%, #fecdd3 100%);
}
.landing-hero-mini--sun {
  background: linear-gradient(180deg, #fffbeb 0%, #fde68a 100%);
}
.landing-hero-mini--sky {
  background: linear-gradient(180deg, #eff6ff 0%, #bfdbfe 100%);
}
.landing-hero-mini-icon {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
  color: var(--landing-forest-mid);
  line-height: 1;
}
.landing-hero-mini-label {
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  word-break: break-word;
}
.landing-hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.landing-hero-visual-img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(48vh, 400px);
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.35));
}
@media (max-width: 991.98px) {
  .landing-hero-visual-img {
    max-height: min(36vh, 280px);
  }
}
.landing-inner {
  width: 100%;
}
.landing-card {
  background: var(--cgg-surface-elevated);
  border-radius: var(--cgg-radius-lg);
  box-shadow: var(--cgg-shadow-md);
  border: 1px solid rgba(30, 27, 75, 0.08);
  padding: 1.25rem 1rem 1.5rem;
}
@media (min-width: 480px) {
  .landing-card {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}
.landing-card--compact {
  padding-top: 1.125rem;
}
.landing-final-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 61, 46, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.landing-shop--below-hero .landing-section-title {
  color: #0f172a;
}
.landing-field {
  margin-bottom: 1rem;
}
.landing-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cgg-text);
  margin-bottom: 0.35rem;
}
.landing-input.form-control {
  min-height: var(--cgg-tap-min);
  font-size: 1rem;
  border-radius: var(--cgg-radius-sm);
  border: 1px solid #e2e8f0;
}
.landing-input.form-control:focus {
  border-color: var(--cgg-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.landing-hint {
  font-size: 0.8125rem;
  color: var(--cgg-text-light);
  margin: 0.35rem 0 0;
}
.landing-field-error {
  font-size: 0.8125rem;
  color: var(--cgg-alert);
  margin: 0.35rem 0 0;
}
.landing-section {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(30, 27, 75, 0.08);
}
.landing-section-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--cgg-text);
  margin: 0 0 1rem;
}
.landing-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.landing-quote {
  margin: 0;
  padding: 1rem 1rem 1rem 1.125rem;
  border-left: 4px solid var(--cgg-primary);
  background: var(--cgg-surface-alt);
  border-radius: 0 var(--cgg-radius-sm) var(--cgg-radius-sm) 0;
  font-size: 0.9375rem;
  color: var(--cgg-text-muted);
}
.landing-quote footer {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--cgg-text-light);
}
.landing-trust-benefits-wrap .landing-quote {
  background: #f8fafc;
  border-left-color: #22c55e;
}
.landing-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.landing-benefit {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.landing-benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--cgg-radius-sm);
  background: rgba(99, 102, 241, 0.12);
  color: var(--cgg-primary-dark);
  font-size: 1.25rem;
}
.landing-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--cgg-text);
}
.landing-benefit-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--cgg-text-muted);
  line-height: 1.5;
}
.landing-final-lead {
  margin: -0.25rem 0 1rem;
  color: var(--cgg-text-muted);
  font-size: 0.9375rem;
}
.landing-wa-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--landing-lime, #28e070);
  color: #052e1f !important;
  font-size: 1.75rem;
  box-shadow: 0 8px 28px rgba(40, 224, 112, 0.5);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.landing-wa-fab:hover {
  color: #052e1f !important;
  transform: scale(1.05);
}
.landing-wa-fab:focus-visible {
  outline: 2px solid var(--cgg-primary);
  outline-offset: 3px;
}
.landing-minimal-header .site-logo {
  width: 80px;
  height: 80px;
}

/* Landing hero: horizontal scroll (one slide per view) + glass arrows + dot nav */
.landing-hero-slider-viewport {
  position: relative;
}
.landing-hero-scroll-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.landing-hero-scroll-track::-webkit-scrollbar {
  display: none;
}
.landing-hero-scroll-track .landing-hero-slide {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}
.landing-hero-product-slide {
  min-height: 100%;
  display: flex;
  align-items: stretch;
}
.landing-hero-product-card {
  width: 100%;
}
/* Hero carousel: glass circular arrows, vertically centered on the slide */
.landing-hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}
.landing-hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}
.landing-hero-slider-arrow:active {
  transform: translateY(-50%) scale(0.96);
}
.landing-hero-slider-arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
}
.landing-hero-slider-arrow-icon {
  font-size: 1.35rem;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
.landing-hero-slider-arrow--prev {
  left: 0.75rem;
  right: auto;
}
.landing-hero-slider-arrow--next {
  right: 0.75rem;
  left: auto;
}
@media (min-width: 640px) {
  .landing-hero-slider-arrow--prev {
    left: 1rem;
  }
  .landing-hero-slider-arrow--next {
    right: 1rem;
  }
}
/* Dots: same pattern as former “How it works” (large hit area + inner circle), tuned for green hero */
.landing-hero-slider .landing-onboarding-dot-circle {
  background: rgba(255, 255, 255, 0.42);
}
.landing-hero-slider .landing-onboarding-dot--active .landing-onboarding-dot-circle {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}
.landing-hero-slider .landing-onboarding-dot:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65);
}
a.landing-shop-gate--locked {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Landing: carousel dots (shared inner circle; hero overrides colors above) */
.landing-onboarding-dot-circle {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Landing: shop by category + product carousels — square tiles with curved corners */
.landing-shop {
  --landing-carousel-tile-radius: 22px;
}
.landing-category-section,
.landing-product-section {
  --landing-carousel-tile-radius: 22px;
}
.landing-shop-lead {
  font-size: 0.9375rem;
  color: var(--cgg-text-muted);
  margin: -0.25rem 0 1.25rem;
  line-height: 1.5;
}
.landing-showcase {
  border-radius: var(--landing-carousel-tile-radius);
  background: linear-gradient(145deg, #f9faff 0%, #eef1f8 100%);
  box-shadow: var(--cgg-shadow-md);
  border: 1px solid rgba(30, 27, 75, 0.08);
  padding: 1rem 0.875rem 1.125rem;
}
.landing-showcase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0 0.125rem;
}
.landing-showcase-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cgg-text-light);
  font-weight: 600;
  margin: 0;
}
.landing-showcase-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cgg-text);
  margin: 0.15rem 0 0;
}
.landing-showcase-nav {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.landing-nav-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid rgba(27, 31, 91, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--cgg-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background-color 0.2s ease;
}
.landing-nav-btn:hover {
  background: #e9edf8;
  transform: scale(1.05);
}
.landing-nav-btn:focus-visible {
  outline: 2px solid var(--cgg-primary);
  outline-offset: 2px;
}
.landing-cat-track,
.landing-prod-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.4rem;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: thin;
}
.landing-cat-track::-webkit-scrollbar,
.landing-prod-track::-webkit-scrollbar {
  height: 6px;
}
.landing-cat-track::-webkit-scrollbar-thumb,
.landing-prod-track::-webkit-scrollbar-thumb {
  background: rgba(27, 31, 91, 0.22);
  border-radius: 999px;
}
/* Shared: square “curved box” tiles in horizontal carousels */
.landing-carousel-tile {
  position: relative;
  flex: 0 0 74%;
  max-width: 220px;
  min-width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: var(--landing-carousel-tile-radius);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow:
    0 10px 24px rgba(27, 31, 91, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.landing-cat-card {
  background: #d7deef;
  color: #fff;
}
.landing-prod-card {
  background: #1e293b;
  color: #fff;
}
.landing-cat-card:hover,
.landing-prod-card:hover {
  transform: scale(1.02);
  box-shadow:
    0 14px 32px rgba(27, 31, 91, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  color: #fff;
}
.landing-cat-card img,
.landing-prod-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-cat-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, var(--cgg-primary) 0%, var(--cgg-primary-dark) 100%);
}
.landing-prod-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, #334155 0%, #1e293b 100%);
}
.landing-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 44, 0.82) 0%, rgba(13, 17, 44, 0.28) 52%, rgba(13, 17, 44, 0) 74%);
  pointer-events: none;
}
.landing-prod-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(15, 23, 42, 0) 78%);
  pointer-events: none;
}
.landing-cat-card-body {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}
.landing-prod-card-body {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}
.landing-cat-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.landing-cat-card-meta {
  margin: 4px 0 0;
  font-size: 0.76rem;
  opacity: 0.92;
}
.landing-cat-card-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 1;
}
.landing-prod-card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.landing-prod-card-price {
  margin: 0.4rem 0 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #bbf7d0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.landing-shop-all {
  padding: 0 0.25rem;
}
.landing-shop-all-link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cgg-primary-dark);
  text-decoration: none;
}
.landing-shop-all-link:hover {
  text-decoration: underline;
}
@media (min-width: 480px) {
  .landing-carousel-tile {
    flex-basis: 220px;
    min-width: 200px;
    max-width: 220px;
  }
}
