/* ============================================================
   WAYFIT — Master Design System
   Premium Fitness Brand | Black × Red × White
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── Custom Properties ── */
:root {
  /* Colors */
  --black:       #080808;
  --dark:        #111111;
  --dark-2:      #191919;
  --dark-3:      #222222;
  --red:         #e8291c;
  --red-dark:    #b81e13;
  --red-light:   #ff4438;
  --red-glow:    rgba(232, 41, 28, 0.25);
  --red-glow-sm: rgba(232, 41, 28, 0.12);
  --white:       #ffffff;
  --white-90:    rgba(255,255,255,0.9);
  --white-60:    rgba(255,255,255,0.6);
  --white-30:    rgba(255,255,255,0.3);
  --white-10:    rgba(255,255,255,0.08);
  --gray:        #666666;
  --gray-light:  #aaaaaa;

  /* Typography */
  --font-main: 'Inter', 'Poppins', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(80px, 10vw, 140px);
  --container:  1280px;
  --gap:        clamp(20px, 3vw, 40px);

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.87, 0, 0.13, 1);
  --dur-fast:   200ms;
  --dur-mid:    400ms;
  --dur-slow:   700ms;

  /* Shadows */
  --shadow-red:  0 0 40px var(--red-glow), 0 0 80px var(--red-glow-sm);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-sm:   0 4px 20px rgba(0,0,0,0.4);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* Lenis handles this */
body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ── Selection ── */
::selection { background: var(--red); color: var(--white); }

/* ── Loader ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.loader-logo {
  width: 200px;
  /* visible — animated via CSS fadeInUp below */
}
/* loader-bar is the RED FILL; loader-bar-wrap is the track (defined in extensions) */
.loader-text {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── Custom Cursor ── */
#cursor {
  position: fixed; z-index: 9998; pointer-events: none;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  pointer-events: none;
  z-index: 9998;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9997;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              border-color 0.3s, background 0.3s;
}
body.cursor-hover .cursor-dot { width: 14px; height: 14px; background: var(--red); }
body.cursor-hover .cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--red);
  background: var(--red-glow-sm);
}

/* ── Layout ── */
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-py) 0; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out),
              padding 0.3s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  padding: 14px 0;
}
/* While nav is transparent (over the film section), keep links white and
   readable with a very subtle text-shadow */
.nav:not(.scrolled) .nav-link,
.nav:not(.scrolled) .nav-cart-btn { color: var(--white-90); }
.nav:not(.scrolled) .nav-link { text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white-60);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: flex; align-items: center; gap: 20px;
}
.cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--white-60);
  transition: color 0.3s;
  cursor: pointer;
}
.cart-btn:hover { color: var(--white); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transform: scale(0);
  transition: transform 0.3s var(--ease-out);
}
.cart-count.visible { transform: scale(1); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 6px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700; font-family: var(--font-display);
  letter-spacing: -0.5px;
  color: var(--white-30);
  transition: color 0.3s, transform 0.3s;
}
.mobile-menu a:hover { color: var(--white); transform: translateX(8px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none; outline: none;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn.btn-primary:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-30);
}
.btn-outline:hover {
  border-color: var(--white);
  background: var(--white-10);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--red);
  padding: 0; letter-spacing: 0.5px;
  font-size: 13px; font-weight: 600;
}
.btn-ghost svg { transition: transform 0.3s var(--ease-out); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ── Section Headers ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}
.section-title .accent { color: var(--red); }
.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--white-60);
  line-height: 1.7;
  max-width: 560px;
}

/* ── Film Section (Hero + Scroll Timeline unified) ── */
.film-section {
  position: relative;
  height: 800vh;   /* 100vh hero + 700vh stages */
}
.film-sticky {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

/* Video fills the sticky viewport */
.film-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.film-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/*
  Overlay: bottom-left content layout.
  Heavy bottom band  → text in the corner card is always legible.
  Soft top band      → nav links stay readable.
  Gentle left fade   → extra depth for the card side.
  Centre/right stays clear so the food video shines through.
*/
.film-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(8,8,8,0.88) 0%,
      rgba(8,8,8,0.25) 32%,
      transparent 58%),
    linear-gradient(to bottom,
      rgba(8,8,8,0.50) 0%,
      transparent 20%),
    linear-gradient(to right,
      rgba(8,8,8,0.35) 0%,
      transparent 42%);
}

/* Hero layer — bottom edge, card on left / stats on right */
.film-hero {
  position: absolute; inset: 0; z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between; /* card bottom-left, stats bottom-right */
  pointer-events: auto;
  padding: clamp(30px,5vw,60px) clamp(24px,5vw,70px);
  gap: 24px;
}

