/* ==========================================================================
   AMDY MANE SPORTS COLLECTION — MASTER STYLESHEET (v2)
   Design language: "RED CARD" — matchday ultras energy. Black + a single hot
   red, run hard. Condensed industrial headlines, sharp notched-corner
   buttons and badges (not pills), a diagonal red slash cut through the hero,
   and a faint halftone dot texture on dark sections for a print-poster feel.
   WhatsApp green is used ONLY for WhatsApp-specific actions — it's a
   function color here, not a brand color.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* --- Palette: black + one hot red, run hard --- */
  --c-black: #0a0a0a;
  --c-black-soft: #151515;
  --c-white: #ffffff;
  --c-red: #e10600;
  --c-red-dark: #a80500;
  --c-red-deep: #4d0300;
  --c-red-soft: #ff3b30;
  --c-whatsapp: #25d366;
  --c-whatsapp-dark: #1aa851;
  --c-light-gray: #f1f0ee;
  --c-mid-gray: #cfcfcd;
  --c-dark-gray: #161616;
  --c-text: #131313;
  --c-text-muted: #6d6d6c;

  /* --- Type --- */
  --f-display: 'Oswald', 'Arial Narrow', sans-serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* --- Layout: sharp, not soft --- */
  --radius: 4px;
  --radius-sm: 3px;
  --container: 1240px;
  --shadow-soft: 0 16px 34px -14px rgba(0,0,0,.45);
  --shadow-card: 0 6px 20px -8px rgba(0,0,0,.18);
  --header-h: 76px;
  --notch: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
:focus-visible { outline: 3px solid var(--c-red); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
@media (max-width: 768px) { .section { padding: 44px 0; } }

.halftone {
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1.4px);
  background-size: 14px 14px;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 3px;
  background: var(--c-red);
  display: inline-block;
  transform: skewX(-20deg);
}

h1, h2, h3, .display {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 0.98;
  font-weight: 700;
  margin: 0;
  color: var(--c-black);
}
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(28px, 4vw, 48px); margin-top: 8px; }
.section-head p { color: var(--c-text-muted); max-width: 560px; margin-top: 10px; font-size: 15.5px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center p { margin-left: auto; margin-right: auto; }

.price, .sku, .stat-number { font-family: var(--f-mono); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 26px; border: 2px solid transparent;
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--c-red); color: var(--c-white); }
.btn-primary:hover { background: var(--c-black); color: var(--c-white); box-shadow: var(--shadow-soft); }
.btn-whatsapp { background: var(--c-whatsapp); color: #04170a; }
.btn-whatsapp:hover { background: var(--c-whatsapp-dark); color: #fff; box-shadow: 0 10px 24px -8px rgba(37,211,102,.5); }
.btn-outline { background: transparent; border-color: var(--c-black); color: var(--c-black); }
.btn-outline:hover { background: var(--c-black); color: var(--c-white); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--c-white); }
.btn-outline-light:hover { background: var(--c-white); color: var(--c-black); border-color: var(--c-white); }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(10,10,10,.97); backdrop-filter: blur(10px);
  height: var(--header-h); display: flex; align-items: center;
  border-bottom: 2px solid var(--c-red);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--c-white); font-family: var(--f-display); font-size: 22px; letter-spacing: .02em; text-transform: uppercase; font-weight: 700; }
