/* ==========================================================================
   ENORA — Heritage Kala Namak Rice
   Design tokens: warm ivory bg, dark forest green accent, warm amber highlights
   Display: Playfair Display | Body: Inter
   ========================================================================== */

:root {
  --color-bg: #FAF7F0;
  --color-bg-alt: #F2EDE2;
  --color-ink: #1C1C1A;
  --color-ink-soft: #6B6456;
  --color-accent: #2D5016;
  --color-accent-dark: #1A3009;
  --color-accent-light: #3D6B20;
  --color-muted: #6B6456;
  --color-border: #E0D8C8;
  --color-white: #FFFFFF;
  --color-star: #E8A020;
  --color-amber: #E8A020;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 2px 16px rgba(28, 26, 22, 0.06);
  --shadow-card-hover: 0 12px 36px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 4px 20px rgba(45, 80, 22, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

svg { width: 1em; height: 1em; }

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.15;
}

h1 { font-size: clamp(32px, 4vw, 48px); }
h2 { font-size: clamp(26px, 3vw, 34px); }
h3 { font-size: 20px; }

p { color: var(--color-ink-soft); }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover { background: var(--color-accent-light); box-shadow: 0 6px 24px rgba(45, 80, 22, 0.35); }

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-secondary:hover { background: var(--color-accent); color: var(--color-white); }

.btn-accent {
  background: var(--color-amber);
  color: #1A1A18;
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.3);
}
.btn-accent:hover { background: #C07810; box-shadow: 0 6px 24px rgba(232, 160, 32, 0.4); }

.btn-block { width: 100%; }

/* ---------- Placeholder image block ---------- */
.img-placeholder {
  background: #E4E0D4;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  transition: transform 0.4s ease;
}
.img-placeholder svg { width: 35%; max-width: 110px; height: auto; aspect-ratio: 1 / 1; opacity: 0.55; }
.img-placeholder .ph-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: rgba(255,255,255,0.7);
  padding: 2px 8px;
  border-radius: 3px;
}

/* ==========================================================================
   HEADER — Dark Forest Green
   ========================================================================== */
.site-header {
  background: var(--color-accent);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  background: var(--color-accent-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--color-white);
}

.logo span.tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav ul { display: flex; gap: 32px; }

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--color-white); }

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-amber);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icons button, .header-icons a {
  display: flex;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

.header-icons button:hover, .header-icons a:hover {
  color: var(--color-white);
  transform: scale(1.1);
}

.header-icons svg { width: 20px; height: 20px; }

.header-icons .cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-amber);
  color: #1A1A18;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.header-icons .nav-toggle { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-icons .nav-toggle { display: flex; color: var(--color-white); }
}

/* ==========================================================================
   FOOTER — Deep Dark Green
   ========================================================================== */
.site-footer {
  background: var(--color-accent-dark);
  border-top: none;
  margin-top: 0;
  color: #C8D8B8;
}

.footer-newsletter {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
}

.newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-row h3 { font-size: 22px; margin-bottom: 4px; color: var(--color-white); }
.newsletter-row p { font-size: 14px; color: #A8C88A; }

.newsletter-form { display: flex; gap: 0; max-width: 380px; width: 100%; }

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.newsletter-form button {
  padding: 12px 22px;
  background: var(--color-amber);
  color: #1A1A18;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.newsletter-form button:hover { background: #C07810; }

.footer-main {
  padding: 56px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; max-width: 240px; color: #A8C88A; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }

.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #A8C88A;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: #A8C88A;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--color-amber); }

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #A8C88A;
  margin-bottom: 12px;
  align-items: flex-start;
}

.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: #A8C88A; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(200, 216, 184, 0.6);
}

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .newsletter-row { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   SHARED SECTION PATTERNS
   ========================================================================== */
.section { padding: 72px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-tight { padding: 48px 0; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 48px;
}
.hero-split h1 { margin-bottom: 18px; }
.hero-split p { font-size: 16px; margin-bottom: 28px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-split .img-placeholder { min-height: 380px; }

.usp-strip {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
}
.usp-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: var(--color-ink-soft); }
.usp-item svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-feature.reverse .img-placeholder { order: 2; }
.split-feature .img-placeholder { min-height: 280px; }
.split-feature h2 { margin-bottom: 16px; }
.split-feature p { font-size: 15px; margin-bottom: 20px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { font-size: 15px; }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.icon-card { text-align: center; padding: 8px; }

.icon-circle {
  width: 56px; height: 56px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.icon-circle svg { width: 24px; height: 24px; color: var(--color-accent); }

.icon-card:hover .icon-circle {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-green);
}

.icon-card:hover .icon-circle svg { color: var(--color-white); }

.icon-card h4 { font-size: 14.5px; margin-bottom: 6px; font-family: var(--font-body); font-weight: 700; }
.icon-card p { font-size: 13px; }

.trust-strip {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; min-width: 110px; }
.trust-item svg { width: 28px; height: 28px; color: var(--color-accent); }
.trust-item span { font-size: 12.5px; font-weight: 600; color: var(--color-ink-soft); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.product-card .img-placeholder { min-height: 160px; transition: transform 0.4s ease; }
.product-card:hover .img-placeholder { transform: scale(1.02); }
.product-card h3 { margin-bottom: 10px; }
.product-card ul { margin-bottom: 14px; }
.product-card ul li {
  font-size: 13.5px;
  color: var(--color-ink-soft);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card ul li svg { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }
.product-card .price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-accent);
}
.product-card .product-link {
  display: block; text-align: center; font-size: 13px; margin-top: 10px;
  color: var(--color-ink-soft);
  transition: color 0.3s ease;
}
.product-card .product-link:hover { color: var(--color-accent); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 32px; color: var(--color-accent); line-height: 1; }
.testimonial-card p { font-size: 14px; margin: 10px 0 16px; }
.stars { color: var(--color-star); font-size: 13px; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--color-ink); }

.cta-banner {
  background: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.cta-banner h2 { color: var(--color-white); margin-bottom: 22px; position: relative; }
.cta-banner .hero-actions { justify-content: center; margin-bottom: 0; position: relative; }
.cta-banner .btn-secondary { color: var(--color-white); border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-secondary:hover { background: var(--color-white); color: var(--color-accent); border-color: var(--color-white); }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}
.faq-item:hover { background: rgba(45, 80, 22, 0.03); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  background: none;
  transition: color 0.3s ease;
}

.faq-question:hover { color: var(--color-accent); }

.faq-question .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-question .icon svg { width: 100%; height: 100%; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p { font-size: 14px; padding: 0 4px 20px; max-width: 680px; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-question .icon { transform: rotate(41deg); }

.view-all-link {
  display: block; text-align: center; margin-top: 28px; font-size: 14px; font-weight: 600;
  color: var(--color-accent);
  transition: all 0.3s ease;
}
.view-all-link:hover { color: var(--color-accent-light); transform: translateY(-1px); }

@media (max-width: 860px) {
  .hero-split, .split-feature { grid-template-columns: 1fr; }
  .split-feature.reverse .img-placeholder { order: 0; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .trust-strip { justify-content: center; }
  .resp-grid { grid-template-columns: 1fr !important; }
  .resp-gap { gap: 24px !important; }
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATION SYSTEM
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 80, 22, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(45, 80, 22, 0); }
}

/* Hero entrance animations */
.hero-split .eyebrow { animation: fadeInUp 0.6s ease both; }
.hero-split h1 { animation: fadeInUp 0.7s ease 0.1s both; }
.hero-split p { animation: fadeInUp 0.7s ease 0.2s both; }
.hero-split .hero-actions { animation: fadeInUp 0.7s ease 0.3s both; }
.hero-split .img-placeholder { animation: scaleIn 0.8s ease 0.2s both; }

/* ==========================================================================
   LEGACY VARIABLE COMPATIBILITY
   Maps old --clr-* / --space-* / --text-* / --card-* variables
   so auth, account, and other legacy pages render correctly.
   ========================================================================== */
:root {
  /* Color aliases */
  --clr-primary: #2D5016;
  --clr-primary-light: #3D6B20;
  --clr-primary-rgb: 45, 80, 22;
  --clr-accent: #E8A020;
  --clr-text: #1C1C1A;
  --clr-text-muted: #6B6456;
  --clr-text-faint: #9B9486;
  --clr-border: #E0D8C8;
  --clr-danger: #C0392B;
  --clr-danger-bg: #FDECEA;
  --clr-success: #2D5016;
  --clr-success-bg: #EAF1E4;
  --clr-warning: #B8860B;
  --clr-warning-bg: #FFF8E1;
  --clr-info: #2D5016;
  --clr-info-bg: #EAF1E4;

  /* Card aliases */
  --card-bg: #FFFFFF;
  --card-border: #E0D8C8;
  --card-radius: 8px;

  /* Nav height for sticky offset */
  --nav-height: 72px;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 48px;
  --space-12: 64px;

  /* Text sizes */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-lg: 18px;
  --text-2xl: 28px;
  --text-3xl: 36px;

  /* Font weights */
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line heights */
  --leading-loose: 1.7;

  /* Radius */
  --radius-lg: 12px;
}

/* ==========================================================================
   FORM COMPONENTS
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink);
}

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: var(--color-white);
  color: var(--color-ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.12);
}

/* Button variants */
.btn-full { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 15px; }

/* ==========================================================================
   ALERTS
   ========================================================================== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert i { margin-top: 2px; flex-shrink: 0; }

.alert-danger {
  background: #FDECEA;
  color: #C0392B;
  border: 1px solid #C0392B;
}

.alert-success {
  background: #EAF1E4;
  color: var(--color-accent-dark);
  border: 1px solid var(--color-accent);
}

.alert-info {
  background: #EAF1E4;
  color: var(--color-accent-dark);
  border: 1px solid var(--color-accent);
}

/* ==========================================================================
   AUTH PAGES (login, register, forgot-password)
   ========================================================================== */
.auth-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--color-bg);
}

.auth-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-card);
}

.auth-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  color: var(--color-muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* ==========================================================================
   ACCOUNT PAGE — page hero
   ========================================================================== */
.page-hero {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 48px 0;
}

.page-hero h1 { color: var(--color-white); }
.page-hero p { color: rgba(255, 255, 255, 0.75); font-size: 15px; margin-top: 6px; }

/* ==========================================================================
   FILTER PILLS (used on recipes, blogs, faq)
   ========================================================================== */
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }

.filter-pill {
  transition: all 0.3s ease;
}

.filter-pill:hover {
  border-color: var(--color-accent) !important;
  color: var(--color-accent) !important;
}

.filter-pill.active {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-color: var(--color-accent) !important;
}

/* Utility */
.mt-0 { margin-top: 0 !important; }

/* ==========================================================================
   MOBILE NAV — Slide-in panel from right
   ========================================================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.nav-open .nav-overlay {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-accent-dark);
    z-index: 95;
    padding: 80px 24px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  }

  .main-nav.open {
    display: block;
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav ul li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
  }

  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    color: var(--color-amber);
  }

  .main-nav ul li a::after {
    display: none;
  }

  .main-nav ul li a.active {
    border-left: 3px solid var(--color-amber);
    padding-left: 12px;
  }

  /* Hide search icon on mobile (not functional yet) */
  .header-icon-search { display: none; }
}

/* ==========================================================================
   RESPONSIVE — Tablet (max-width: 860px)
   ========================================================================== */
@media (max-width: 860px) {
  /* Hero */
  .hero-split {
    gap: 32px;
    padding: 40px 0 36px;
  }
  .hero-split .img-placeholder { min-height: 260px; }

  /* Split feature */
  .split-feature {
    gap: 32px;
  }

  /* Section spacing */
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }

  /* Icon grid: 2 cols on tablet */
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* USP strip */
  .usp-strip { gap: 20px; }

  /* Trust strip */
  .trust-strip { gap: 20px; }
  .trust-item { min-width: 90px; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: 1 / -1; }

  /* Auth */
  .auth-card { padding: 32px 24px; }
}

