@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");

/* ─── CSS Variables & Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colors */
  --color-primary: #032846;
  --color-on-primary: #ffffff;
  --color-primary-container: #0c2d4f;
  --color-on-primary-container: #c8dff0;
  --color-inverse-primary: #90bbd8;

  --color-secondary: #f47820;
  --color-on-secondary: #ffffff;
  --color-secondary-container: #fff0e6;
  --color-on-secondary-container: #7a3600;

  --color-accent: #f6ac2e;
  --color-on-accent: #032846;

  --color-background: #f8fafc;
  --color-surface: #f8fafc;
  --color-surface-dim: #dde6ef;
  --color-surface-bright: #ffffff;
  --color-surface-container-low: #f1f5f9;
  --color-surface-container: #e9eff5;
  --color-surface-container-high: #dde6ef;
  --color-on-surface: #032846;
  --color-on-surface-variant: #64748b;
  --color-outline: #94a3b8;
  --color-outline-variant: #e2e8f0;

  --color-error: #ba1a1a;
  --color-success: #16a34a;

  /* Typography */
  --font-display: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacings */
  --spacing-container-max: 1280px;
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-on-surface);
  background-color: var(--color-background);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #1e293b;
  background-color: var(--color-background);
  line-height: 1.6;
  padding-bottom: 60px; /* Space for MobileBottomNav on small screens */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

img, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ─── Material Symbols Icon ───────────────────────────────────────────────── */
.material-symbols-outlined,
.icon-symbol {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* ─── Typography Helpers ──────────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.text-display-lg { font-size: 3rem; line-height: 1.1; font-weight: 700; }
.text-display-lg-mobile { font-size: 2rem; line-height: 1.2; font-weight: 700; }
.text-headline-lg { font-size: 2.25rem; line-height: 1.2; font-weight: 700; }
.text-headline-md { font-size: 1.875rem; line-height: 1.25; font-weight: 700; }
.text-headline-sm { font-size: 1.5rem; line-height: 1.3; font-weight: 600; }
.text-body-lg { font-size: 1.125rem; line-height: 1.6; }
.text-body-md { font-size: 1rem; line-height: 1.5; }
.text-body-sm { font-size: 0.875rem; line-height: 1.5; }
.text-xs { font-size: 0.75rem; line-height: 1.4; }
.text-label-bold { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* ─── Layout & Container ──────────────────────────────────────────────────── */
.site-main {
  flex: 1 0 auto;
  padding-top: 80px; /* Offset for fixed header */
}

.max-w-container,
.max-w-\(--spacing-container-max\),
.max-w-\[1280px\] {
  max-width: var(--spacing-container-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.px-6, .px-lg { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12, .py-lg { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Flex & Grid Utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-2, .gap-xs { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4, .gap-sm { gap: 1rem; }
.gap-6, .gap-md { gap: 1.5rem; }
.gap-8, .gap-lg { gap: 2rem; }
.gap-12, .gap-xl { gap: 3rem; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:inline-flex { display: inline-flex; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-display-lg { font-size: 3rem; line-height: 1.1; }
  .md\:inline { display: inline; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex { display: flex; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
}

/* ─── Color Classes ───────────────────────────────────────────────────────── */
.bg-primary { background-color: var(--color-primary); }
.bg-primary-container { background-color: var(--color-primary-container); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-secondary-container { background-color: var(--color-secondary-container); }
.bg-accent { background-color: var(--color-accent); }
.bg-surface { background-color: var(--color-surface); }
.bg-surface-container-low { background-color: var(--color-surface-container-low); }
.bg-surface-container { background-color: var(--color-surface-container); }
.bg-surface-bright, .bg-white { background-color: #ffffff; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-on-primary { color: var(--color-on-primary); }
.text-on-secondary { color: var(--color-on-secondary); }
.text-on-primary-container { color: var(--color-on-primary-container); }
.text-on-secondary-container { color: var(--color-on-secondary-container); }
.text-on-surface-variant { color: var(--color-on-surface-variant); }
.text-white { color: #ffffff; }
.text-outline { color: var(--color-outline); }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-outline-variant { border-color: var(--color-outline-variant); }
.border-outline-variant\/20 { border-color: rgba(226, 232, 240, 0.4); }
.border-outline-variant\/30 { border-color: rgba(226, 232, 240, 0.6); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-primary { border-color: var(--color-primary); }
.border-secondary { border-color: var(--color-secondary); }

.rounded-md { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: var(--radius-md); }
.rounded-2xl { border-radius: var(--radius-lg); }
.rounded-3xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary, .btn-cta {
  background-color: var(--color-secondary);
  color: var(--color-on-secondary);
}
.btn-primary:hover, .btn-cta:hover {
  background-color: #e06612;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 120, 32, 0.3);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}
.btn-accent:hover {
  background-color: #e59d20;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(246, 172, 46, 0.3);
}

.btn-dark {
  background-color: var(--color-primary);
  color: #ffffff;
}
.btn-dark:hover {
  background-color: #0c2d4f;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
}

/* ─── Header & Navigation ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 10px rgba(3, 40, 70, 0.04);
  height: 80px;
}

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

.site-logo img {
  height: 48px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: background-color 0.2s ease;
}

.cart-icon-btn:hover {
  background-color: var(--color-surface-container-low);
}

.cart-badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-secondary);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 45;
  background: #ffffff;
  border-bottom: 1px solid var(--color-outline-variant);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-on-surface-variant);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background-color: rgba(3, 40, 70, 0.05);
  color: var(--color-primary);
  font-weight: 600;
}

/* ─── Hero Slider ─────────────────────────────────────────────────────────── */
.hero-slider-container {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(3, 40, 70, 0.15);
  min-height: 480px;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 40, 70, 0.92) 0%, rgba(3, 40, 70, 0.65) 60%, rgba(3, 40, 70, 0.2) 100%);
  display: flex;
  align-items: center;
  padding: 3rem;
}

.hero-content {
  max-width: 640px;
  color: #ffffff;
}

.hero-tag {
  display: inline-block;
  background: rgba(246, 172, 46, 0.2);
  color: var(--color-accent);
  border: 1px solid rgba(246, 172, 46, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 32px;
  border-radius: 6px;
  background: var(--color-secondary);
}

/* ─── Product Card ────────────────────────────────────────────────────────── */
.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(3, 40, 70, 0.08);
}

.product-card-img-wrap {
  position: relative;
  padding-top: 66%; /* 3:2 aspect ratio */
  background: var(--color-surface-container-low);
  overflow: hidden;
}

.product-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
}

.product-badge.badge-sale {
  background: #dc2626;
  color: #ffffff;
}

.product-badge.badge-new {
  background: var(--color-secondary);
  color: #ffffff;
}

.product-badge.badge-featured {
  background: var(--color-accent);
  color: var(--color-primary);
}

.product-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-on-surface-variant);
  margin-bottom: 0.25rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price del {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-on-surface-variant);
  text-decoration: line-through;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-primary-container);
  color: var(--color-on-primary-container);
  width: 100%;
}

.footer-inner {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(200, 223, 240, 0.7);
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 0.6rem;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: rgba(200, 223, 240, 0.5);
}

/* ─── Mobile Bottom Navigation (MobileBottomNav) ──────────────────────────── */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 49;
  background: #ffffff;
  border-top: 1px solid var(--color-outline-variant);
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mobile-bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  position: relative;
  padding: 0.25rem;
  flex: 1;
}

.mobile-bottom-nav-item.active {
  color: var(--color-secondary);
  font-weight: 600;
}

.mobile-bottom-nav-item .icon-symbol {
  font-size: 22px;
  margin-bottom: 2px;
}

/* ─── Cart Toast Notification ─────────────────────────────────────────────── */
.cart-toast {
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 100;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(3, 40, 70, 0.15);
  border: 1px solid var(--color-outline-variant);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ─── Search Modal ────────────────────────────────────────────────────────── */
.search-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(3, 40, 70, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.search-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  width: 90%;
  max-width: 600px;
  box-shadow: 0 25px 50px rgba(3, 40, 70, 0.25);
  overflow: hidden;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-outline-variant);
}

.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.125rem;
  color: var(--color-primary);
}

/* ─── FAQ Accordion ───────────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--color-outline-variant);
  border-radius: var(--radius);
  background: #ffffff;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-header {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-primary);
  user-select: none;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--color-on-surface-variant);
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.3s ease;
}

/* ─── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

/* ─── WooCommerce Overrides & Enhancements ────────────────────────────────── */
.woocommerce-notices-wrapper {
  margin-bottom: 1.5rem;
}

.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  list-style: none;
  font-size: 0.9375rem;
}

.woocommerce-message {
  background: #f0fdf4;
  border-left: 4px solid var(--color-success);
  color: #166534;
}

.woocommerce-error {
  background: #fef2f2;
  border-left: 4px solid var(--color-error);
  color: #991b1b;
}

.woocommerce-info {
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  color: #1e40af;
}

/* Cart & Checkout tables */
.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-outline-variant);
  overflow: hidden;
}

.shop_table th {
  background: var(--color-surface-container-low);
  padding: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: left;
}

.shop_table td {
  padding: 1.25rem 1rem;
  border-top: 1px solid var(--color-outline-variant);
  vertical-align: middle;
}