/* Hero content — frosted card, left-aligned */
.hero-content {
  position: relative;
  /* Override .container's centering/padding — card has its own */
  width: auto;
  max-width: 480px;
  margin: 0;
  padding: 26px 30px 22px;
  text-align: left;
  background: rgba(8,8,8,0.72);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-glow-sm);
  border: 1px solid rgba(232,41,28,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--white-60);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 0 22px;
}
.hero-ctas {
  display: flex; align-items: center; justify-content: flex-start; gap: 12px;
  flex-wrap: wrap;
}
/* ── Bottom-right cluster: macros + scroll indicator ── */
.hero-br {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  pointer-events: none; /* decorative */
}
.hero-br-sep {
  width: 1px;
  height: 38px;
  background: var(--white-10);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--white-30);
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--white-30), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Macro float — standalone stats cluster, no card border */
.hero-macro-float {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Scroll stages 1-7 — all bottom-left corner cards ── */
.scroll-stage {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  align-items: flex-end;        /* bottom */
  justify-content: flex-start;  /* left  */
  opacity: 0;
  pointer-events: none;
  padding: clamp(30px,5vw,60px) clamp(24px,5vw,70px);
  background: transparent;      /* frosted card lives on .stage-content */
}

/* ── Stage 7 — centred full-viewport finale ── */
/* .scroll-stage.stage-7 has specificity 0-2-0, overrides default .scroll-stage */
.scroll-stage.stage-7 {
  align-items: center;
  justify-content: center;
  background: rgba(8,8,8,0.55);   /* full-screen cinematic veil */
}
/*
  Use 3-class selector (.scroll-stage.stage-7 .stage-content = specificity 0-3-0)
  to beat .stage-content.stage-center (0-2-0) which is defined later in the file.
  Without this, the general stage-content rules would win on text-align/background.
*/
.scroll-stage.stage-7 .stage-content {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: center !important;
  max-width: 540px;
}
.scroll-stage.stage-7 .stage-logo {
  width: clamp(140px, 22vw, 260px);
  margin: 0 auto 18px;
  display: block;
}
.scroll-stage.stage-7 .stage-sub {
  margin-bottom: 28px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--white-60);
}
/* "Order Now" button in stage 7 — white outline so it pops on dark overlay */
.btn-stage7 {
  border-color: var(--white-60);
  color: var(--white);
}
.btn-stage7:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

/* ── Product Cards ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}
.product-card {
  background: var(--dark-2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--white-10);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
  will-change: transform;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(232,41,28,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px var(--red-glow-sm);
  transform: translateY(-6px);
}
.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,8,8,0.6) 100%);
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.product-quick-add {
  position: absolute; bottom: 14px; right: 14px;
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  border: none; cursor: pointer;
  color: var(--white);
}
.product-card:hover .product-quick-add { opacity: 1; transform: scale(1); }
.product-quick-add:hover { background: var(--red-light); transform: scale(1.1) !important; }
.product-quick-add.added { background: #22c55e; }

.product-card-body {
  padding: 20px;
}
.product-card-name {
  font-size: 16px; font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.product-card:hover .product-card-name { color: var(--white); }
.product-card-desc {
  font-size: 13px; color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-macros {
  display: flex; gap: 14px;
  margin-bottom: 16px;
}
.macro-chip {
  font-size: 11px; color: var(--gray-light);
  background: var(--white-10);
  padding: 4px 8px; border-radius: 3px;
}
.macro-chip span { color: var(--white); font-weight: 600; }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--white-10);
  padding-top: 14px;
}
.product-card-price {
  font-size: 20px; font-weight: 800;
  color: var(--white);
}
.product-card-price .currency { font-size: 13px; font-weight: 500; color: var(--gray-light); margin-left: 3px; }
.product-card-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--red);
  display: flex; align-items: center; gap: 5px;
  transition: gap 0.3s;
}
.product-card:hover .product-card-link { gap: 8px; }

/* ── Category Filters ── */
.category-filters {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--white-10);
  border-radius: 100px;
  background: transparent;
  color: var(--white-60);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.filter-btn:hover {
  border-color: var(--white-30); color: var(--white);
}
.filter-btn.active {
  background: var(--red); border-color: var(--red); color: var(--white);
}

/* ── Category Section ── */
.category-section { margin-bottom: 80px; }
.category-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px;
}
.category-title-group { display: flex; align-items: center; gap: 16px; }
.category-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
}
.category-count {
  font-size: 13px; color: var(--gray-light);
  background: var(--white-10);
  padding: 4px 12px; border-radius: 100px;
}

/* ── Product Detail ── */
.product-detail {
  padding-top: 100px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.product-detail-img {
  position: sticky; top: 100px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--white-10);
  aspect-ratio: 1;
}
.product-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-detail-img:hover img { transform: scale(1.04); }

.product-detail-badge {
  display: inline-flex;
  background: var(--red);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px;
  margin-bottom: 20px;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.product-detail-desc {
  font-size: 16px; color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 36px;
}
.macro-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 36px;
}
.macro-box {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.3s;
}
.macro-box:hover { border-color: var(--red-glow); }
.macro-value {
  font-size: 22px; font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.macro-value .unit { font-size: 13px; font-weight: 400; color: var(--gray-light); }
.macro-label { font-size: 11px; color: var(--gray-light); letter-spacing: 1px; text-transform: uppercase; }
.macro-box.calories .macro-value { color: var(--red); }

.product-detail-price {
  font-size: 40px; font-weight: 900;
  margin-bottom: 28px;
}
.product-detail-price .egp { font-size: 20px; font-weight: 500; color: var(--gray-light); margin-left: 6px; }

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: var(--white);
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border: none; border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.add-to-cart-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  opacity: 0; transition: opacity 0.3s;
}
.add-to-cart-btn:hover::before { opacity: 1; }
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-red); }
.add-to-cart-btn.added { background: #22c55e; }

/* ── Cart ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-light);
  padding: 0 0 20px;
  border-bottom: 1px solid var(--white-10);
}
.cart-item {
  display: grid; grid-template-columns: 80px 1fr auto auto auto;
  align-items: center; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--white-10);
  transition: opacity 0.3s;
}
.cart-item-img { border-radius: 8px; overflow: hidden; width: 80px; height: 80px; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.cart-item-cat { font-size: 12px; color: var(--gray-light); text-transform: capitalize; }
.cart-qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--white-10); border-radius: 6px; overflow: hidden;
}
.qty-btn {
  width: 36px; height: 36px;
  background: var(--dark-2); border: none;
  color: var(--white); cursor: pointer;
  font-size: 18px; font-weight: 300;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--red); }
.qty-val { width: 40px; text-align: center; font-size: 15px; font-weight: 600; }
.cart-item-price { font-size: 18px; font-weight: 700; min-width: 80px; text-align: right; }
.cart-remove { background: none; border: none; color: var(--gray); cursor: pointer; padding: 8px; transition: color 0.2s; }
.cart-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 32px;
  position: sticky; top: 100px;
}
.cart-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--white-10);
  font-size: 14px; color: var(--white-60);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 8px;
  font-size: 20px; font-weight: 800;
}

/* ── Forms ── */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 10px;
}
.form-input {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 15px; color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow-sm);
}
.form-input::placeholder { color: var(--gray); }
.form-input-readonly {
  background: var(--dark-3);
  color: var(--white-60);
  cursor: not-allowed;
  border-color: var(--white-10);
}
.form-input-readonly:focus {
  border-color: var(--white-10);
  box-shadow: none;
}
textarea.form-input { resize: vertical; min-height: 120px; }

