/* ============================================================
   WHITE LION LABS NL — Complete Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --red:        #a42325;
  --red-dark:   #8a1c1e;
  --black:      #0d0d0d;
  --dark:       #1a1a1a;
  --mid:        #2a2a2a;
  --border:     #333333;
  --light:      #f1f1f1;
  --white:      #ffffff;
  --text-muted: #888888;
  --text-light: #cccccc;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-h: 68px;
  --announce-h: 36px;
  --transition: 0.25s ease;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0 1rem;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 200;
  white-space: nowrap;
  overflow: hidden;
}
.announcement-bar span { opacity: 0.75; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
}

.navbar__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
}
.navbar__nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.4rem 0.75rem;
  transition: color var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--white); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after { transform: scaleX(1); }

.navbar__spacer { flex: 1; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
  border-radius: var(--radius);
}
.navbar__icon-btn:hover { color: var(--white); }
.navbar__icon-btn svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-body);
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Nav */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.navbar__mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(164,35,37,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2.5rem 4rem;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero__text { display: flex; flex-direction: column; gap: 1.5rem; }

.hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero__heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero__heading em {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(164,35,37,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  gap: 2rem;
  padding-top: 0.5rem;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__image::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(164,35,37,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__image img {
  max-height: 580px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0 2rem;
  flex-shrink: 0;
}
.marquee-dot {
  color: var(--text-muted);
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 5rem 2.5rem; }
.section--dark { background: var(--dark); }
.section--black { background: var(--black); }
.section--light { background: var(--light); color: var(--black); }
.section--red { background: var(--red); }

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.section__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}
.section--light .section__title { color: var(--black); }
.section__title span { color: var(--red); }

.section__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
  white-space: nowrap;
}
.section__link:hover { color: var(--red); }
.section--light .section__link { color: #666; }
.section--light .section__link:hover { color: var(--red); }

.container { max-width: 1280px; margin: 0 auto; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.products-scroll::-webkit-scrollbar { height: 4px; }
.products-scroll::-webkit-scrollbar-track { background: transparent; }
.products-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--dark);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 220px;
  flex-shrink: 0;
  border: 1px solid transparent;
}
.products-grid .product-card { min-width: unset; flex-shrink: unset; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: var(--border);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #111111;
  overflow: hidden;
}
.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.4s ease;
}
.product-card__image-wrap .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
}
.product-card:hover .product-card__image-wrap img.main-img { transform: scale(1.04); }
.product-card:hover .product-card__image-wrap .hover-img { opacity: 1; }

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.product-card__badge--sale { background: var(--red); }
.product-card__badge--new { background: #1a6b3c; }

.product-card__atc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}
.product-card:hover .product-card__atc { transform: translateY(0); }
.product-card__atc:hover { background: var(--red-dark); }

.product-card__info {
  padding: 0.9rem 1rem 1.1rem;
}
.product-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.section--light .product-card__name { color: var(--black); }

.product-card__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
}
.product-card__price-current {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}
.product-card__price-current.sale { color: var(--red); }
.section--light .product-card__price-current { color: var(--black); }
.product-card__price-original {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ============================================================
   THUNDERCAT SPOTLIGHT
   ============================================================ */
.spotlight {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.spotlight__image {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.spotlight__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(164,35,37,0.15) 0%, transparent 70%);
}
.spotlight__image img {
  max-height: 480px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}
.spotlight__content {
  padding: 4rem 3rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}
.spotlight__label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.spotlight__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}
.spotlight__price {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
}
.spotlight__price del {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 0.5rem;
}
.spotlight__desc {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}
.spotlight__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.spotlight__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-light);
}
.spotlight__feature::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.875rem;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  background: var(--dark);
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: var(--border);
}
.category-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  filter: brightness(0.35) saturate(0.8);
}
.category-card:hover .category-card__bg { transform: scale(1.06); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
}
.category-card__content { position: relative; z-index: 2; text-align: center; }
.category-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.category-card__link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================================
   BRAND STORY
   ============================================================ */
