/* ============================================
   BLOODRUSH — Stylesheet
   ============================================ */

:root {
  --bg: #080808;
  --surface: #111111;
  --surface2: #1a1a1a;
  --border: #222222;
  --red: #cc1a1a;
  --red-bright: #ff2a2a;
  --red-dim: #6b0e0e;
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #3a3a3a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 3px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; cursor: none; }
button { border: none; background: none; font-family: var(--font-body); cursor: none; }
*, *::before, *::after { cursor: none !important; }
ul { list-style: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red-dim); }

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(204, 26, 26, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
}
.cursor.grow { transform: translate(-50%, -50%) scale(2.5); opacity: 0.5; }
.cursor-follower.grow { width: 56px; height: 56px; opacity: 0.4; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 8rem 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
  cursor: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(204, 26, 26, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-spin {
  width: 14px; height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  font-size: 0.75rem;
  padding: 0.7rem 1.5rem;
}
.btn-white:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.75rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 0.25rem; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--r);
  transition: color 0.3s, background 0.3s;
}
.icon-btn:hover { color: var(--text); background: var(--surface); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s;
  transform-origin: center;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { overflow: hidden; }
.mobile-menu ul li a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  letter-spacing: 0.05em;
  color: var(--text);
  padding: 0.15rem 0;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.45s var(--ease-out), opacity 0.45s, color 0.3s;
}
.mobile-menu.open ul li a { transform: translateY(0); opacity: 1; }
.mobile-menu ul li:nth-child(1) a { transition-delay: 0.08s; }
.mobile-menu ul li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-menu ul li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu ul li:nth-child(4) a { transition-delay: 0.26s; }
.mobile-menu ul li a:hover { color: var(--red); }

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 65% 45%, rgba(140, 12, 12, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 85%, rgba(80, 5, 5, 0.18) 0%, transparent 55%),
    var(--bg);
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9rem 2rem 4rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red-dim);
  border-radius: 2px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 19rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.75rem;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(70px);
  animation: heroReveal 0.85s var(--ease-out) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.22s; }
.hero-line:nth-child(2) { animation-delay: 0.38s; }
.hero-line.outline {
  -webkit-text-stroke: 2px var(--red);
  color: transparent;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.55s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.7s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
}
.hero-scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.8); transform-origin: top; }
  60% { opacity: 1; transform: scaleY(1); }
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 2rem;
  color: #fff;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}
.section-header { margin-bottom: 3rem; }

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card { cursor: none; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--r);
  margin-bottom: 1rem;
}
.product-img-wrap img {
  transition: transform 0.65s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.product-card:hover .product-overlay { opacity: 1; }
.quick-size-pick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem;
  justify-content: center;
  z-index: 10;
}
.quick-sz {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.quick-sz:hover { border-color: var(--red); background: rgba(204,26,26,0.12); color: var(--red); }
.badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}
.badge.sold-out { background: var(--surface2); color: var(--text-muted); }
.badge.hot { background: #ff6600; }
.product-info h3 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-size: 0.9rem;
  font-weight: 600;
}
.swatches { display: flex; gap: 0.35rem; }
.swatch {
  display: block;
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: none;
  transition: transform 0.25s;
}
.swatch:hover { transform: scale(1.4); }
.center-action { text-align: center; margin-top: 3.5rem; }

/* ============================================
   BRAND STATEMENT
   ============================================ */
.brand-statement {
  padding: 2rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0e0505 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.brand-statement::before {
  content: 'BLOODRUSH';
  position: absolute;
  font-family: var(--font-display);
  font-size: 19vw;
  color: rgba(204, 26, 26, 0.035);
  letter-spacing: -0.02em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.statement {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.18;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.statement em {
  font-style: normal;
  color: var(--red);
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: visible;
}
.about-img-wrap img {
  border-radius: var(--r);
  position: relative;
  z-index: 1;
}
.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 65%;
  height: 65%;
  border: 1.5px solid var(--red-dim);
  border-radius: var(--r);
  z-index: 0;
}
.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 8rem 0;
  background: var(--surface);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0.75rem 0 0.75rem;
}
.newsletter-text p { color: var(--text-muted); }
.form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.form-row input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.9rem 1.25rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-row input:focus { border-color: var(--red); }
.form-row input::placeholder { color: var(--text-dim); }
.form-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--red); }
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: color 0.3s, border-color 0.3s;
}
.social-links a:hover { color: var(--text); border-color: var(--red); }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.3s;
}
.toast.show {
  background: rgba(0,0,0,0.88);
  pointer-events: all;
}
.toast-card {
  background: #080808;
  border-top: 2px solid var(--red);
  padding: 2.5rem 3.5rem;
  text-align: center;
  min-width: 300px;
  max-width: 440px;
  clip-path: inset(0 50% 0 50%);
  opacity: 0;
}
.toast.show .toast-card {
  animation: toastReveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes toastReveal {
  0%   { clip-path: inset(0 50% 0 50%); opacity: 0; }
  30%  { opacity: 1; }
  100% { clip-path: inset(0 0% 0 0%); opacity: 1; }
}
.toast-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.toast-brand span { color: var(--red); }
.toast-rule {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 1.25rem;
}
.toast-message {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.toast-dismiss {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  background: none;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.toast-dismiss:hover { border-color: var(--red); color: var(--red); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(120,10,10,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--text-muted); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.page-title span { color: var(--red); }
.page-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 500px;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.filter-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-muted);
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.3); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.filter-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.filter-meta span {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.sort-select {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r);
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}
.sort-select:focus { border-color: var(--red); }
.sort-select option { background: var(--surface2); }

/* Product grid hidden state */
.product-card.hidden { display: none; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-out), border-color 0.3s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); border-color: var(--red); }
.faq-icon svg { display: block; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a-inner {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0.75rem 0 1.5rem;
}
.contact-info p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.contact-detail svg { flex-shrink: 0; color: var(--red); }
.contact-form-block { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input,
.field textarea,
.field select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.875rem 1.125rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--red); }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field textarea { resize: vertical; min-height: 130px; }
.field select { cursor: pointer; }
.field select option { background: var(--surface2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   SHIPPING / INFO PAGE
   ============================================ */
.info-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.info-tab {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.75rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  background: none;
}
.info-tab:hover { color: var(--text); }
.info-tab.active { color: var(--text); border-bottom-color: var(--red); }
.info-panel { display: none; }
.info-panel.active { display: block; }
.info-block { margin-bottom: 3rem; }
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text);
}
.info-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.info-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 2;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.info-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.info-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.info-table td:first-child { color: var(--text); font-weight: 500; }
.info-table tr:last-child td { border-bottom: none; }

/* About page extras */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--red-dim); }
.value-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.value-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .about-grid { gap: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 460px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 5rem 0; }
  .form-row { flex-direction: column; }
  .cursor, .cursor-follower { display: none; }
  *, *::before, *::after { cursor: auto !important; }
  button, a, select, label, [role="button"], input[type="submit"], input[type="button"], input[type="checkbox"], input[type="radio"] { cursor: pointer !important; }
}
@media (max-width: 520px) {
  .products-grid { gap: 0.875rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ── Page Transition Overlay ─────────────────── */
#ptOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  transform: translateY(101%);
  will-change: transform;
  pointer-events: none;
  overflow: hidden;
}
#ptOverlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  transform: scaleX(1);
}
#ptOverlay.pt-go {
  pointer-events: all;
  animation: ptSlide 0.48s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
@keyframes ptSlide {
  0%   { transform: translateY(101%); }
  100% { transform: translateY(0%); }
}