/* ── About ── */
.about-hero {
  padding-top: 130px;
  padding-bottom: 80px;
  position: relative;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 40px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--white-10);
  aspect-ratio: 3/4;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact ── */
.contact-header { padding-top: 130px; padding-bottom: 60px; }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px; margin-bottom: 60px;
}
.location-card {
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 12px; padding: 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.location-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.location-icon {
  width: 40px; height: 40px;
  background: var(--red-glow-sm);
  border: 1px solid var(--red-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--red);
}
.location-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.location-area { font-size: 13px; color: var(--gray-light); }

/* ── Footer ── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--white-10);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-logo { height: 32px; width: auto; margin-bottom: 20px; }
.footer-desc { font-size: 14px; color: var(--white-60); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-60); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--white-60);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  background: var(--white-10);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-60);
  transition: all 0.3s;
  font-size: 14px;
}
.social-link:hover { background: var(--red); color: var(--white); }

/* ── Success Page ── */
.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.success-card {
  text-align: center;
  max-width: 500px;
  padding: 60px 40px;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 20px;
}
.success-icon {
  width: 80px; height: 80px;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  color: #22c55e; font-size: 32px;
}

/* ── Reveal animations (initial state) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.9); }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 30px; right: 30px; z-index: 5000;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-card);
  transform: translateY(100px); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  min-width: 260px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; }

/* ── Keyframes ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 30px var(--red-glow); }
  50%       { box-shadow: 0 0 60px var(--red-glow), 0 0 100px var(--red-glow-sm); }
}

/* ── Page transition ── */
#page-transition {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--red);
  transform: translateX(-100%);
  pointer-events: none;
}

/* ── Parallax ── */
.parallax-wrap { overflow: hidden; }
.parallax-inner { will-change: transform; }

/* ── Tilt cards ── */
.tilt-card { transform-style: preserve-3d; transform: perspective(1000px); }

/* ── Related products ── */
.related-section { margin-top: 80px; padding-top: 60px; border-top: 1px solid var(--white-10); }
.related-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 36px; }

/* ── Checkout layout ── */
.checkout-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 60px; align-items: start;
}
.checkout-summary {
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 12px; padding: 32px;
  position: sticky; top: 100px;
}
.checkout-summary-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--white-10);
}
.checkout-summary-img { width: 52px; height: 52px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.checkout-summary-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-summary-name { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.checkout-summary-qty { font-size: 12px; color: var(--gray-light); }
.checkout-summary-price { margin-left: auto; font-size: 15px; font-weight: 700; }

/* ── Empty cart ── */
.cart-empty {
  text-align: center; padding: 100px 0;
}
.cart-empty-icon { font-size: 80px; margin-bottom: 24px; opacity: 0.3; }
.cart-empty-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cart-empty-sub { font-size: 15px; color: var(--white-60); margin-bottom: 32px; }

/* ============================================================
   WAYFIT — Extended Component Styles
   (appended to supplement the base design system)
   ============================================================ */

/* ── Utilities ── */
.section-py   { padding: var(--section-py) 0; }
.section-py-sm { padding: clamp(60px, 6vw, 100px) 0; }
.section-header { text-align: center; margin-bottom: clamp(50px, 6vw, 80px); }
.section-header.section-header-left { text-align: left; }
.section-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--white-60);
  line-height: 1.75;
  max-width: 580px;
  margin: 1rem auto 0;
}
.section-header-left .section-sub { margin-left: 0; }
h2[data-split], .page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