.brand-story {
  text-align: center;
  padding: 6rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.brand-story__eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.brand-story__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.brand-story__divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 1.5rem;
}
.brand-story__text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter {
  padding: 5rem 2.5rem;
  text-align: center;
}
.newsletter__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.newsletter__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.newsletter__form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__input:focus { border-color: rgba(255,255,255,0.7); }
.newsletter__btn {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.newsletter__btn:hover { background: var(--black); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.footer__logo img { height: 32px; width: auto; margin-bottom: 1rem; }
.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 1.5rem;
}
.footer__social { display: flex; gap: 0.5rem; }
.footer__social-link {
  width: 36px;
  height: 36px;
  background: var(--mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}
.footer__social-link:hover { background: var(--red); color: var(--white); }
.footer__social-link svg { width: 16px; height: 16px; }

.footer__col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--red); }

.footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__payments { display: flex; gap: 0.5rem; align-items: center; }
.footer__payment-badge {
  background: var(--mid);
  border-radius: 3px;
  padding: 4px 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--dark);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-drawer__count {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}
.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition);
  border-radius: var(--radius);
}
.cart-drawer__close:hover { color: var(--white); }
.cart-drawer__close svg { width: 20px; height: 20px; }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-drawer__items::-webkit-scrollbar { width: 4px; }
.cart-drawer__items::-webkit-scrollbar-track { background: transparent; }
.cart-drawer__items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
}
.cart-empty svg { width: 60px; height: 60px; opacity: 0.3; }
.cart-empty p { font-family: var(--font-head); font-size: 1.1rem; text-transform: uppercase; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--mid);
  border-radius: 6px;
}
.cart-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  background: #111;
}
.cart-item__info { min-width: 0; }
.cart-item__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}
.cart-item__flavor {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 24px;
  height: 24px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 3px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--border); }
.qty-num {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  text-align: right;
}
.cart-item__remove {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  text-align: right;
  margin-top: 0.3rem;
}
.cart-item__remove:hover { color: var(--red); }

.cart-drawer__footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-subtotal__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.cart-subtotal__amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.cart-shipping-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.cart-shipping-note span { color: var(--red); }
.btn-checkout {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition);
  cursor: pointer;
  border: none;
}
.btn-checkout:hover { background: var(--red-dark); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.page-header {
  background: var(--dark);
  padding: 3rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.page-header__inner { max-width: 1280px; margin: 0 auto; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--border); }
.page-header__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}

.filter-bar {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.filter-bar__spacer { flex: 1; }
.filter-sort {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.filter-sort:hover { border-color: var(--text-muted); }

.shop-grid-section {
  padding: 3rem 2.5rem 5rem;
  background: var(--black);
}
.shop-grid-section .container { max-width: 1280px; margin: 0 auto; }
.shop-grid-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  padding: 3rem 2.5rem;
  background: var(--black);
}
.product-detail__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery { display: flex; flex-direction: column; gap: 1rem; }
.product-gallery__main {
  aspect-ratio: 1;
  background: var(--dark);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 0.5rem; }
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-gallery__thumb.active { border-color: var(--red); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; gap: 1.25rem; }
.product-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.product-info__badge::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
}
.product-info__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 3vw, 2.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.product-info__price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product-info__price-current {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2rem;
  color: var(--red);
}
.product-info__price-original {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-info__sale-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.product-info__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.product-info__section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.flavor-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.flavor-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--text-light);
  background: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
}
.flavor-btn:hover, .flavor-btn.active {
  border-color: var(--red);
  color: var(--white);
  background: rgba(164,35,37,0.15);
}