/* ==========================================================================
   RESPONSIVE — Mobile (max-width: 640px)
   ========================================================================== */
@media (max-width: 640px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Header */
  .header-inner { padding: 12px 16px; }
  .logo { font-size: 20px; }
  .logo span.tagline { font-size: 8px; }
  .header-icons { gap: 14px; }
  .header-icons svg { width: 18px; height: 18px; }

  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }

  /* Hero */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 28px;
    text-align: center;
  }
  .hero-split p { max-width: 100%; font-size: 15px; }
  .hero-actions { justify-content: center; }
  .hero-split .img-placeholder { min-height: 200px; }

  /* Split feature */
  .split-feature {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .split-feature .img-placeholder { min-height: 200px; }
  .split-feature h2 { font-size: 22px; }
  .split-feature p { font-size: 14px; }

  /* Section */
  .section { padding: 40px 0; }
  .section-alt { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }

  /* USP strip */
  .usp-strip {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    padding: 20px 0;
  }

  /* Icon grid: 2 cols on mobile */
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .icon-card h4 { font-size: 13px; }
  .icon-card p { font-size: 12px; }
  .icon-circle { width: 48px; height: 48px; }
  .icon-circle svg { width: 20px; height: 20px; }

  /* Product grid */
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

  /* Testimonial grid */
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 20px; }

  /* Trust strip */
  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .trust-item { min-width: auto; }

  /* CTA banner */
  .cta-banner { padding: 40px 20px; }
  .cta-banner h2 { font-size: 22px; }
  .cta-banner .hero-actions { justify-content: center; }

  /* FAQ */
  .faq-list { max-width: 100%; }
  .faq-question { font-size: 14px; padding: 16px 4px; }
  .faq-answer p { font-size: 13px; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 24px;
  }
  .footer-brand { grid-column: auto; }
  .footer-newsletter { padding: 28px 0; }
  .newsletter-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .newsletter-row h3 { font-size: 18px; }
  .newsletter-form { max-width: 100%; }
  .footer-bottom { font-size: 12px; padding: 14px 0; }

  /* Auth pages */
  .auth-page { padding: 32px 16px; min-height: calc(100vh - 160px); }
  .auth-card { padding: 28px 20px; max-width: 100%; }
  .auth-logo { font-size: 24px; }

  /* Account page */
  .page-hero { padding: 32px 0; }
  .page-hero h1 { font-size: 24px; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 13px; }
  .btn-lg { padding: 13px 26px; font-size: 14px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1; min-width: 0; justify-content: center; }
}

