/* ============================
   VYLIX — Shared Stylesheet (v3 — gym SVG fillers)
   ============================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --text: #f5f5f5;
  --muted: #999;
  --muted-2: #555;
  --accent: #d4ff00;
  --accent-dim: #9bbe00;
  --border: #222;
  --danger: #ff4444;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.section-title { font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 50px; }
.accent { color: var(--accent); }
.italic { font-style: italic; }

/* NAV */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
}
.logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-icons { display: flex; gap: 20px; font-size: 12px; letter-spacing: 0.12em; }
.nav-icons span { cursor: pointer; transition: color .2s; text-transform: uppercase; }
.nav-icons span:hover { color: var(--accent); }
.cart-count { color: var(--accent); margin-left: 4px; }

.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; }
.nav-spacer { height: 56px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  border: none; transition: all .25s; font-family: inherit;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--text); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-secondary:hover { background: var(--text); color: #000; }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-ghost:hover { background: var(--accent); color: #000; }
.btn-block { width: 100%; justify-content: center; }

/* MARQUEE */
.marquee {
  background: var(--bg-2); padding: 18px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; white-space: nowrap;
}
.marquee-inner { display: inline-block; animation: scroll 35s linear infinite; }
.marquee span {
  font-family: 'Anton', sans-serif; font-size: 22px;
  letter-spacing: 0.1em; margin: 0 32px; color: var(--text);
}
.marquee span:nth-child(even) { color: var(--accent); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PAGE HEADER */
.page-header {
  padding: 130px 40px 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212,255,0,0.06), transparent 60%);
}
.page-header .eyebrow {
  display: inline-block; font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  padding: 5px 12px; border: 1px solid var(--accent); position: relative;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 16px; position: relative;
}
.page-header p {
  color: var(--muted); max-width: 540px; margin: 0 auto;
  font-size: 15px; position: relative;
}

/* FOOTER */
footer.site-footer {
  padding: 70px 40px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; max-width: 1280px; margin: 0 auto 40px;
}
.footer-grid h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px; color: var(--muted);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; font-size: 13px; }
.footer-grid a { transition: color .2s; }
.footer-grid a:hover { color: var(--accent); }
.footer-brand .logo { display: block; margin-bottom: 12px; font-size: 24px; }
.footer-brand p { color: var(--muted); font-size: 13px; max-width: 280px; line-height: 1.6; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  color: var(--muted); font-size: 11px; letter-spacing: 0.1em;
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 12px 20px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; padding: 20px;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .container { padding: 0 20px; }
  .page-header { padding: 100px 20px 50px; }
  footer.site-footer { padding: 50px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ============================
   HOMEPAGE
   ============================ */
.hero {
  height: auto !important; min-height: auto !important;
  padding: 140px 40px 100px !important;
}
.hero h1 {
  font-size: clamp(50px, 8vw, 120px) !important;
  margin-bottom: 28px !important;
}
.hero-tag { font-size: 10px !important; padding: 5px 12px !important; }
.hero-meta p { font-size: 14px !important; max-width: 340px !important; }

.categories { padding: 90px 40px !important; max-width: 1280px !important; }
.category-grid { min-height: 480px !important; gap: 14px !important; }
.cat-card { min-height: 220px !important; padding: 28px !important; }
.cat-content h3 { font-size: 36px !important; }
.cat-content p { font-size: 13px !important; }
.cat-arrow { font-size: 20px !important; top: 24px !important; right: 24px !important; }

/* CATEGORY ILLUSTRATIONS - gym themed SVG backgrounds */
.cat-card .cat-bg {
  background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important;
}
.category-grid > .cat-card:first-child .cat-bg {
  /* Tops - barbell / weights theme */
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%) !important;
  background-image: linear-gradient(135deg, rgba(26,26,26,0.7), rgba(20,20,20,0.95)), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 500' preserveAspectRatio='xMidYMid slice'><defs><linearGradient id='g1' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23d4ff00' stop-opacity='0.12'/><stop offset='1' stop-color='%23d4ff00' stop-opacity='0'/></linearGradient></defs><rect width='800' height='500' fill='url(%23g1)'/><g stroke='%23d4ff00' stroke-opacity='0.18' stroke-width='3' fill='none'><circle cx='150' cy='250' r='75'/><circle cx='650' cy='250' r='75'/><rect x='180' y='240' width='440' height='20' rx='4'/><circle cx='150' cy='250' r='30' stroke-width='6'/><circle cx='650' cy='250' r='30' stroke-width='6'/></g><g stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'><line x1='0' y1='100' x2='800' y2='100'/><line x1='0' y1='400' x2='800' y2='400'/></g></svg>") !important;
}
.cat-stack .cat-card:nth-child(1) .cat-bg {
  /* Bottoms - running/track theme */
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a) !important;
  background-image: linear-gradient(135deg, rgba(42,42,42,0.7), rgba(20,20,20,0.95)), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 250' preserveAspectRatio='xMidYMid slice'><g stroke='%23d4ff00' stroke-opacity='0.2' stroke-width='2' fill='none'><path d='M0 80 Q 200 60 400 80'/><path d='M0 120 Q 200 100 400 120'/><path d='M0 160 Q 200 140 400 160'/><path d='M0 200 Q 200 180 400 200'/></g><g fill='%23d4ff00' fill-opacity='0.15'><polygon points='180,100 220,100 240,180 200,200 160,180'/></g></svg>") !important;
}
.cat-stack .cat-card:nth-child(2) .cat-bg {
  /* Outerwear - bold geometric / hoodie shape */
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a) !important;
  background-image: linear-gradient(135deg, rgba(26,26,26,0.7), rgba(20,20,20,0.95)), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 250' preserveAspectRatio='xMidYMid slice'><g fill='none' stroke='%23d4ff00' stroke-opacity='0.2' stroke-width='2'><path d='M100 80 L 130 50 Q 200 30 270 50 L 300 80 L 320 130 L 300 200 L 100 200 L 80 130 Z'/><path d='M170 50 Q 200 75 230 50'/><path d='M160 100 Q 200 110 240 100'/></g></svg>") !important;
}

