/* ==========================================================================
   GULpilul - Pure Sugar Aesthetic Design System
   Handcrafted Semantic CSS (Zero Framework Dependencies)
   ========================================================================== */

:root {
  /* Sugar & Crystal Palette */
  --sugar-white: #ffffff;
  --sugar-snow: #f8fafc;
  --sugar-crystal: #f1f5f9;
  --sugar-crystal-border: rgba(226, 232, 240, 0.8);
  --sugar-frosted: rgba(255, 255, 255, 0.82);
  --sugar-frosted-dark: rgba(248, 250, 252, 0.88);
  
  /* Cane Sugar & Warm Amber Accents */
  --cane-amber: #c59239;
  --cane-amber-light: #dfb264;
  --cane-amber-dark: #98691b;
  --cane-amber-soft: #fcf8f0;
  --cane-amber-glow: rgba(197, 146, 57, 0.25);
  
  /* Botanical Fresh Accent */
  --botanic-green: #2d6a4f;
  --botanic-light: #d8f3dc;
  
  /* Text & Hierarchy */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Shadows with crystalline dispersion */
  --shadow-crystal: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 16px 32px -4px rgba(197, 146, 57, 0.14), 0 8px 16px -2px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 0 24px rgba(197, 146, 57, 0.28);
  
  /* Layout */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-body);
  background-color: var(--sugar-snow);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(223, 178, 100, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Sugar Canvas Particle Layer */
#sugar-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Sugar Announcement Topbar */
.sugar-topbar {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  color: var(--sugar-white);
  padding: 8px 16px;
  font-size: 0.85rem;
  text-align: center;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(223, 178, 100, 0.3);
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-badge {
  background: rgba(197, 146, 57, 0.25);
  color: var(--cane-amber-light);
  border: 1px solid rgba(197, 146, 57, 0.4);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--sugar-frosted);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sugar-crystal-border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.crystal-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ffffff 0%, #faeede 50%, #c59239 100%);
  border: 1.5px solid rgba(197, 146, 57, 0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(197, 146, 57, 0.2);
  transform: rotate(45deg);
  transition: var(--transition);
}

.brand-logo:hover .crystal-mark {
  transform: rotate(135deg) scale(1.05);
}

.crystal-mark svg {
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
  fill: #98691b;
}

.brand-logo .brand-highlight {
  color: var(--cane-amber);
}

.brand-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--cane-amber-soft);
  color: var(--cane-amber-dark);
  border: 1px solid rgba(197, 146, 57, 0.3);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
  vertical-align: middle;
}

/* Nav links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--cane-amber);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cane-amber), var(--cane-amber-light));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-crystal);
  cursor: pointer;
  transition: var(--transition);
}

.cart-indicator:hover {
  border-color: var(--cane-amber-light);
  transform: translateY(-1px);
}

.cart-badge {
  background: var(--cane-amber);
  color: var(--sugar-white);
  font-size: 0.75rem;
  padding: 1px 7px;
  border-radius: 99px;
}

/* Mobile burger */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.burger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Sugar Contour Buttons (Hover-moving crystal border) */
.btn-sugar-contour {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--sugar-white);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  z-index: 1;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.btn-sugar-contour::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-pill);
  background: linear-gradient(115deg, #c59239, #ffffff, #dfb264, #ffffff, #c59239);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0.85;
  transition: var(--transition);
}

.btn-sugar-contour:hover::before {
  animation: sugarBorderMove 2s ease infinite;
  opacity: 1;
  box-shadow: var(--shadow-glow);
}

.btn-sugar-contour:hover {
  transform: translateY(-2px);
  color: var(--cane-amber-dark);
}

.btn-sugar-contour-primary {
  color: var(--sugar-white);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.btn-sugar-contour-primary:hover {
  color: var(--sugar-white);
}

.btn-sugar-contour-primary::before {
  background: linear-gradient(115deg, #c59239, #ffffff, #dfb264, #c59239);
  background-size: 300% 300%;
}

@keyframes sugarBorderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-icon-crystal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-sugar-contour:hover .btn-icon-crystal {
  transform: rotate(15deg) scale(1.15);
}

/* Secondary Button */
.btn-sugar-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--sugar-frosted);
  color: var(--text-body);
  border: 1px solid var(--sugar-crystal-border);
  transition: var(--transition);
}

.btn-sugar-soft:hover {
  background: var(--sugar-white);
  border-color: var(--cane-amber-light);
  color: var(--cane-amber);
  transform: translateY(-1px);
}

/* Sections */
.section-padding {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.section-alt {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(252, 248, 240, 0.45) 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cane-amber-soft);
  color: var(--cane-amber-dark);
  border: 1px solid rgba(197, 146, 57, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

/* HERO SECTION */
.hero-wrapper {
  padding: 60px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge-crystal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sugar-white);
  border: 1px solid rgba(197, 146, 57, 0.35);
  box-shadow: 0 2px 10px rgba(197, 146, 57, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--cane-amber-dark);
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #0f172a 0%, #c59239 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.14rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 18px;
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-crystal);
}

.hero-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-price-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--cane-amber);
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--sugar-crystal-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon-box {
  width: 36px;
  height: 36px;
  background: var(--sugar-white);
  border: 1px solid rgba(197, 146, 57, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cane-amber);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}

.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(197, 146, 57, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(30px);
  z-index: 1;
}