/* ── Buttons extended ── */
.btn-sm  { padding: 10px 22px; font-size: 11px; }
.btn-lg  { padding: 18px 44px; font-size: 14px; }
.btn-xl  { padding: 20px 52px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px; border-radius: 50%; }
.btn-success { background: #22c55e !important; }
.btn-danger  { color: #ef4444 !important; }

/* ── Loader (reconciled with PHP/JS) ── */
.loader-logo  { animation: fadeInUp 0.7s var(--ease-out) 0.3s both; }
.loader-bar-wrap {
  width: 220px; height: 2px;
  background: var(--dark-3); border-radius: 1px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
  transition: width 0.3s var(--ease-out);
  border-radius: 1px;
}
.loader-footer {
  display: flex; align-items: center; justify-content: space-between;
  width: 220px;
}
.loader-progress { font-size: 11px; font-weight: 700; color: var(--red); }

/* ── Page transition overlay ── */
.page-transition {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--red);
  transform-origin: bottom center;
  pointer-events: none;
}

/* ── Nav (extended) ── */
.nav-actions {
  display: flex; align-items: center; gap: 16px;
}
.nav-cart-btn {
  position: relative;
  background: none; border: none; cursor: pointer;
  color: var(--white-60); padding: 6px;
  display: flex; align-items: center;
  transition: color 0.3s;
}
.nav-cart-btn:hover { color: var(--white); }
.cart-badge {
  position: absolute; top: -4px; right: -6px;
  width: 18px; height: 18px;
  background: var(--red); border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.nav-order-btn { display: flex; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mini Cart Drawer ── */
.mini-cart {
  position: absolute; top: calc(100% + 8px); right: clamp(16px, 4vw, 60px);
  width: 360px;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 500;
}
.mini-cart.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.mini-cart-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.mini-cart-header h3 { font-size: 15px; font-weight: 700; }
.mini-cart-count {
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px; margin-left: 8px;
}
.mini-cart-close {
  background: none; border: none; color: var(--gray-light);
  cursor: pointer; padding: 4px; transition: color 0.2s;
}
.mini-cart-close:hover { color: var(--white); }
.mini-cart-items { min-height: 60px; max-height: 300px; overflow-y: auto; margin-bottom: 18px; }
.mini-cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--white-10);
  font-size: 13px;
}
.mini-cart-item-info { flex: 1; }
.mini-cart-item-name { font-weight: 600; margin-bottom: 2px; }
.mini-cart-item-qty  { color: var(--gray-light); font-size: 12px; }
.mini-cart-item-price { font-weight: 700; }
.mini-cart-remove {
  background: none; border: none; color: var(--gray);
  cursor: pointer; font-size: 16px; transition: color 0.2s;
  line-height: 1; padding: 0 4px;
}
.mini-cart-remove:hover { color: var(--red); }
.mini-cart-empty { color: var(--gray-light); font-size: 14px; text-align: center; padding: 20px 0; }
.mini-cart-footer { display: flex; flex-direction: column; gap: 10px; }
.mini-cart-totals {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600; margin-bottom: 4px;
}
.mini-cart-total { font-size: 18px; font-weight: 800; color: var(--red); }
.mini-cart-overlay {
  position: fixed; inset: 0; z-index: 499; display: none;
}
.mini-cart.open ~ .mini-cart-overlay { display: block; }

/* ── Mobile Nav ── */
.nav-mobile {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  padding: 2rem;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile ul { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.nav-mobile a {
  font-size: clamp(24px, 8vw, 44px);
  font-weight: 800; font-family: var(--font-display);
  color: var(--white-60);
  transition: color 0.3s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--white); }
.nav-mobile .btn { margin-top: 16px; }

/* ── Footer (extended) ── */
.footer-brand { grid-column: 1; }
.footer-tagline {
  font-size: 14px; color: var(--white-60); line-height: 1.8;
  margin: 16px 0 24px;
}
.footer-heading {
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white-60); margin-bottom: 20px;
}
.footer-locations {
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; color: var(--white-60);
  margin-bottom: 16px;
}
.footer-locations li {
  display: flex; align-items: center; gap: 8px;
}
.footer-phones { display: flex; flex-direction: column; gap: 8px; }
.footer-phones a {
  font-size: 13px; color: var(--white-60);
  transition: color 0.3s;
}
.footer-phones a:hover { color: var(--red); }
.footer-credits { font-size: 12px; color: var(--gray); }

/* ── Hero extras ── */
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--red); border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-title-red { color: var(--red); display: block; }
/* .hero-macro-float defined in Film Section block above */
.macro-float-item {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
}
.macro-float-item:first-child { padding-left: 0; }
.macro-float-item strong {
  display: inline;
  font-size: 15px; font-weight: 800;
  color: var(--red);
}
.macro-float-item span  {
  display: inline;
  font-size: 11px; color: var(--white-60); letter-spacing: 0.5px;
}
.macro-float-divider { width: 1px; height: 20px; background: var(--white-10); flex-shrink: 0; }

/* ── Scroll stage content — frosted card, bottom-left ── */
.stage-content.stage-center {
  text-align: left;
  max-width: 420px;
  background: rgba(8,8,8,0.72);
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* Icon is compact inside the card */
.stage-icon { font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; line-height: 1; }
.stage-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 900; line-height: 1.05; letter-spacing: -1.5px;
  margin-bottom: 10px;
}
.stage-sub { font-size: clamp(13px, 1.3vw, 15px); color: var(--white-60); line-height: 1.7; }
.stage-macros {
  display: flex; gap: 16px; justify-content: flex-start;
  margin-bottom: 16px; flex-wrap: wrap;
}
.stage-macro-item { text-align: left; }
.smac-val { display: block; font-size: clamp(20px, 2.5vw, 32px); font-weight: 900; line-height: 1; }
.smac-val.red { color: var(--red); }
.smac-label { font-size: 11px; color: var(--white-60); letter-spacing: 2px; text-transform: uppercase; }
.stage-logo { width: clamp(160px, 25vw, 280px); margin: 0 auto 24px; }

/* ── Marquee ── */
.marquee {
  overflow: hidden; border-top: 1px solid var(--white-10); border-bottom: 1px solid var(--white-10);
  padding: 18px 0;
  background: var(--dark);
}
.marquee-track {
  display: flex; align-items: center; width: max-content;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white-60);
  padding: 0 24px; white-space: nowrap;
}
.marquee-dot { color: var(--red); font-size: 10px; }