.qty-selector { display: flex; align-items: center; gap: 0.75rem; }
.qty-selector__btn {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.qty-selector__btn:hover { background: var(--border); }
.qty-selector__num {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 36px;
  text-align: center;
}

.btn-atc-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-atc-full:hover { background: var(--red-dark); transform: translateY(-1px); }

.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.trust-badge {
  background: var(--dark);
  border-radius: 4px;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
}
.trust-badge__icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
.trust-badge__text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Product Tabs */
.product-tabs { padding: 3rem 2.5rem; background: var(--dark); border-top: 1px solid var(--border); }
.product-tabs__inner { max-width: 1280px; margin: 0 auto; }
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  gap: 0;
}
.tab-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.9rem 1.5rem;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--white); border-bottom-color: var(--red); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 1rem;
}
.tab-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 720px;
}
.tab-content li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.tab-content li::before { content: '→'; position: absolute; left: 0; color: var(--red); }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding: 3rem 2.5rem 5rem; background: var(--black); min-height: 60vh; }
.cart-page__inner { max-width: 1280px; margin: 0 auto; }
.cart-page__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.cart-page__layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: start; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.cart-table th:last-child { text-align: right; }
.cart-table td { padding: 1.25rem 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }

.cart-table__product { display: flex; align-items: center; gap: 1rem; }
.cart-table__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--dark);
  border-radius: 4px;
  flex-shrink: 0;
}
.cart-table__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cart-table__flavor {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cart-table__price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}
.cart-table__subtotal {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
}
.cart-table__remove {
  color: var(--text-muted);
  transition: color var(--transition);
  cursor: pointer;
}
.cart-table__remove:hover { color: var(--red); }

.order-summary {
  background: var(--dark);
  border-radius: 6px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.order-summary__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.order-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.order-summary__label { color: var(--text-muted); }
.order-summary__value { font-weight: 500; }
.order-summary__free { color: #4caf50; font-weight: 600; }
.order-summary__divider { border: none; border-top: 1px solid var(--border); margin: 1rem 0; }
.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.order-summary__total-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.order-summary__total-amount {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
}
.order-summary__note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--red); font-size: 1rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .hero__heading { font-size: clamp(2.5rem, 8vw, 4rem); }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__image { min-height: 280px; }
  .product-detail__inner { grid-template-columns: 1fr; gap: 2rem; }
  .cart-page__layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 680px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 1rem; }
  .section { padding: 3rem 1rem; }
  .announcement-bar { font-size: 0.65rem; gap: 1rem; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .newsletter__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero__content { padding: 4rem 1rem 3rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ═══════════════════════════════════
   ANNOUNCEMENT BAR LINK
═══════════════════════════════════ */
.announcement-bar__link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}
.announcement-bar__link:hover {
  border-color: #fff;
}

/* ═══════════════════════════════════
   SOCIAL WALL
═══════════════════════════════════ */
.social-wall .section__header { margin-bottom: 2rem; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
@media (max-width: 900px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }

.social-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--mid);
}
.social-card__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.social-card:hover .social-card__img { transform: scale(1.08); }
.social-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.social-card:hover .social-card__overlay { opacity: 1; }
.social-card__overlay svg { width: 28px; height: 28px; color: #fff; }
.social-card--cta {
  background: var(--red);
}
.social-card__cta-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.4rem; padding: 1rem;
  color: #fff; text-align: center;
}
.social-card__cta-inner svg { color: #fff; }
.social-card__cta-inner span {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.social-card__cta-inner em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════
   LIFESTYLE STRIP
═══════════════════════════════════ */
.lifestyle-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 500px;
}
@media (max-width: 900px) { .lifestyle-strip { grid-template-columns: 1fr; } }

.lifestyle-strip__item { position: relative; }
.lifestyle-strip__item--text {
  background: #0a0a0a;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
}
.lifestyle-strip__label {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.lifestyle-strip__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.lifestyle-strip__heading span { color: var(--red); }
.lifestyle-strip__sub {
  font-family: var(--font-body);
  font-size: 0.9rem; line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.lifestyle-strip__item--img {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.lifestyle-strip__item--red::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(164,35,37,0.25);
}

/* ═══════════════════════════════════
   VERKOOPPUNTEN TEASER
═══════════════════════════════════ */
.verkoop-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) { .verkoop-teaser__inner { grid-template-columns: 1fr; gap: 2rem; } }

.verkoop-teaser__store-list {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.verkoop-store {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--mid);
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-light);
  transition: border-color 0.2s;
}
.verkoop-store:hover { border-color: var(--red); }
.verkoop-store__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.verkoop-store strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-light);
}
.verkoop-store span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.verkoop-store--more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  border: 1px dashed var(--red);
  justify-content: center;
}
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}