.featured { padding: 60px 40px 100px !important; max-width: 1280px !important; }
.featured-head { margin-bottom: 45px !important; }
.featured-head h2 { font-size: clamp(32px, 4.5vw, 56px) !important; }
.product-grid { gap: 18px !important; }
.product-info { padding: 16px !important; }
.product-info h3 { font-size: 14px !important; }
.product-info .price { font-size: 14px !important; }
.product-tag { font-size: 9px !important; padding: 3px 8px !important; }

/* PRODUCT IMAGE FILLERS - gym apparel SVG illustrations */
.product-img-wrap {
  background: linear-gradient(135deg, #1a1a1a, #1f1f1f) !important;
  position: relative;
}
.product-img-wrap::after {
  content: '' !important;
  position: absolute; inset: 0;
  background-repeat: no-repeat; background-position: center; background-size: 70%;
  /* Default = heavyweight tee silhouette */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='tee' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='url(%23tee)' stroke='%23444' stroke-width='1.5'/><path d='M60 50 Q 70 65 100 65 Q 130 65 140 50' fill='none' stroke='%23555' stroke-width='1.5'/><text x='100' y='150' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='14' letter-spacing='2'>VYLIX</text></svg>") !important;
  background-size: 65% !important;
}

/* Per-product variants — each .product-card can override with a data-product attribute */
.product-card[data-product="tee"] .product-img-wrap::after,
.product-card[data-product="heavyweight-tee"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='t1' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='url(%23t1)' stroke='%23444' stroke-width='1.5'/><path d='M60 50 Q 70 65 100 65 Q 130 65 140 50' fill='none' stroke='%23555' stroke-width='1.5'/><text x='100' y='150' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='14' letter-spacing='2'>VYLIX</text></svg>") !important;
}

.product-card[data-product="tank"] .product-img-wrap::after,
.product-card[data-product="ringer-tank"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='tk' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23303030'/><stop offset='1' stop-color='%23202020'/></linearGradient></defs><path d='M70 55 L 50 75 L 50 220 L 150 220 L 150 75 L 130 55 L 125 75 Q 100 80 75 75 Z' fill='url(%23tk)' stroke='%23444' stroke-width='1.5'/><path d='M70 55 L 80 30 L 90 55' fill='none' stroke='%23d4ff00' stroke-opacity='0.5' stroke-width='2'/><path d='M130 55 L 120 30 L 110 55' fill='none' stroke='%23d4ff00' stroke-opacity='0.5' stroke-width='2'/><path d='M50 75 L 150 75' stroke='%23d4ff00' stroke-opacity='0.4' stroke-width='2' fill='none'/><text x='100' y='160' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='12' letter-spacing='2'>VYLIX</text></svg>") !important;
}

.product-card[data-product="short"] .product-img-wrap::after,
.product-card[data-product="training-short"] .product-img-wrap::after,
.product-card[data-product="lounge-short"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='sh' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M50 70 L 50 200 L 95 200 L 100 110 L 105 200 L 150 200 L 150 70 Z' fill='url(%23sh)' stroke='%23444' stroke-width='1.5'/><path d='M50 70 L 150 70' stroke='%23555' stroke-width='2'/><circle cx='100' cy='80' r='3' fill='%23d4ff00' fill-opacity='0.5'/><text x='65' y='160' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='10' letter-spacing='1'>VYLIX</text></svg>") !important;
}

.product-card[data-product="hoodie"] .product-img-wrap::after,
.product-card[data-product="box-hoodie"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='ho' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23383838'/><stop offset='1' stop-color='%23252525'/></linearGradient></defs><path d='M55 65 L 30 80 L 25 115 L 50 125 L 50 220 L 150 220 L 150 125 L 175 115 L 170 80 L 145 65 Q 135 95 100 95 Q 65 95 55 65 Z' fill='url(%23ho)' stroke='%23444' stroke-width='1.5'/><path d='M55 65 Q 75 40 100 40 Q 125 40 145 65 Q 135 80 100 82 Q 65 80 55 65 Z' fill='%23151515' stroke='%23444' stroke-width='1.5'/><path d='M90 110 L 110 110 L 110 160 L 90 160 Z' fill='none' stroke='%23555' stroke-width='1'/><circle cx='95' cy='80' r='2' fill='%23d4ff00' fill-opacity='0.5'/><circle cx='105' cy='80' r='2' fill='%23d4ff00' fill-opacity='0.5'/><text x='100' y='200' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='12' letter-spacing='2'>VYLIX</text></svg>") !important;
}

.product-card[data-product="crew"] .product-img-wrap::after,
.product-card[data-product="lift-crew"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='cr' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23353535'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M58 50 L 35 65 L 25 105 L 50 115 L 50 220 L 150 220 L 150 115 L 175 105 L 165 65 L 142 50 Q 130 70 100 70 Q 70 70 58 50 Z' fill='url(%23cr)' stroke='%23444' stroke-width='1.5'/><path d='M58 50 Q 75 70 100 70 Q 125 70 142 50' fill='none' stroke='%23d4ff00' stroke-opacity='0.4' stroke-width='3'/><text x='100' y='160' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='14' letter-spacing='2'>VYLIX</text></svg>") !important;
}

.product-card[data-product="joggers"] .product-img-wrap::after,
.product-card[data-product="cargo-joggers"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='jg' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M55 40 L 50 230 L 95 230 L 100 120 L 105 230 L 150 230 L 145 40 Z' fill='url(%23jg)' stroke='%23444' stroke-width='1.5'/><path d='M55 40 L 145 40' stroke='%23555' stroke-width='2'/><rect x='62' y='90' width='18' height='25' rx='2' fill='none' stroke='%23d4ff00' stroke-opacity='0.4' stroke-width='1.5'/><rect x='120' y='90' width='18' height='25' rx='2' fill='none' stroke='%23d4ff00' stroke-opacity='0.4' stroke-width='1.5'/></svg>") !important;
}

.product-card[data-product="polo"] .product-img-wrap::after,
.product-card[data-product="performance-polo"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='po' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 L 115 55 L 100 90 L 85 55 Z' fill='url(%23po)' stroke='%23444' stroke-width='1.5'/><path d='M85 55 L 100 90 L 115 55' fill='%23151515' stroke='%23555' stroke-width='1.5'/><circle cx='100' cy='80' r='2' fill='%23d4ff00' fill-opacity='0.5'/><circle cx='100' cy='95' r='2' fill='%23d4ff00' fill-opacity='0.5'/><text x='100' y='160' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='12' letter-spacing='2'>VYLIX</text></svg>") !important;
}

.product-card[data-product="mesh-tee"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='mt' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23303030'/><stop offset='1' stop-color='%23202020'/></linearGradient><pattern id='mesh' x='0' y='0' width='6' height='6' patternUnits='userSpaceOnUse'><circle cx='3' cy='3' r='1' fill='%23d4ff00' fill-opacity='0.15'/></pattern></defs><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='url(%23mt)' stroke='%23444' stroke-width='1.5'/><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='url(%23mesh)'/><text x='100' y='160' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='12' letter-spacing='2'>VYLIX</text></svg>") !important;
}

.product-card[data-product="jacket"] .product-img-wrap::after,
.product-card[data-product="coach-jacket"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='jk' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23383838'/><stop offset='1' stop-color='%23252525'/></linearGradient></defs><path d='M55 55 L 30 70 L 25 110 L 45 120 L 45 220 L 100 220 L 100 60 L 105 60 L 105 220 L 155 220 L 155 120 L 175 110 L 170 70 L 145 55 Q 130 70 100 70 Q 70 70 55 55 Z' fill='url(%23jk)' stroke='%23444' stroke-width='1.5'/><line x1='100' y1='70' x2='100' y2='220' stroke='%23555' stroke-width='1' stroke-dasharray='3 3'/><circle cx='100' cy='100' r='2' fill='%23d4ff00' fill-opacity='0.6'/><circle cx='100' cy='130' r='2' fill='%23d4ff00' fill-opacity='0.6'/><circle cx='100' cy='160' r='2' fill='%23d4ff00' fill-opacity='0.6'/></svg>") !important;
}

.product-card[data-product="belt-tee"] .product-img-wrap::after,
.product-card[data-product="lift-belt-tee"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='bt' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='url(%23bt)' stroke='%23444' stroke-width='1.5'/><rect x='50' y='160' width='100' height='20' fill='%23d4ff00' fill-opacity='0.2'/><rect x='90' y='162' width='20' height='16' fill='none' stroke='%23d4ff00' stroke-opacity='0.5' stroke-width='1.5'/><text x='100' y='130' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='10' letter-spacing='1'>LIFT</text></svg>") !important;
}

.product-card[data-product="cap"] .product-img-wrap::after,
.product-card[data-product="field-cap"] .product-img-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='cp' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23383838'/><stop offset='1' stop-color='%23252525'/></linearGradient></defs><path d='M40 140 Q 100 70 160 140 L 160 155 L 40 155 Z' fill='url(%23cp)' stroke='%23444' stroke-width='1.5'/><path d='M30 155 Q 100 165 170 155 L 170 175 Q 100 185 30 175 Z' fill='%23222' stroke='%23444' stroke-width='1.5'/><text x='100' y='130' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.5' font-family='Arial Black' font-size='14' letter-spacing='2'>V</text></svg>") !important;
}