/* ── Stats section ── */
.stats-section { background: var(--dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.stats-grid-lg { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--red); line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 13px; color: var(--white-60); }

/* ── Categories ── */
.category-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}
.category-card {
  position: relative; overflow: hidden;
  border-radius: 14px; border: 1px solid var(--white-10);
  background: var(--dark-2);
  display: block;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.category-card:hover { border-color: rgba(232,41,28,0.4); transform: translateY(-6px); }
.category-card-tall { grid-row: span 1; }
.category-card-img { aspect-ratio: 3/4; overflow: hidden; }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.category-card:hover .category-card-img img { transform: scale(1.07); }
.category-card-body { padding: 18px 20px 22px; }
.category-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.category-card-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.category-card-body p  { font-size: 13px; color: var(--white-60); line-height: 1.5; margin-bottom: 14px; }
.category-link { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: 1px; }

/* ── Spotlight ── */
.spotlight-section { background: var(--dark); }
.spotlight-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.spotlight-content { max-width: 560px; }
.spotlight-desc { font-size: 15px; color: var(--white-60); line-height: 1.8; margin: 1.5rem 0; }
.spotlight-macros { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2rem; }
.macro-pill {
  text-align: center;
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: 10px; padding: 14px 20px;
  min-width: 80px;
}
.macro-pill strong { display: block; font-size: 22px; font-weight: 900; color: var(--white); }
.macro-pill span   { font-size: 11px; color: var(--gray-light); letter-spacing: 1px; }
.spotlight-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.spotlight-price { font-size: 28px; font-weight: 900; color: var(--red); }
.spotlight-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--white-10);
  aspect-ratio: 1;
}
.spotlight-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--red); color: var(--white);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}

/* ── Mission ── */
.mission-section { background: var(--dark-2); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.mission-desc { font-size: 15px; color: var(--white-60); line-height: 1.85; margin-bottom: 1rem; }
.mission-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.pillar {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
  border-radius: 12px; padding: 24px;
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--red-glow); }
.pillar-icon { font-size: 28px; margin-bottom: 12px; }
.pillar h3   { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.pillar p    { font-size: 13px; color: var(--white-60); line-height: 1.6; }

/* ── Locations CTA ── */
.locations-mini-grid {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 3rem;
}
.location-mini {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 20px 28px;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  min-width: 150px;
  text-align: center;
  transition: border-color 0.3s;
}
.location-mini:hover { border-color: var(--red); }
.location-mini-icon { font-size: 28px; }
.location-mini strong { font-size: 14px; font-weight: 700; }
.location-mini span  { font-size: 12px; color: var(--gray-light); }
.locations-cta-actions {
  display: flex; align-items: center; flex-direction: column; gap: 16px;
  text-align: center;
}
.cta-phones { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.cta-phones a { font-size: 14px; color: var(--white-60); transition: color 0.3s; }
.cta-phones a:hover { color: var(--red); }

/* ── Social proof grid ── */
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 3rem;
}
.social-img-card {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.social-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.social-img-card:hover img { transform: scale(1.06); }
.social-img-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-size: 13px; font-weight: 600; color: var(--white);
}
.social-img-card:hover .social-img-overlay { opacity: 1; }
.social-proof-cta { text-align: center; }

/* ── Page hero ── */
.page-hero {
  padding-top: clamp(100px, 14vw, 160px);
  min-height: 40vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -2px; margin-bottom: 1rem;
}
.page-hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--white-60); line-height: 1.75;
  max-width: 560px;
}

/* ── Filter bar ── */
.filter-bar.sticky {
  position: sticky; top: 68px; z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--white-10);
  padding: 14px 0;
}
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px;
  background: transparent; border: 1px solid var(--white-10);
  border-radius: 100px;
  color: var(--white-60); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s var(--ease-out);
}
.filter-tab:hover  { border-color: var(--white-30); color: var(--white); }
.filter-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Product section (products.php) ── */
.product-section { margin-bottom: clamp(60px, 8vw, 100px); }
.product-section-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.product-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 800;
}
.product-section-count {
  background: var(--white-10); border-radius: 100px;
  padding: 4px 14px; font-size: 12px; color: var(--gray-light);
}
.product-card-img-link { display: block; }
.product-card-meta {
  display: flex; gap: 12px; margin-bottom: 10px;
}
.product-calories { font-size: 11px; color: var(--gray-light); background: var(--white-10); padding: 3px 8px; border-radius: 4px; }
.product-protein  { font-size: 11px; color: var(--red); background: var(--red-glow-sm); padding: 3px 8px; border-radius: 4px; }
.product-price { font-size: 20px; font-weight: 800; }
.product-price small { font-size: 13px; font-weight: 500; color: var(--gray-light); margin-left: 2px; }
.product-card-actions { display: flex; gap: 8px; }
.quick-add-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(232,41,28,0.9);
  color: var(--white);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 12px; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.product-card-img:hover .quick-add-overlay,
.product-card:hover .quick-add-overlay { transform: translateY(0); }

/* ── CTA strip ── */
.cta-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: clamp(50px, 6vw, 80px) 0;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 900; letter-spacing: -1px;
}
.cta-strip-text p { font-size: 15px; color: var(--white-60); margin-top: 6px; }
.cta-strip-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Breadcrumb ── */
.breadcrumb-nav { padding: 100px 0 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--gray-light);
  flex-wrap: wrap;
}
.breadcrumb li a { color: var(--gray-light); transition: color 0.2s; }
.breadcrumb li a:hover { color: var(--white); }
.breadcrumb li span { color: var(--gray); }
.breadcrumb [aria-current="page"] { color: var(--white); }