.hero-card-crystal {
  position: relative;
  z-index: 2;
  background: var(--sugar-frosted);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.hero-card-crystal img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-floating-tag {
  position: absolute;
  top: 36px;
  right: -10px;
  background: var(--sugar-white);
  border: 1px solid rgba(197, 146, 57, 0.4);
  box-shadow: var(--shadow-hover);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cane-amber-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

/* INTERACTIVE DAILY GLUCOSE ROUTINE (Restructured Section) */
.routine-box {
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-crystal);
}

.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.routine-step {
  background: var(--sugar-snow);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
}

.routine-step:hover {
  background: var(--sugar-white);
  border-color: var(--cane-amber-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-crystal);
}

.step-time-badge {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cane-amber);
  margin-bottom: 8px;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* FEATURED OFFER SPOTLIGHT (With Composition Breakdown) */
.offer-spotlight-card {
  background: var(--sugar-white);
  border: 1px solid rgba(197, 146, 57, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  margin-bottom: 40px;
}

.offer-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
}

.offer-visual-col {
  background: radial-gradient(circle, #fffaf2 0%, #f7f1e6 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-right: 1px solid rgba(197, 146, 57, 0.15);
}

.offer-visual-col img {
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.offer-info-col {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-badge {
  background: var(--cane-amber-soft);
  color: var(--cane-amber-dark);
  border: 1px solid rgba(197, 146, 57, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.offer-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.offer-lead {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 24px;
}

/* Composition Table / Ingredients Breakdown */
.ingredients-spotlight {
  background: var(--sugar-snow);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.ingredients-spotlight h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.ingredients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  list-style: none;
}

.ingredient-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--sugar-crystal-border);
}

.ing-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.ing-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.offer-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--sugar-crystal-border);
}

.offer-price-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.offer-price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cane-amber);
}

.offer-price-note {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* PRODUCT GRID (Catalog) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-crystal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--cane-amber-light);
  box-shadow: var(--shadow-hover);
}

.product-thumb {
  position: relative;
  background: #fbfbfb;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sugar-white);
  color: var(--cane-amber-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 146, 57, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--cane-amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-body);
  background: var(--sugar-snow);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.product-spec-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--sugar-crystal-border);
}

.product-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
}

.product-price span {
  font-size: 0.9rem;
  color: var(--cane-amber);
}

/* STANDARDS & PRODUCTION */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.standard-card {
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}

.standard-card:hover {
  border-color: var(--cane-amber-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-crystal);
}

.standard-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--cane-amber-soft);
  color: var(--cane-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
}

/* REVIEWS & FEEDBACK */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-crystal);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #eab308;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 20px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-info h5 {
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.reviewer-city {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* FAQ ACCORDION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--sugar-white);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--cane-amber-light);
  box-shadow: var(--shadow-crystal);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sugar-snow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cane-amber);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--cane-amber-soft);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  padding: 0 24px 20px;
}

/* ORDER FORM SECTION (track.js Compliant & Random Generator) */
.order-section-card {
  background: var(--sugar-white);
  border: 1.5px solid rgba(197, 146, 57, 0.4);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.order-section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c59239, #dfb264, #c59239);
}

.order-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.order-summary-box {
  background: var(--cane-amber-soft);
  border: 1px solid rgba(197, 146, 57, 0.2);
  border-radius: var(--radius-md);
  padding: 30px;
}

.order-summary-title {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--cane-amber-dark);
}

.order-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.order-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-dark);
}

.order-form-wrap {
  display: flex;
  flex-direction: column;
}

/* Sample Generator Box */
.sample-generator-box {
  background: var(--sugar-snow);
  border: 1px dashed rgba(197, 146, 57, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sample-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sample-text strong {
  color: var(--text-dark);
}

.btn-generate-sample {
  background: var(--sugar-white);
  border: 1px solid rgba(197, 146, 57, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cane-amber-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-generate-sample:hover {
  background: var(--cane-amber-soft);
  transform: translateY(-1px);
}

/* Form inputs */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.96rem;
  border: 1.5px solid var(--sugar-crystal-border);
  border-radius: var(--radius-sm);
  background: var(--sugar-white);
  color: var(--text-dark);
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--cane-amber);
  box-shadow: 0 0 0 3px rgba(197, 146, 57, 0.15);
}

.form-helper {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 64px 0 24px;
  margin-top: auto;
  position: relative;
  z-index: 10;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--sugar-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--cane-amber-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--cane-amber);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Google Ads Compliant Disclaimer */
.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 36px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-disclaimer-card strong {
  color: #e2e8f0;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-nav {
  display: flex;
  gap: 20px;
}

/* THANK YOU PAGE STYLES */
.thanks-card {
  max-width: 640px;
  margin: 60px auto;
  background: var(--sugar-white);
  border: 1px solid rgba(197, 146, 57, 0.35);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.thanks-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--cane-amber-soft);
  color: var(--cane-amber);
  border: 2px solid var(--cane-amber-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.thanks-summary-details {
  background: var(--sugar-snow);
  border: 1px solid var(--sugar-crystal-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 28px 0;
  text-align: left;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--sugar-crystal-border);
  font-size: 0.92rem;
}

.summary-row:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cane-amber-dark);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid, .offer-spotlight-grid, .order-grid-layout {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .routine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-visual-col {
    border-right: none;
    border-bottom: 1px solid rgba(197, 146, 57, 0.15);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--sugar-white);
    border-bottom: 1px solid var(--sugar-crystal-border);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    z-index: 89;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .mobile-drawer.open {
    transform: translateY(0);
  }
  .product-grid, .standards-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .routine-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
  }
  .order-section-card {
    padding: 28px 20px;
  }
}