/* ============================================================
   NEW PAGE COMPONENTS (contact, verzending, retour, faq,
   track-bestelling, checkout, bedankt, algemene-voorwaarden,
   privacy)
   ============================================================ */
/* === NEW PAGE COMPONENTS === */

.page-main {
  min-height: 60vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 820px; }

.content-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.content-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.6rem;
}
.content-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-section {
  padding: 3rem 0 4rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

/* --- Prose (long-form text) --- */
.prose h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin: 2rem 0 0.8rem;
  text-transform: uppercase;
}
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li {
  font-family: var(--font-body);
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.prose ul, .prose ol {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
  list-style: revert;
}
.prose ul li, .prose ol li {
  list-style: revert;
  margin-bottom: 0.4rem;
}
.prose a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.prose a:hover { color: var(--red); }
.prose strong { color: var(--white); font-weight: 600; }

/* --- Info grid (verzending cards) --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.info-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.info-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.info-card__icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.info-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.info-card__body p {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
}
.info-card__body strong { color: var(--red); font-weight: 700; }

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.contact-item__icon svg { width: 18px; height: 18px; }
.contact-item__label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-item__value {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}
a.contact-item__value:hover { color: var(--red); }

/* --- Forms --- */
.contact-form,
.checkout-form {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label,
.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label > span,
.checkout-form label > span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--red); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--white);
  list-style: none;
  position: relative;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 300;
  transition: transform var(--transition);
  margin-left: 1rem;
}
.faq-item[open] .faq-item__q::after {
  content: "−";
  transform: rotate(0deg);
}
.faq-item__a {
  padding: 0 1.4rem 1.2rem;
}
.faq-item__a p {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}
.faq-item__a a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
}

/* --- Checkout --- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.payment-method {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition);
}
.payment-method:hover { border-color: var(--red); }
.payment-method input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--red);
  background: transparent;
  padding: 0;
  border: none;
  margin: 0;
}
.payment-method__label {
  font-family: var(--font-body);
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}
.payment-method input[type="radio"]:checked + .payment-method__label { color: var(--red); }

/* --- Order summary --- */
.order-summary {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  position: sticky;
  top: 90px;
}
.order-summary__items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  max-height: 320px;
  overflow-y: auto;
}
.order-summary__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.8rem;
  align-items: center;
}
.order-summary__item img {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--mid);
}
.order-summary__item-name {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
}
.order-summary__item-meta {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}
.order-summary__item-price {
  font-family: var(--font-head);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.9rem;
}
.order-summary__row--total {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}
.order-summary__edit {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  transition: color var(--transition);
}
.order-summary__edit:hover { color: var(--red); }

/* --- Confirmation (bedankt) --- */
.confirmation-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.confirmation-card__number {
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.confirmation-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.confirmation-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.confirmation-step__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
}
.confirmation-step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.confirmation-step__sub {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- Primary button variants used on new pages --- */
.btn-primary--large {
  padding: 1rem 1.6rem;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}

/* ─── Bestsellers row: compacter (14 aug ismail req) ─── */
.products-scroll { gap: 1rem; }
.products-scroll .product-card { min-width: 180px; max-width: 200px; }
.products-scroll .product-card__info { padding: 0.7rem 0.85rem 0.85rem; }
.products-scroll .product-card__name { font-size: 0.9rem; margin-bottom: 0.3rem; }
.products-scroll .product-card__price-current { font-size: 0.95rem; }
.products-scroll .product-card__badge { font-size: 0.6rem; padding: 2px 6px; }
.products-scroll .product-card__atc { font-size: 0.75rem; padding: 0.55rem; }
@media (max-width: 700px) {
  .products-scroll .product-card { min-width: 155px; max-width: 170px; }
}