.product-img-wrap {
  display: block !important;
}

.manifesto { padding: 120px 40px !important; }
.manifesto h2 { font-size: clamp(30px, 4vw, 52px) !important; margin-bottom: 26px !important; }
.manifesto p { font-size: 16px !important; }

.women-banner { padding: 80px 40px !important; }
.women-banner h2 { font-size: clamp(34px, 5vw, 72px) !important; margin-bottom: 14px !important; }
.women-banner p { font-size: 11px !important; margin-bottom: 26px !important; }

/* SHOP PAGE */
.shop-layout { max-width: 1280px !important; padding: 50px 40px 100px !important; gap: 36px !important; }
.shop-filters { width: 200px !important; }
.filter-group h4 { font-size: 10px !important; margin-bottom: 12px !important; }
.filter-group li { font-size: 13px !important; padding: 6px 0 !important; }
.shop-count { font-size: 13px !important; }
.product-grid-shop { gap: 20px !important; }

/* PRODUCT PAGE */
.product-page { padding: 90px 40px 50px !important; max-width: 1280px !important; }
.product-layout { gap: 50px !important; }
.product-detail h1 { font-size: clamp(28px, 4vw, 42px) !important; }
.product-detail .price { font-size: 22px !important; }
.product-detail .desc { font-size: 14px !important; }
.product-detail .tag { font-size: 10px !important; margin-bottom: 16px !important; }