/* ── Product detail (extended) ── */
.product-detail-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--white-10); aspect-ratio: 1;
}
.product-detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.product-detail-img-wrap:hover img { transform: scale(1.04); }
.product-detail-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px;
}
.product-detail-category { font-size: 12px; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.product-detail-category a { color: inherit; transition: opacity 0.2s; }
.product-detail-category a:hover { opacity: 0.7; }
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px;
}
.product-detail-short { font-size: 16px; color: var(--white-60); line-height: 1.7; margin-bottom: 28px; }
.product-detail-long  { margin-bottom: 32px; }
.product-detail-long p { font-size: 15px; color: var(--white-60); line-height: 1.9; }
.macro-box-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 28px;
}
.macro-box {
  background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: 10px; padding: 16px 12px; text-align: center;
  transition: border-color 0.3s;
}
.macro-box:hover { border-color: var(--red-glow); }
.macro-value { font-size: 20px; font-weight: 900; display: block; line-height: 1; margin-bottom: 6px; }
.macro-label { font-size: 10px; color: var(--gray-light); letter-spacing: 1.5px; text-transform: uppercase; }
.macro-box.calories .macro-value { color: var(--red); }
.product-detail-purchase { margin-bottom: 24px; }
.product-detail-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.price-amount { font-size: 40px; font-weight: 900; }
.price-currency { font-size: 16px; font-weight: 500; color: var(--gray-light); }
.product-qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--white-10); border-radius: 8px;
  overflow: hidden; width: fit-content; margin-bottom: 20px;
}
.qty-input {
  width: 52px; text-align: center;
  background: transparent; border: none; color: var(--white);
  font-size: 16px; font-weight: 700; padding: 0;
  outline: none; -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.product-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product-trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge { font-size: 12px; color: var(--gray-light); display: flex; align-items: center; gap: 6px; }
.trust-badge span { color: #22c55e; font-weight: 700; }
.products-grid-related { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* ── Cart page ── */
.cart-page { min-height: 60vh; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  gap: 16px;
}
.cart-empty-icon { font-size: 72px; opacity: 0.25; }
.cart-empty h2   { font-size: clamp(22px, 3vw, 36px); font-weight: 800; }
.cart-empty p    { font-size: 15px; color: var(--white-60); }
.cart-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: clamp(30px, 5vw, 60px); align-items: start;
}
.cart-items-header {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 24px; padding-bottom: 14px;
  border-bottom: 1px solid var(--white-10);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gray-light);
}
.cart-item {
  display: grid; grid-template-columns: 72px 1fr auto auto 36px;
  gap: 20px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--white-10);
}
.cart-item-img { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name  { font-size: 15px; font-weight: 700; }
.cart-item-price { font-size: 13px; color: var(--gray-light); margin-top: 3px; }
.cart-item-controls { display: flex; align-items: center; gap: 0; border: 1px solid var(--white-10); border-radius: 6px; overflow: hidden; }
.qty-btn {
  width: 32px; height: 32px;
  background: var(--dark-3); border: none; color: var(--white);
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--red); }
.qty-num { width: 36px; text-align: center; font-size: 14px; font-weight: 700; }
.cart-item-subtotal { font-size: 16px; font-weight: 800; text-align: right; }
.cart-item-remove {
  background: none; border: none; color: var(--gray);
  cursor: pointer; padding: 6px; transition: color 0.2s;
  display: flex; align-items: center;
}
.cart-item-remove:hover { color: var(--red); }
.cart-items-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
}
.cart-loading { color: var(--gray-light); padding: 40px 0; text-align: center; font-size: 14px; }
.cart-col-summary { position: sticky; top: 100px; }
.cart-summary-card {
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 14px; padding: 28px;
}
.cart-summary-title { font-size: 17px; font-weight: 800; margin-bottom: 20px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--white-60);
  padding: 10px 0; border-bottom: 1px solid var(--white-10);
}
.cart-summary-divider { height: 1px; background: var(--white-10); margin: 8px 0; }
.cart-summary-total-row { font-size: 18px; font-weight: 800; padding-top: 16px; margin-top: 4px; border-top: 1px solid var(--white-30); color: var(--white); }
.cart-summary-total { color: var(--red); font-size: 22px; }
.cart-checkout-btn { margin-top: 16px; }
.cart-trust-row {
  display: flex; justify-content: space-around;
  padding-top: 14px; margin-top: 14px;
  border-top: 1px solid var(--white-10);
  font-size: 11px; color: var(--gray-light);
}
.cart-promo {
  margin-top: 16px;
  background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: 10px; padding: 16px;
}
.cart-promo-text { font-size: 13px; color: var(--white-60); margin-bottom: 10px; }
.cart-locations-list { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--gray-light); }
.cart-subtotal { font-weight: 700; color: var(--white); }
.cart-delivery  { font-size: 13px; color: #22c55e; font-weight: 600; }

/* ── Checkout page ── */
.checkout-page { padding-top: 0; }
.checkout-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: clamp(30px, 5vw, 60px); align-items: start;
}
.checkout-col-summary { position: sticky; top: 100px; }
.checkout-section { margin-bottom: 40px; }
.checkout-section-title {
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px; color: var(--white-60);
}
.checkout-step-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 900;
  color: var(--red); line-height: 1;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group-full { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; }
