/* ============================================================
   CYCLEHUB — Bold Sport Design
   Palette: #0a0a0a / #FFE600 / #F0F0F0 / #1A1A1A / #FF3B00
   Type: Barlow Condensed (display) + Inter (body)
   ============================================================ */

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

:root {
  --black:   #0a0a0a;
  --card:    #141414;
  --card2:   #1e1e1e;
  --yellow:  #FFE600;
  --red:     #FF3B00;
  --white:   #F0F0F0;
  --grey:    #7a7a7a;
  --border:  #2a2a2a;
  --radius:  4px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: var(--card); } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────────────── */
.display { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; line-height: 0.92; text-transform: uppercase; letter-spacing: -0.02em; }
.display-italic { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 0.9; letter-spacing: -0.02em; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-yellow:hover { background: transparent; color: var(--yellow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--border); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: transparent; color: var(--red); }
.btn-ghost { background: transparent; color: var(--white); border: none; padding: 10px 0; cursor: pointer; font-size: 0.85rem; opacity: .7; transition: var(--transition); }
.btn-ghost:hover { opacity: 1; color: var(--yellow); }

/* ============================================================
   HEADER
   ============================================================ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: var(--transition); }
.logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.9rem; text-transform: uppercase; letter-spacing: -0.03em; color: var(--white); display: flex; align-items: center; gap: 4px; }
.logo em { color: var(--yellow); font-style: normal; }
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); transition: var(--transition); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: var(--transition); }
.main-nav a:hover { color: var(--white); } .main-nav a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-search { display: flex; align-items: center; gap: 8px; background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; }
.header-search input { background: none; border: none; outline: none; color: var(--white); font-size: 0.84rem; width: 180px; }
.header-search input::placeholder { color: var(--grey); }
.search-results { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); z-index: 200; max-height: 320px; overflow-y: auto; display: none; }
.search-result-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer; transition: var(--transition); border-bottom: 1px solid var(--border); }
.search-result-item:hover { background: var(--card2); }
.search-result-item img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius); background: var(--card2); }
.search-result-item span:first-of-type { flex: 1; font-size: 0.82rem; }
.search-result-item .price { color: var(--yellow); font-weight: 700; font-size: 0.82rem; white-space: nowrap; }
.search-wrap { position: relative; }
.cart-trigger { position: relative; background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--white); font-size: 1.05rem; }
.cart-trigger:hover { border-color: var(--yellow); color: var(--yellow); }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--yellow); color: var(--black); border-radius: 50%; width: 18px; height: 18px; font-size: 0.65rem; font-weight: 800; display: none; align-items: center; justify-content: center; }
.cart-badge.show { display: flex; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: var(--black); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; text-transform: uppercase; color: var(--white); transition: var(--transition); }
.mobile-nav a:hover { color: var(--yellow); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

/* ============================================================
   HERO (fullscreen)
   ============================================================ */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg svg { width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.8) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 24px 80px; max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 2px; background: var(--yellow); }