.brand .brand-logo-img { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.brand span.sub { display: block; font-family: var(--f-mono); text-transform: none; font-size: 10px; letter-spacing: .12em; color: var(--c-mid-gray); margin-top: -2px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.78); font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; position: relative; padding: 6px 0; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 3px; background: var(--c-red); transition: width .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--c-white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn { position: relative; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.08); color: #fff; border: none; transition: background .2s; }
.icon-btn:hover { background: var(--c-red); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.badge-count { position: absolute; top: -4px; right: -4px; background: var(--c-red); color: #fff; font-family: var(--f-mono); font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.nav-toggle { display: none; position: relative; background: none; border: none; color: #fff; width: 36px; height: 36px; align-items: center; justify-content: center; padding: 0; z-index: 2; }
.nav-toggle svg { width: 22px; height: 22px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-hamburger { display: none; }
.nav-toggle.open .icon-close { display: block; }
.search-bar-mobile { display: none; }

.nav-backdrop {
  position: fixed; inset: 0; top: var(--header-h);
  background: rgba(0,0,0,.55);
  z-index: 499;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.nav-backdrop.open { opacity: 1; pointer-events: auto; }

@media (max-width: 980px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: auto; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: var(--c-black); flex-direction: column; align-items: flex-start;
    padding: 28px 24px; gap: 4px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 500;
    box-shadow: -12px 0 32px -12px rgba(0,0,0,.5);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .brand { font-size: 15px; gap: 7px; }
  .brand span.sub { display: none; }
  .header-actions { gap: 6px; }
  .icon-btn { width: 34px; height: 34px; }
  .site-header .container { gap: 10px; }
}

/* --- Hero: full-page two-slide full-bleed carousel --- */
.hero-slider {
  position: relative; overflow: hidden; background: var(--c-black);
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  min-height: 480px;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; z-index: 1;
  transition: opacity .9s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide-media { position: absolute; inset: 0; overflow: hidden; background: var(--c-black); z-index: 0; }
.hero-slide-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.72) 45%, rgba(10,10,10,.35) 100%);
}
.hero-slide-content { position: relative; z-index: 2; color: #fff; max-width: 620px; }
.hero-slide-content h1 { font-size: clamp(34px, 5.5vw, 58px); margin-top: 12px; color: #fff; }
.hero-slide-content p.lead { color: rgba(255,255,255,.75); font-size: 16.5px; max-width: 460px; margin: 16px 0 26px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-nav { position: absolute; z-index: 3; left: 0; right: 0; bottom: 26px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.hero-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); background: rgba(0,0,0,.3); color: #fff; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.hero-arrow:hover { background: var(--c-red); border-color: var(--c-red); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; padding: 0; transition: background .2s, transform .2s; }
.hero-dot.active { background: var(--c-red); transform: scale(1.3); }

@media (max-width: 700px) {
  .hero-slider { height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); min-height: 560px; }
  .hero-slide-overlay { background: linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.92) 65%); }
  .hero-slide { align-items: flex-end; padding-bottom: 70px; }
}

/* --- Slim trust strip below the hero --- */
.trust-strip { background: var(--c-dark-gray); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.trust-strip span { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.75); font-weight: 500; }
.trust-strip svg { width: 16px; height: 16px; stroke: var(--c-red); fill: none; flex-shrink: 0; }
@media (max-width: 700px) { .trust-strip .container { gap: 14px; } .trust-strip span { font-size: 11.5px; } }

.squad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.squad-card {
  position: relative; background-color: var(--c-black); background-size: cover; background-position: center;
  color: #fff; min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 20px 24px 24px; transition: transform .25s ease, box-shadow .25s ease;
  border-left: 3px solid var(--c-red); overflow: hidden;
}
.squad-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.55) 55%, rgba(10,10,10,.9) 100%);
  transition: background .25s ease;
}
.squad-card > * { position: relative; z-index: 1; }
.squad-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: #fff; }
.squad-card:hover::before { background: linear-gradient(180deg, rgba(225,6,0,.15) 0%, rgba(225,6,0,.5) 55%, rgba(10,10,10,.92) 100%); }
.squad-card .num { font-family: var(--f-mono); font-weight: 700; font-size: 13px; color: var(--c-red-soft); }
.squad-card h3 { font-size: 19px; margin-top: 10px; color: #fff; }
.squad-card p { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 6px; }
.squad-card .arrow { position: absolute; bottom: 22px; right: 20px; width: 30px; height: 30px; background: var(--c-red); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateX(-6px); transition: all .2s ease; z-index: 2; }
.squad-card:hover .arrow { background: #fff; color: var(--c-red); opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .squad-grid { grid-template-columns: repeat(2, 1fr); } }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.product-card {
  background: #fff; overflow: hidden; position: relative;
  border: 1px solid #ececec; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: var(--c-black); }
.product-thumb { position: relative; aspect-ratio: 1/1; background: var(--c-light-gray); overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.06); }
.ticket-badge {
  position: absolute; top: 10px; left: 0; background: var(--c-red); color: #fff;
  font-family: var(--f-mono); font-weight: 700; font-size: 12px; padding: 4px 12px 4px 10px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%); z-index: 2;
}
.ticket-badge.gold { background: var(--c-black); }
.ticket-badge.out { background: repeating-linear-gradient(135deg, var(--c-black), var(--c-black) 6px, #2a2a2a 6px, #2a2a2a 12px); color: #fff; }
.wishlist-toggle {
  position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .2s;
}
.wishlist-toggle svg { width: 16px; height: 16px; stroke: var(--c-black); fill: none; transition: fill .2s, stroke .2s; }
.wishlist-toggle.active svg { fill: var(--c-red); stroke: var(--c-red-dark); }
.product-info { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info .cat { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text-muted); }
.product-info h3 { font-family: var(--f-body); font-weight: 700; font-size: 15px; text-transform: none; line-height: 1.3; }
.product-info h3 a:hover { color: var(--c-red); }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.price-row .price { font-weight: 700; font-size: 16px; }
.price-row .old-price { font-family: var(--f-mono); text-decoration: line-through; color: var(--c-text-muted); font-size: 12.5px; }
.product-actions { display: flex; gap: 8px; margin-top: 10px; }
.product-actions .btn { flex: 1; padding: 10px 14px; font-size: 11.5px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 26px; }
.filter-chip { padding: 9px 18px; background: var(--c-light-gray); font-size: 13px; font-weight: 600; border: 1px solid transparent; }
.filter-chip.active, .filter-chip:hover { background: var(--c-black); color: #fff; }

.layout-with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .layout-with-sidebar { grid-template-columns: 1fr; } }
.filter-box { background: var(--c-light-gray); padding: 20px; margin-bottom: 16px; border-top: 3px solid var(--c-red); }
.filter-box h4 { font-family: var(--f-body); text-transform: none; font-size: 13.5px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0; }
.filter-box label { display: flex; align-items: center; gap: 8px; font-size: 13.5px; padding: 5px 0; color: var(--c-text); cursor: pointer; }
.filter-check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; padding: 7px 0; color: var(--c-text); }
.filter-check:hover { color: var(--c-red); }
.filter-check-box { width: 16px; height: 16px; border: 1.5px solid #ccc; flex-shrink: 0; position: relative; background: #fff; }
.filter-check.active .filter-check-box { background: var(--c-red); border-color: var(--c-red); }
.filter-check.active .filter-check-box::after { content: ''; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.filter-check.active { font-weight: 700; color: var(--c-black); }
.swatch { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px #ddd; display: inline-block; cursor: pointer; }
.swatch.active { box-shadow: 0 0 0 2px var(--c-red); }

.section-dark { background: var(--c-black); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,.6); }

.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-block { text-align: center; padding: 26px 10px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-block:last-child { border-right: none; }
.stat-block .stat-number { font-size: clamp(30px,4vw,44px); color: var(--c-white); font-weight: 700; text-shadow: 0 0 18px rgba(225,6,0,.45); }
.stat-block .stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-top: 6px; }
@media (max-width: 700px) { .stats-strip { grid-template-columns: repeat(2,1fr); } .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); } }

.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature-card { text-align: left; padding: 4px; }
.feature-card .icn { width: 46px; height: 46px; background: var(--c-red); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); }
.feature-card .icn svg { width: 22px; height: 22px; stroke: #fff; fill: none; }
.feature-card h3 { font-family: var(--f-body); text-transform: none; font-size: 15.5px; font-weight: 700; }
.feature-card p { font-size: 13px; color: var(--c-text-muted); margin-top: 6px; line-height: 1.5; }
.section-dark .feature-card p { color: rgba(255,255,255,.55); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }

.ts-marquee { overflow: hidden; margin-top: 32px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ts-track { display: flex; width: max-content; animation: ts-scroll 46s linear infinite; }
.ts-marquee:hover .ts-track { animation-play-state: paused; }
.ts-card { flex: 0 0 340px; margin-right: 22px; background: #fff; padding: 26px; border-top: 3px solid var(--c-black); box-sizing: border-box; }
.ts-card .stars { color: var(--c-red); font-size: 14px; letter-spacing: 2px; }
.ts-card p.msg { font-size: 14.5px; line-height: 1.6; margin: 14px 0 18px; color: var(--c-text); }
.testimonial-who { display: flex; align-items: center; gap: 10px; }
.testimonial-who .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--c-black); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-weight: 700; font-size: 14px; }
.testimonial-who strong { font-size: 13.5px; display: block; }
.testimonial-who span { font-size: 11.5px; color: var(--c-text-muted); }
@keyframes ts-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 700px) { .ts-card { flex-basis: 280px; } .ts-track { animation-duration: 34s; } }
@media (prefers-reduced-motion: reduce) { .ts-track { animation: none; } }