.form-textarea { resize: vertical; min-height: 120px; }
.input-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.15) !important; }
.location-radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.location-radio input[type="radio"] { display: none; }
.location-radio-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--dark-2); border: 1.5px solid var(--white-10);
  border-radius: 10px; padding: 16px 18px;
  cursor: pointer; transition: all 0.25s var(--ease-out);
}
.location-radio:has(input:checked) .location-radio-card {
  border-color: var(--red);
  background: var(--red-glow-sm);
}
.location-radio-card:hover { border-color: var(--white-30); }
.location-radio-icon { font-size: 24px; }
.location-radio-info strong { display: block; font-size: 14px; font-weight: 700; }
.location-radio-info span  { font-size: 12px; color: var(--gray-light); }
.location-radio-check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--white-30);
  border-radius: 50%; margin-left: auto;
  transition: all 0.25s var(--ease-out);
  flex-shrink: 0;
}
.location-radio:has(input:checked) .location-radio-check {
  background: var(--red); border-color: var(--red);
}
.checkout-submit { margin-top: 32px; }
.checkout-terms  { font-size: 12px; color: var(--gray-light); margin-top: 12px; text-align: center; line-height: 1.6; }
.checkout-summary-card {
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 14px; padding: 28px;
}
.checkout-summary-title { font-size: 17px; font-weight: 800; margin-bottom: 20px; }
.checkout-summary-items { margin-bottom: 16px; }
.checkout-summary-loading { color: var(--gray-light); font-size: 14px; text-align: center; padding: 20px 0; }
.checkout-summary-divider { height: 1px; background: var(--white-10); margin: 10px 0; }
.checkout-summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; color: var(--white-60); padding: 8px 0;
}
.checkout-summary-total-row { font-size: 18px; font-weight: 800; color: var(--white); padding-top: 14px; margin-top: 4px; border-top: 1px solid var(--white-30); }
.checkout-total   { color: var(--red); font-size: 22px; }
.checkout-subtotal { font-weight: 700; color: var(--white); }
.checkout-summary-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--white-10); font-size: 13px;
}
.checkout-summary-item-qty  { color: var(--red); font-weight: 700; }
.checkout-summary-item-name { flex: 1; }
.checkout-summary-item-price { font-weight: 700; }
.checkout-summary-trust {
  display: flex; flex-direction: column; gap: 10px;
  margin: 16px 0; padding-top: 16px; border-top: 1px solid var(--white-10);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--white-60); }
.checkout-summary-contact {
  margin-top: 16px; border-top: 1px solid var(--white-10); padding-top: 16px;
  font-size: 13px; color: var(--gray-light);
}
.checkout-summary-contact a { display: block; color: var(--white-60); margin-top: 6px; transition: color 0.2s; }
.checkout-summary-contact a:hover { color: var(--red); }
.checkout-empty-msg { font-size: 14px; color: var(--gray-light); text-align: center; padding: 20px 0; }
.checkout-empty-msg a { color: var(--red); }

/* ── Success page ── */
.success-page { padding-top: clamp(100px, 12vw, 160px); min-height: 80vh; }
.success-wrap {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.success-icon {
  width: 80px; height: 80px; margin: 0 auto 32px;
}
.checkmark {
  width: 80px; height: 80px;
}
.checkmark-circle {
  stroke: #22c55e; stroke-width: 2;
  stroke-dasharray: 166; stroke-dashoffset: 166;
  animation: checkCircle 0.9s cubic-bezier(0.65,0,0.45,1) 0.2s forwards;
}
.checkmark-check {
  stroke: #22c55e; stroke-width: 2;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: checkTick 0.5s cubic-bezier(0.65,0,0.45,1) 0.9s forwards;
}
@keyframes checkCircle { to { stroke-dashoffset: 0; } }
@keyframes checkTick   { to { stroke-dashoffset: 0; } }
.success-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px); font-weight: 900; margin-bottom: 10px; }
.success-order-id { font-size: 12px; color: var(--gray-light); letter-spacing: 2px; margin-bottom: 20px; }
.success-message { font-size: 16px; color: var(--white-60); line-height: 1.7; margin-bottom: 16px; }
.success-location {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 10px; padding: 12px 20px;
  font-size: 14px; font-weight: 600; margin-bottom: 28px;
}
.success-order-summary {
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 14px; padding: 24px; margin: 28px 0; text-align: left;
}
.success-summary-title { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white-60); margin-bottom: 16px; }
.success-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--white-10); font-size: 14px;
}
.success-item:last-child { border-bottom: none; }
.success-item-qty  { color: var(--red); font-weight: 700; }
.success-item-name { flex: 1; }
.success-item-price { font-weight: 700; }
.success-total {
  display: flex; justify-content: space-between;
  font-size: 16px; font-weight: 800;
  padding-top: 14px; margin-top: 6px;
  border-top: 1px solid var(--white-30);
}
.success-followup { font-size: 14px; color: var(--white-60); margin: 20px 0; line-height: 1.7; }
.success-actions { display: flex; gap: 16px; justify-content: center; margin: 28px 0; flex-wrap: wrap; }
.success-quote {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid var(--white-10);
  color: var(--gray-light); font-size: 14px; line-height: 1.8;
}
.success-quote cite { display: block; margin-top: 8px; font-size: 12px; color: var(--gray); font-style: normal; }