.hero-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-style: italic; text-transform: uppercase; font-size: clamp(5rem, 13vw, 13rem); line-height: 0.88; letter-spacing: -0.03em; margin-bottom: 32px; }
.hero-title em { color: var(--yellow); font-style: normal; display: block; }
.hero-sub { font-size: 1rem; color: rgba(240,240,240,0.7); max-width: 440px; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; right: 24px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(var(--yellow), transparent); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* stats bar */
.hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-top: 4px; }

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker { background: var(--yellow); color: var(--black); overflow: hidden; height: 42px; display: flex; align-items: center; }
.ticker-track { display: flex; gap: 0; animation: ticker 28s linear infinite; white-space: nowrap; }
.ticker-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0 32px; }
.ticker-item::after { content: '✦'; margin-left: 32px; }
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.cat-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; }
.cat-card { position: relative; background: var(--card); overflow: hidden; aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.cat-card:hover { border-color: var(--yellow); }
.cat-card-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.18; transition: var(--transition); }
.cat-card:hover .cat-card-bg { opacity: 0.28; transform: scale(1.04); }
.cat-card-bg svg { width: 70%; height: 70%; }
.cat-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--white); position: relative; z-index: 1; transition: var(--transition); }
.cat-card:hover .cat-label { color: var(--yellow); }
.cat-count { font-size: 0.7rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; position: relative; z-index: 1; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.products-heading h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3rem; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.products-heading h2 span { color: var(--yellow); }
.products-heading a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); transition: var(--transition); border-bottom: 1px solid var(--border); padding-bottom: 2px; }
.products-heading a:hover { color: var(--yellow); border-color: var(--yellow); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card { background: var(--card); position: relative; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); cursor: pointer; }
.product-card:hover { z-index: 2; box-shadow: 0 0 0 2px var(--yellow); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--card2); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.4s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; }
.product-brand { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.product-name { font-size: 0.88rem; font-weight: 600; line-height: 1.35; color: var(--white); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--yellow); }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.product-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.35rem; color: var(--yellow); }
.product-price small { font-size: 0.6rem; color: var(--grey); font-family: 'Inter', sans-serif; font-weight: 400; display: block; line-height: 1; }
.add-to-cart-btn { width: 40px; height: 40px; background: var(--yellow); border: none; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--black); font-size: 1rem; transition: var(--transition); flex-shrink: 0; }
.add-to-cart-btn:hover { background: var(--red); color: #fff; }
.stars { color: var(--yellow); font-size: 0.72rem; letter-spacing: 1px; }

/* ============================================================
   SHOP LAYOUT
   ============================================================ */
.shop-header { padding: 120px 24px 40px; background: var(--card); border-bottom: 1px solid var(--border); }
.shop-header h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 7vw, 6rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9; }
.shop-header h1 span { color: var(--yellow); }
.shop-body { display: grid; grid-template-columns: 260px 1fr; gap: 0; min-height: 70vh; }
.sidebar { background: var(--card); border-right: 1px solid var(--border); padding: 32px 24px; position: sticky; top: 72px; height: calc(100vh - 72px); overflow-y: auto; }
.sidebar::-webkit-scrollbar { display: none; }
.filter-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 12px; margin-top: 28px; }
.filter-title:first-child { margin-top: 0; }
.filter-group label { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--white); padding: 7px 0; cursor: pointer; transition: var(--transition); border-bottom: 1px solid var(--border); }
.filter-group label:hover { color: var(--yellow); }
.filter-group input[type=checkbox] { accent-color: var(--yellow); width: 14px; height: 14px; }
.price-range { width: 100%; accent-color: var(--yellow); cursor: pointer; margin-top: 8px; }
.filter-clear { width: 100%; margin-top: 24px; background: transparent; border: 1px solid var(--border); color: var(--grey); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px; cursor: pointer; transition: var(--transition); border-radius: var(--radius); }
.filter-clear:hover { border-color: var(--red); color: var(--red); }
.shop-main { padding: 32px 24px; }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.shop-count { font-size: 0.8rem; color: var(--grey); }
.shop-sort { background: var(--card2); border: 1px solid var(--border); color: var(--white); font-size: 0.82rem; padding: 8px 12px; border-radius: var(--radius); outline: none; cursor: pointer; }
.shop-sort option { background: var(--card2); }
.pagination { display: flex; gap: 4px; margin-top: 40px; justify-content: center; }
.pagination button { width: 38px; height: 38px; background: var(--card); border: 1px solid var(--border); color: var(--white); cursor: pointer; font-size: 0.84rem; transition: var(--transition); border-radius: var(--radius); }
.pagination button:hover, .pagination button.active { background: var(--yellow); color: var(--black); border-color: var(--yellow); font-weight: 700; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { padding-top: 92px; }
.breadcrumb { font-size: 0.76rem; color: var(--grey); padding: 16px 0; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--border); }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 70vh; }
.product-gallery-pane { background: var(--card); position: sticky; top: 72px; height: calc(100vh - 72px); display: flex; flex-direction: column; overflow: hidden; }
.product-gallery-pane .main-img { flex: 1; display: flex; align-items: center; justify-content: center; padding: 40px; overflow: hidden; }
.product-gallery-pane .main-img img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.4s ease; }
.product-gallery-pane .main-img:hover img { transform: scale(1.04); }
.product-thumbnails { display: flex; gap: 2px; padding: 12px; background: var(--card2); }
.product-thumbnails img { width: 64px; height: 64px; object-fit: contain; background: var(--card); padding: 6px; cursor: pointer; opacity: .6; transition: var(--transition); border: 2px solid transparent; flex-shrink: 0; }
.product-thumbnails img.active, .product-thumbnails img:hover { opacity: 1; border-color: var(--yellow); }
.product-info-pane { padding: 48px 40px; overflow-y: auto; }
.product-info-pane .product-brand-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.product-info-pane h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2rem, 3.5vw, 3rem); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 20px; }
.product-price-block { margin-bottom: 28px; }
.product-price-block .price-main { font-family: 'Barlow Condensed', sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.product-price-block .price-note { font-size: 0.76rem; color: var(--grey); margin-top: 4px; }
.product-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.product-rating-num { font-size: 0.8rem; color: var(--grey); }
.product-desc { font-size: 0.9rem; color: rgba(240,240,240,0.75); line-height: 1.75; margin-bottom: 28px; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-box button { width: 42px; height: 48px; background: var(--card2); border: none; color: var(--white); font-size: 1.1rem; cursor: pointer; transition: var(--transition); }
.qty-box button:hover { background: var(--yellow); color: var(--black); }
.qty-box input { width: 52px; height: 48px; background: none; border: none; outline: none; text-align: center; font-size: 1rem; font-weight: 600; color: var(--white); }
.product-add-btn { flex: 1; height: 52px; background: var(--yellow); border: none; color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: var(--transition); border-radius: var(--radius); }
.product-add-btn:hover { background: var(--red); color: #fff; }
.product-specs { margin-top: 32px; border-top: 1px solid var(--border); padding-top: 24px; }
.product-specs h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; }
.spec-row .spec-key { color: var(--grey); } .spec-row .spec-val { font-weight: 600; }
.product-badges { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.prod-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--radius); color: var(--grey); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding-top: 92px; min-height: 90vh; }
.cart-page h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3.5rem; text-transform: uppercase; letter-spacing: -0.02em; padding: 32px 0 24px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); padding: 12px 0; border-bottom: 1px solid var(--border); text-align: left; }
.cart-table td { padding: 16px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 72px; height: 72px; object-fit: contain; background: var(--card); padding: 6px; border-radius: var(--radius); }
.cart-item-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.cart-item-brand { font-size: 0.72rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; }
.cart-item-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--yellow); white-space: nowrap; }
.cart-qty { display: flex; align-items: center; gap: 6px; }
.cart-qty button { width: 28px; height: 28px; background: var(--card2); border: 1px solid var(--border); color: var(--white); cursor: pointer; border-radius: var(--radius); transition: var(--transition); font-size: 0.9rem; }
.cart-qty button:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.cart-qty span { min-width: 32px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.cart-remove { background: none; border: none; color: var(--grey); cursor: pointer; font-size: 1rem; transition: var(--transition); padding: 4px; }
.cart-remove:hover { color: var(--red); }
.cart-summary-box { background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); position: sticky; top: 88px; }
.cart-summary-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
.summary-row.total { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--yellow); border-bottom: none; padding-top: 16px; }
.summary-row.total span:last-child { font-size: 1.6rem; }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; background: var(--card2); border: 1px solid var(--border); color: var(--white); padding: 10px 14px; border-radius: var(--radius); font-size: 0.84rem; outline: none; }
.coupon-row input:focus { border-color: var(--yellow); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); opacity: 0; visibility: hidden; transition: .3s; z-index: 1400; }
.cart-overlay.show { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 92vw; background: var(--card); z-index: 1500; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); border-left: 1px solid var(--border); }
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); background: var(--card2); }
.drawer-header h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.06em; display: flex; align-items: center; gap: 10px; }
.drawer-close { background: none; border: 1px solid var(--border); color: var(--white); width: 34px; height: 34px; border-radius: var(--radius); cursor: pointer; font-size: 1rem; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.drawer-close:hover { border-color: var(--red); color: var(--red); }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 0; }
.drawer-empty { text-align: center; padding: 60px 24px; }
.drawer-empty i { font-size: 2.8rem; color: var(--border); display: block; margin-bottom: 16px; }
.drawer-empty p { color: var(--grey); margin-bottom: 20px; }
.drawer-item { display: flex; gap: 12px; padding: 16px 24px; border-bottom: 1px solid var(--border); align-items: flex-start; }
.drawer-item img { width: 64px; height: 64px; object-fit: contain; background: var(--card2); padding: 6px; border-radius: var(--radius); flex-shrink: 0; }
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name { font-size: 0.82rem; font-weight: 600; margin-bottom: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.drawer-item-brand { font-size: 0.68rem; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.drawer-item-controls { display: flex; align-items: center; justify-content: space-between; }
.drawer-item-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--yellow); }
.qty-mini { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-mini button { width: 26px; height: 28px; border: none; background: var(--card2); cursor: pointer; font-size: .9rem; transition: var(--transition); color: var(--white); }
.qty-mini button:hover { background: var(--yellow); color: var(--black); }
.qty-mini span { min-width: 28px; text-align: center; font-size: .82rem; font-weight: 600; }
.drawer-item-remove { background: none; border: none; color: var(--grey); cursor: pointer; font-size: .88rem; padding: 4px; transition: var(--transition); flex-shrink: 0; }
.drawer-item-remove:hover { color: var(--red); }
.drawer-footer { border-top: 1px solid var(--border); padding: 20px 24px; background: var(--card2); }
.free-ship-bar { margin-bottom: 14px; font-size: .8rem; color: var(--grey); }
.free-ship-bar.success { color: var(--yellow); font-weight: 600; }
.free-ship-text { margin-bottom: 6px; }
.free-ship-track { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.free-ship-fill { height: 100%; background: var(--yellow); transition: width .4s; }
.drawer-summary { margin-bottom: 16px; }
.drawer-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: .86rem; }
.drawer-row.total { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--yellow); border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.drawer-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 8px; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-page { padding-top: 92px; min-height: 90vh; }
.checkout-page .page-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3rem; text-transform: uppercase; padding: 32px 0 24px; }
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.checkout-form { background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); margin-bottom: 16px; }
.checkout-form h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.checkout-form h3 i { color: var(--yellow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--card2); border: 1px solid var(--border); color: var(--white); padding: 11px 14px; border-radius: var(--radius); font-size: 0.88rem; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group select option { background: var(--card2); }
.form-group textarea { resize: vertical; min-height: 72px; }
.order-summary-box { background: var(--card); border: 1px solid var(--border); padding: 24px; border-radius: var(--radius); position: sticky; top: 88px; }
.order-summary-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.order-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: center; }
.order-item img { width: 52px; height: 52px; object-fit: contain; background: var(--card2); padding: 4px; border-radius: var(--radius); flex-shrink: 0; }
.order-item h4 { font-size: .82rem; font-weight: 600; margin-bottom: 2px; }
.order-item .qty { font-size: .72rem; color: var(--grey); }
.order-item .item-total { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: var(--yellow); white-space: nowrap; margin-left: auto; }
.stripe-box { background: rgba(99,91,255,0.08); border: 1px solid rgba(99,91,255,0.3); border-radius: var(--radius); padding: 28px; text-align: center; margin-bottom: 16px; }
.stripe-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.stripe-box p { font-size: .84rem; color: var(--grey); margin-bottom: 20px; line-height: 1.6; }
.stripe-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 900; color: var(--yellow); margin-bottom: 20px; display: block; }
.btn-stripe { background: #635bff; color: #fff; border: none; padding: 16px 40px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; width: 100%; border-radius: var(--radius); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-stripe:hover { background: #4f46e5; }
.stripe-badges { display: flex; justify-content: center; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.stripe-badge { font-size: .72rem; color: var(--grey); display: flex; align-items: center; gap: 5px; }
.steps-bar { background: var(--card2); padding: 16px 0; border-bottom: 1px solid var(--border); }
.steps { display: flex; justify-content: center; align-items: center; gap: 4px; }
.step { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--grey); padding: 0 16px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; }
.step.active { color: var(--yellow); }
.step.done { color: var(--white); }
.step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--border); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .75rem; }
.step.active .step-num { background: var(--yellow); color: var(--black); }
.step.done .step-num { background: var(--white); color: var(--black); }
.step-line { width: 40px; height: 1px; background: var(--border); }
.step-line.done { background: var(--yellow); }
.form-error { background: rgba(255,59,0,0.1); border: 1px solid rgba(255,59,0,0.3); border-radius: var(--radius); padding: 12px 16px; color: var(--red); font-size: .84rem; margin-bottom: 14px; display: none; }
.config-notice { background: rgba(255,230,0,0.08); border: 1px solid rgba(255,230,0,0.25); border-radius: var(--radius); padding: 14px; font-size: .8rem; color: var(--grey); margin-bottom: 14px; display: none; align-items: flex-start; gap: 10px; }
.config-notice i { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.config-notice code { background: var(--card); padding: 2px 6px; border-radius: 3px; font-family: monospace; }
.terms-check { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; cursor: pointer; margin-bottom: 16px; }
.terms-check input { accent-color: var(--yellow); margin-top: 3px; }

/* ============================================================
   CONTACT / STATIC PAGES
   ============================================================ */
.page-hero { padding: 120px 24px 60px; background: var(--card); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(3rem, 7vw, 6rem); text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9; }
.page-hero h1 em { color: var(--yellow); font-style: italic; }
.page-hero p { color: var(--grey); margin-top: 16px; max-width: 560px; }
.page-content { padding: 60px 0; }
.page-content h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.8rem; text-transform: uppercase; margin: 32px 0 12px; color: var(--white); }
.page-content p, .page-content li { font-size: .9rem; color: rgba(240,240,240,0.75); line-height: 1.8; margin-bottom: 12px; }
.page-content ul { list-style: disc; padding-left: 20px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.contact-item { background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); }
.contact-item i { color: var(--yellow); font-size: 1.4rem; margin-bottom: 12px; display: block; }
.contact-item strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 6px; }
.contact-item p { color: var(--grey); font-size: .88rem; margin: 0; }
.contact-item a { color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--card); border-top: 2px solid var(--yellow); padding: 60px 0 0; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-size: 2.2rem; margin-bottom: 16px; }
.footer-brand p { font-size: .84rem; color: var(--grey); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .84rem; color: rgba(240,240,240,0.65); transition: var(--transition); }
.footer-col a:hover { color: var(--yellow); }
.footer-contact-item { font-size: .84rem; color: rgba(240,240,240,0.65); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(240,240,240,0.65); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .76rem; color: var(--grey); }
.footer-payment-icons { display: flex; gap: 10px; align-items: center; }
.footer-payment-icons span { font-size: .78rem; color: var(--grey); display: flex; align-items: center; gap: 5px; }

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */
.cart-notification { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--yellow); color: var(--black); padding: 14px 24px; border-radius: var(--radius); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; z-index: 1600; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s; opacity: 0; }
.cart-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================================================
   ORDER CONFIRMATION
   ============================================================ */
.confirmation-page { padding-top: 92px; min-height: 90vh; display: flex; align-items: center; justify-content: center; }
.confirmation-box { background: var(--card); border: 1px solid var(--border); padding: 60px; border-radius: var(--radius); text-align: center; max-width: 600px; width: 100%; }
.confirmation-icon { width: 80px; height: 80px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--black); margin: 0 auto 28px; }
.confirmation-box h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.confirmation-box p { color: var(--grey); margin-bottom: 32px; }
.order-id { background: var(--card2); border: 1px solid var(--border); padding: 16px 24px; border-radius: var(--radius); font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 32px; }
.order-id span { color: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery-pane { position: static; height: auto; min-height: 380px; }
  .product-info-pane { padding: 32px 24px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-search { display: none; }
  .mobile-menu-btn { display: block; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .shop-body { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 7rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .cart-drawer { width: 100vw; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .cat-strip { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 14px; }
  .hero-stat-num { font-size: 1.8rem; }
}