.gallery-main {
  background: linear-gradient(135deg, #1a1a1a, #1f1f1f) !important;
  position: relative;
}
.gallery-main::after {
  content: '' !important;
  position: absolute !important; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><defs><linearGradient id='gt' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23333'/><stop offset='1' stop-color='%23222'/></linearGradient></defs><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='url(%23gt)' stroke='%23444' stroke-width='1.5'/><path d='M60 50 Q 70 65 100 65 Q 130 65 140 50' fill='none' stroke='%23555' stroke-width='1.5'/><text x='100' y='150' text-anchor='middle' fill='%23d4ff00' fill-opacity='0.4' font-family='Arial Black' font-size='14' letter-spacing='2'>VYLIX</text></svg>") !important;
  background-repeat: no-repeat !important; background-position: center !important; background-size: 65% !important;
}

.thumb {
  background: linear-gradient(135deg, #1a1a1a, #1f1f1f) !important;
  position: relative; overflow: hidden;
}
.thumb::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'><path d='M60 50 L 40 65 L 30 100 L 50 110 L 50 220 L 150 220 L 150 110 L 170 100 L 160 65 L 140 50 Q 130 70 100 70 Q 70 70 60 50 Z' fill='%23333' stroke='%23444' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 60%;
  opacity: 0.7;
}
.size-opt { padding: 12px 0 !important; font-size: 12px !important; }

/* ABOUT PAGE */
.about-intro { padding: 70px 40px 100px !important; max-width: 1000px !important; }
.about-intro .lead { font-size: clamp(20px, 2.5vw, 28px) !important; margin-bottom: 50px !important; }
.stat .num { font-size: 44px !important; }
.stat .label { font-size: 11px !important; }
.story-section { padding: 80px 40px !important; }
.story-grid { gap: 60px !important; max-width: 1200px !important; }
.story-grid h2 { font-size: clamp(28px, 4vw, 48px) !important; }
.story-content p { font-size: 15px !important; margin-bottom: 20px !important; }
.values { padding: 100px 40px !important; max-width: 1200px !important; }
.values h2 { font-size: clamp(32px, 4.5vw, 56px) !important; margin-bottom: 50px !important; }
.value-card { padding: 32px 26px !important; }
.value-card h3 { font-size: 22px !important; margin-bottom: 14px !important; }
.value-card p { font-size: 13px !important; }
.value-card .num { font-size: 12px !important; margin-bottom: 20px !important; }
.cta-banner { padding: 90px 40px !important; }
.cta-banner h2 { font-size: clamp(32px, 4.5vw, 56px) !important; margin-bottom: 28px !important; }

/* CONTACT PAGE */
.contact-section { padding: 60px 40px 100px !important; max-width: 1200px !important; }
.contact-grid { gap: 60px !important; }
.contact-info h3 { font-size: 22px !important; margin-bottom: 14px !important; }
.contact-info p { font-size: 14px !important; }
.contact-form-wrap { padding: 40px !important; }
.contact-form-wrap h2 { font-size: 24px !important; }
.form-row label { font-size: 10px !important; }
.form-row input, .form-row select, .form-row textarea { padding: 12px 14px !important; font-size: 13px !important; }