.brand-strip { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: space-between; opacity: .85; }
.brand-strip .brand-name { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; color: var(--c-text-muted); letter-spacing: .04em; }

.newsletter-box { background: linear-gradient(120deg, var(--c-black) 0%, var(--c-red-deep) 100%); padding: 44px; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; border-left: 4px solid var(--c-red); }
.newsletter-box h3 { font-size: 26px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 420px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: none; font-size: 14px; }

.faq-item { border-bottom: 1px solid #e8e8e8; padding: 18px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 15.5px; }
.faq-q .plus { font-family: var(--f-mono); font-size: 20px; transition: transform .2s; color: var(--c-red); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; font-size: 14px; color: var(--c-text-muted); line-height: 1.6; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 12px; }

.site-footer { background: var(--c-dark-gray); color: rgba(255,255,255,.7); padding: 60px 0 0; border-top: 3px solid var(--c-red); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid h4 { font-family: var(--f-body); text-transform: none; color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 10px; font-size: 13.5px; }
.footer-grid a:hover { color: var(--c-red-soft); }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-socials a:hover { background: var(--c-red); color: #fff; }
.footer-socials svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.payment-icons { display: flex; gap: 8px; font-family: var(--f-mono); font-size: 11px; }
.payment-icons span { background: rgba(255,255,255,.08); padding: 5px 10px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.floating-actions { position: fixed; right: 20px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft); border: none; }
.fab-whatsapp { background: var(--c-whatsapp); animation: pulse-green 2.4s infinite; }
.fab-whatsapp svg { width: 28px; height: 28px; fill: #04170a; }
.fab-top { width: 42px; height: 42px; background: var(--c-red); color: #fff; opacity: 0; pointer-events: none; transition: opacity .2s; }
.fab-top.show { opacity: 1; pointer-events: auto; }
.fab-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

.breadcrumb { background: var(--c-light-gray); padding: 16px 0; font-size: 13px; color: var(--c-text-muted); border-bottom: 1px solid #e6e5e2; }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb .sep { margin: 0 8px; }

.page-banner { background: var(--c-black); color: #fff; padding: 50px 0; position: relative; overflow: hidden; }
.page-banner::before { content:''; position:absolute; top:0; right:-8%; width:46%; height:100%; background: linear-gradient(100deg, transparent 46%, var(--c-red) 46%, var(--c-red) 52%, transparent 52%); opacity:.85; }
.page-banner h1 { font-size: clamp(28px,4vw,42px); position: relative; z-index: 1; }
.page-banner p { color: rgba(255,255,255,.6); margin-top: 8px; position: relative; z-index: 1; }
.page-banner .eyebrow { position: relative; z-index: 1; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.form-group .req { color: var(--c-red); }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid #e2e2e2;
  font-size: 14.5px; background: #fff; transition: border-color .2s;
}
.form-control:focus { border-color: var(--c-red); outline: none; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

.panel { background: #fff; border: 1px solid #eee; padding: 26px; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-muted); padding-bottom: 12px; border-bottom: 1px solid #eee; }
.cart-table td { padding: 16px 0; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.cart-item-row { display: flex; gap: 14px; align-items: center; }
.cart-item-row img { width: 64px; height: 64px; object-fit: cover; background: var(--c-light-gray); }
.qty-control { display: flex; align-items: center; border: 1.5px solid #e2e2e2; width: fit-content; }
.qty-control button { width: 30px; height: 30px; border: none; background: none; font-size: 16px; font-weight: 700; }
.qty-control input { width: 36px; text-align: center; border: none; font-family: var(--f-mono); font-size: 14px; }
.remove-item { color: var(--c-red-dark); font-size: 12.5px; font-weight: 700; background: none; border: none; }
.cart-summary { position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; padding: 8px 0; }
.summary-row.total { font-weight: 800; font-size: 18px; border-top: 1px solid #eee; margin-top: 10px; padding-top: 16px; }
.empty-state { text-align: center; padding: 70px 20px; }
.empty-state svg { width: 64px; height: 64px; stroke: var(--c-mid-gray); fill: none; margin-bottom: 18px; }
.empty-state h3 { font-family: var(--f-body); text-transform: none; font-size: 19px; }
.empty-state p { color: var(--c-text-muted); margin: 8px 0 20px; }

.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
@media (max-width: 900px) { .pd-grid { grid-template-columns: 1fr; gap: 26px; } }
.layout-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
.layout-13-1 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .layout-2-1, .layout-13-1 { grid-template-columns: 1fr; } }
.pd-gallery-main { aspect-ratio: 1/1; overflow: hidden; background: var(--c-light-gray); margin-bottom: 12px; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumbs img { width: 70px; height: 70px; object-fit: cover; cursor: pointer; border: 2px solid transparent; opacity: .7; }
.pd-thumbs img.active { border-color: var(--c-red); opacity: 1; }
.pd-info .brand-tag { font-family: var(--f-mono); font-size: 12px; color: var(--c-red); text-transform: uppercase; letter-spacing: .1em; }
.pd-info h1 { font-family: var(--f-body); text-transform: none; font-size: 26px; margin-top: 8px; font-weight: 800; }
.pd-meta { display: flex; gap: 14px; align-items: center; margin: 10px 0 16px; font-size: 13px; color: var(--c-text-muted); flex-wrap: wrap; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.pd-price-row .price { font-size: 28px; font-weight: 700; }
.pd-price-row .old-price { font-family: var(--f-mono); text-decoration: line-through; color: var(--c-text-muted); font-size: 16px; }
.option-group { margin-bottom: 20px; }
.option-group > label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 10px; }
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill { padding: 9px 16px; border: 1.5px solid #ddd; font-size: 13.5px; font-weight: 600; background: #fff; }
.option-pill.active { border-color: var(--c-red); background: var(--c-red); color: #fff; }
.qty-buy-row { display: flex; gap: 12px; align-items: center; margin: 22px 0; }
.pd-tabs { display: flex; gap: 26px; border-bottom: 1px solid #eee; margin: 40px 0 24px; }
.pd-tab { padding-bottom: 14px; font-weight: 700; font-size: 14px; color: var(--c-text-muted); border-bottom: 2px solid transparent; }
.pd-tab.active { color: var(--c-black); border-color: var(--c-red); }
.pd-tab-panel { display: none; font-size: 14.5px; line-height: 1.75; color: var(--c-text); }
.pd-tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 10px 0; border-bottom: 1px solid #f2f2f2; font-size: 14px; }
.spec-table td:first-child { color: var(--c-text-muted); width: 40%; max-width: 220px; }
.spec-table td:last-child { word-break: break-word; }
.share-row { display: flex; gap: 8px; margin-top: 20px; }
.share-row a { width: 36px; height: 36px; border-radius: 50%; background: var(--c-light-gray); display: flex; align-items: center; justify-content: center; }
.share-row svg { width: 15px; height: 15px; stroke: var(--c-black); fill: none; }
.stock-badge { font-size: 12px; font-weight: 700; padding: 5px 12px; }
.stock-badge.in { background: #e4f7ea; color: #1a8a44; }
.stock-badge.out { background: #fbe4e2; color: var(--c-red-dark); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.hidden { display: none !important; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.search-overlay { position: fixed; inset: 0; background: rgba(10,10,10,.75); z-index: 900; display: none; padding-top: 90px; }
.search-overlay.open { display: block; }
.search-panel { max-width: 680px; margin: 0 auto; background: #fff; overflow: hidden; border-top: 3px solid var(--c-red); }
.search-panel-head { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid #eee; }
.search-panel-head input { flex: 1; border: none; font-size: 16px; }
.search-panel-head input:focus { outline: none; }
.search-results { max-height: 60vh; overflow-y: auto; }
.search-result-row { display: flex; gap: 14px; align-items: center; padding: 12px 20px; border-bottom: 1px solid #f5f5f5; }
.search-result-row img { width: 48px; height: 48px; object-fit: cover; background: var(--c-light-gray); }
.search-result-row .name { font-size: 14px; font-weight: 600; }
.search-result-row .price { font-size: 13px; color: var(--c-text-muted); }
.search-empty { padding: 30px 20px; text-align: center; color: var(--c-text-muted); font-size: 14px; }