/* ── About page ── */
.about-origin-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about-origin-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 44px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 24px;
}
.about-origin-text p { font-size: 15px; color: var(--white-60); line-height: 1.9; margin-bottom: 14px; }
.about-image-wrap { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--white-10); aspect-ratio: 4/5; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-image-label {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(8,8,8,0.8); backdrop-filter: blur(8px);
  border-radius: 8px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: var(--white-60);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  perspective: 1200px;
}
.value-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid var(--white-10);
  border-radius: 14px;
  padding: 28px;
  transform-style: preserve-3d;
  transition:
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.value-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 20%),
    rgba(232, 41, 28, 0.1),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.value-card:hover {
  border-color: rgba(232, 41, 28, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 41, 28, 0.1);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover::after  { opacity: 1; }
.value-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
  transform-origin: center bottom;
}
.value-card:hover .value-icon {
  transform: scale(1.12) rotate(-6deg);
}
.value-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.value-card:hover h3 { color: var(--red-light); }
.value-card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.7;
  transition: color 0.3s;
}
.value-card:hover p { color: var(--white-90); }

/* About — stats row centered */
.about-stats .stats-grid-lg {
  grid-template-columns: repeat(4, 1fr);
  max-width: 960px;
  margin-inline: auto;
  width: 100%;
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 900px) {
  .about-stats .stats-grid-lg { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-stats .stats-grid-lg { grid-template-columns: 1fr; max-width: 320px; }
}
.timeline {
  position: relative; max-width: 700px; margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute; left: 20px; top: 0; bottom: 0;
  width: 1px; background: var(--white-10);
}
.timeline-item {
  display: flex; gap: 28px; margin-bottom: 40px;
}
.timeline-marker {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 2px solid var(--red); border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.timeline-marker::after {
  content: ''; width: 10px; height: 10px;
  background: var(--red); border-radius: 50%;
}
.timeline-content { flex: 1; padding-bottom: 16px; }
.timeline-year { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; display: block; }
.timeline-content h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.timeline-content p  { font-size: 14px; color: var(--white-60); line-height: 1.7; }
.about-culture { background: var(--dark); }
.about-culture-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about-culture-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px); font-weight: 900;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px;
}
.about-culture-text p { font-size: 15px; color: var(--white-60); line-height: 1.85; margin-bottom: 14px; }
.about-culture-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.culture-img-card { border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.culture-img-card:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.culture-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.culture-img-card:hover img { transform: scale(1.06); }

/* ── Contact page ── */
.contact-phone-strip {
  background: var(--dark-2);
  border-bottom: 1px solid var(--white-10);
  padding: 16px 0;
}
.contact-phone-inner {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.contact-phone-label { font-size: 12px; color: var(--gray-light); letter-spacing: 1px; text-transform: uppercase; }
.contact-phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--white);
  transition: color 0.2s;
}
.contact-phone-link:hover { color: var(--red); }
.contact-phone-divider { color: var(--gray); }
.location-card {
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.location-card:hover { border-color: var(--red); transform: translateY(-4px); }
.location-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 0;
}
.location-card-icon { font-size: 32px; }
.location-card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray-light);
  background: var(--white-10); padding: 4px 10px; border-radius: 100px;
}
.location-card-body { padding: 16px 24px; flex: 1; }
.location-name { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.location-area {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-light); margin-bottom: 12px;
}
.location-desc { font-size: 13px; color: var(--white-60); line-height: 1.6; margin-bottom: 12px; }
.location-hours {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-light);
}
.location-card-footer { padding: 16px 24px 20px; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact-success {
  background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px; padding: 32px; text-align: center; margin-bottom: 24px;
}
.contact-success-icon {
  width: 50px; height: 50px;
  background: rgba(34,197,94,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #22c55e; font-size: 22px; font-weight: 700;
}
.contact-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.contact-success p  { font-size: 14px; color: var(--white-60); }
.contact-error {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px; padding: 14px 18px;
  font-size: 13px; color: #f87171; margin-bottom: 20px;
}
.contact-info-card {
  background: var(--dark-2); border: 1px solid var(--white-10);
  border-radius: 14px; padding: 28px;
}
.contact-info-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 24px; }
.contact-info-item {
  display: flex; gap: 16px; margin-bottom: 24px;
}
.contact-info-icon { font-size: 24px; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.contact-info-item span, .contact-info-item a {
  display: block; font-size: 13px; color: var(--white-60);
  margin-bottom: 3px; transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--red); }
.contact-social { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--white-10); }
.contact-social p { font-size: 12px; color: var(--gray-light); margin-bottom: 10px; }
.contact-social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-social-links .social-link { flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-img { position: static; max-width: 500px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .category-cards { grid-template-columns: 1fr 1fr; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-origin-grid { grid-template-columns: 1fr; }
  .about-culture-grid { grid-template-columns: 1fr; }
  .cart-col-summary { position: static; }
  .checkout-col-summary { position: static; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-order-btn { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-macro-float { display: none; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .macro-grid { grid-template-columns: repeat(2, 1fr); }
  .macro-box-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-item { grid-template-columns: 60px 1fr auto 36px; gap: 12px; }
  .cart-item-subtotal { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-scroll { display: none; }
  .category-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .social-proof-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .spotlight-actions { flex-direction: column; align-items: flex-start; }
  .location-radio-group { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .timeline::before { left: 16px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card-body { padding: 12px; }
  .product-card-desc { display: none; }
  .cart-item { grid-template-columns: 56px 1fr auto 32px; }
  .category-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card-img { aspect-ratio: 1; }
  .social-proof-grid { grid-template-columns: 1fr 1fr; }
  .macro-box-grid { grid-template-columns: repeat(2, 1fr); }
  .success-actions { flex-direction: column; }
  .about-culture-images { grid-template-columns: 1fr; }
}