/* ==========================================================================
   RESPONSIVE — Small mobile (max-width: 400px)
   ========================================================================== */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }

  .icon-grid { grid-template-columns: 1fr; }
  .hero-split .img-placeholder { min-height: 160px; }
  .split-feature .img-placeholder { min-height: 160px; }
  .cta-banner { padding: 32px 16px; }
  .cta-banner h2 { font-size: 20px; }
}

/* ==========================================================================
   RESPONSIVE — Inline grid overrides (pages using style="display:grid;...")
   These classes replace inline grid styles for responsive behavior.
   ========================================================================== */
.resp-grid {
  display: grid;
}

@media (max-width: 860px) {
  .resp-grid { grid-template-columns: 1fr !important; }
  .resp-grid-2 { grid-template-columns: 1fr 1fr !important; }
  .resp-grid-wrap { flex-wrap: wrap !important; }
}

@media (max-width: 640px) {
  .resp-grid { grid-template-columns: 1fr !important; }
  .resp-grid-2 { grid-template-columns: 1fr !important; }
  .resp-text-center { text-align: center !important; }
  .resp-hide { display: none !important; }
  .resp-full-w { width: 100% !important; max-width: 100% !important; }
}

/* Fix inline style grids on mobile */
@media (max-width: 640px) {
  /* 4-col recipe/blog grids */
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  /* 3-col grids */
  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* 1fr 2fr grids */
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }
  /* 240px 1fr sidebar grid (FAQ) */
  [style*="grid-template-columns:240px"] {
    grid-template-columns: 1fr !important;
  }
  /* flex rows that need wrapping */
  [style*="display:flex"][style*="justify-content:space-between"] {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 400px) {
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
  padding: 20px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-accent); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-accent-light); }
.breadcrumb-sep { color: var(--color-border); }
.breadcrumb-current { color: var(--color-ink); font-weight: 500; }

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 48px;
}

.product-gallery {}
.gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--color-accent); }

.product-info {}
.product-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 8px;
  display: block;
}
.product-info h1 { font-size: 32px; margin-bottom: 12px; }

.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.in-stock { background: #EAF1E4; color: var(--color-accent); }
.low-stock { background: #FFF8E1; color: #B8860B; }
.out-stock { background: #FDECEA; color: #C0392B; }

.product-pricing { margin-bottom: 20px; }
.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.price-current {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
}
.price-original {
  font-size: 18px;
  color: var(--color-muted);
  text-decoration: line-through;
}
.price-discount {
  background: #FDECEA;
  color: #C0392B;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.product-description {
  font-size: 14px;
  color: var(--color-ink-soft);
  margin-bottom: 24px;
  line-height: 1.7;
}

.add-to-cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
  background: var(--color-bg-alt);
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--color-border); }
.qty-input {
  width: 48px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-ink-soft);
}
.product-feature i { color: var(--color-accent); width: 16px; text-align: center; }

/* Related products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-grid .product-card {
  grid-template-columns: 1fr;
  padding: 0;
}
.product-card-img { border-radius: var(--radius-md) var(--radius-md) 0 0; overflow: hidden; }
.product-card-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card-body { padding: 16px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--color-ink); display: block; margin-bottom: 8px; }
.product-card-footer { padding: 0 16px 16px; }

@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-info h1 { font-size: 24px; }
  .price-current { font-size: 24px; }
  .add-to-cart-row { flex-direction: column; align-items: stretch; }
  .add-to-cart-row .btn { justify-content: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-thumb { width: 52px; height: 52px; }
}

/* ==========================================================================
   CART PAGE
   ========================================================================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 64px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.cart-table td:last-child { text-align: right; }

.cart-summary-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 90px;
  box-shadow: var(--shadow-card);
}

.cart-totals { margin: 20px 0; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-ink-soft);
}
.cart-total-row.grand {
  border-top: 2px solid var(--color-border);
  margin-top: 8px;
  padding-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
}

.coupon-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.coupon-form .form-control { flex: 1; }

.btn-ghost {
  background: transparent;
  color: var(--color-ink-soft);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-icon { padding: 8px; }

@media (max-width: 860px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-box { position: static; }
}

@media (max-width: 640px) {
  /* Convert table to card layout on mobile */
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
  }
  .cart-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
  }
  .cart-table td {
    padding: 4px 0;
    border: none;
    text-align: left !important;
  }
  .cart-table td:last-child {
    position: absolute;
    top: 16px;
    right: 0;
  }
  .cart-continue-btn { width: 100%; justify-content: center; }
}

/* Blog body content */
.blog-body { font-size: 15px; line-height: 1.8; color: var(--color-ink-soft); }
.blog-body p { margin-bottom: 16px; }
.blog-body h2, .blog-body h3 { color: var(--color-ink); margin: 28px 0 12px; }
.blog-body img { border-radius: var(--radius-md); margin: 20px 0; }
.blog-body ul, .blog-body ol { margin: 12px 0 12px 24px; }
.blog-body li { margin-bottom: 6px; }

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 64px;
}

.checkout-section {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
}

.checkout-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-form-grid .form-group.full {
  grid-column: 1 / -1;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.payment-option:hover {
  border-color: var(--color-accent);
  background: rgba(45, 80, 22, 0.02);
}

.payment-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--color-accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.payment-option.selected {
  border-color: var(--color-accent);
  background: rgba(45, 80, 22, 0.04);
}

@media (max-width: 860px) {
  .checkout-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-form-grid .form-group.full { grid-column: auto; }
  .checkout-section { padding: 20px 16px; }
  .checkout-section h3 { font-size: 16px; }
  .payment-option { padding: 14px; }
}

/* ==========================================================================
   ACCOUNT PAGE — Sidebar + Content Layout
   ========================================================================== */
@media (max-width: 860px) {
  /* Account sidebar + content grid */
  [style*="grid-template-columns:240px"] {
    grid-template-columns: 1fr !important;
  }
}

/* Account sidebar sticky positioning fix on mobile */
@media (max-width: 640px) {
  [style*="position:sticky"][style*="top:calc"] {
    position: relative !important;
    top: 0 !important;
  }
}

/* ==========================================================================
   SINGLE BLOG POST PAGE
   ========================================================================== */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: flex-start;
  padding: 48px 0 64px;
}

.blog-content-area {
  max-width: 100%;
  overflow-wrap: break-word;
}

.blog-content-area img {
  max-width: 100%;
  height: auto;
}

.blog-sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.blog-sidebar-widget h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--color-ink);
}

.blog-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-amber);
}

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--color-bg-alt);
  color: var(--color-ink-soft);
  font-size: 12px;
  font-weight: 500;
  margin: 2px 4px 2px 0;
  transition: background 0.2s, color 0.2s;
}

.pill:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-soft);
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 48px;
  }
}

/* ==========================================================================
   ORDER SUCCESS PAGE
   ========================================================================== */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s ease both;
}

.success-page h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .success-page h1 { font-size: 22px; }
  .success-icon { width: 64px; height: 64px; font-size: 26px; }
  .success-page [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   MAISC — text-sm, text-md utility
   ========================================================================== */
.text-sm { font-size: 13px; }
.text-success { color: var(--color-accent); }
.text-xs { font-size: 11px; }
