/* ╔══════════════════════════════════════════════╗
   ║  slash/system32 — Main Styles                ║
   ║  Aesthetic: Vaporwave / Synthwave             ║
   ╚══════════════════════════════════════════════╝ */

:root {
  --bg:          #05050f;
  --bg2:         #0a0a1a;
  --bg3:         #0f0f22;
  --surface:     #111128;
  --surface2:    #181830;
  --cyan:        #00f5ff;
  --magenta:     #4A7E54;
  --purple:      #2e5c38;
  --pink:        #6aab77;
  --teal:        #00e5cc;
  --gold:        #ffd700;
  --text:        #e0e0ff;
  --text-dim:    #8888bb;
  --border:      #2a2a50;
  --glow-cyan:   0 0 20px #00f5ff55, 0 0 40px #00f5ff22;
  --glow-mag:    0 0 20px #4A7E5455, 0 0 40px #4A7E5422;
  --font-display: 'Orbitron', monospace;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Rajdhani', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── SELECTION ─────────────────────────────────── */
::selection { background: var(--magenta); color: #fff; }

/* ╔══ NAV ════════════════════════════════════════╗ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2rem; height: 64px;
  background: rgba(5,5,15,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 900;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.logo span { color: var(--cyan); }

.nav-links {
  display: flex; gap: 1.5rem; list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-dim); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links .yt-link { color: var(--magenta); }
.nav-links .yt-link:hover { color: var(--pink); }

.nav-right { margin-left: 1rem; }

.cart-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text); cursor: pointer;
  font-family: var(--font-mono); font-size: 0.8rem;
  padding: 0.4rem 1rem; border-radius: 2px;
  display: flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cart-btn:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.cart-count {
  background: var(--magenta);
  color: #fff; border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: bold;
}

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* ╔══ HERO ════════════════════════════════════════╗ */
.hero {
  position: relative; margin-top: 64px;
  height: 500px; /* hero-banner.jpg slot */
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  perspective: 500px;
  animation: gridScroll 6s linear infinite;
}
@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 80px; }
}

.hero-scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px
  );
}

.hero-img-placeholder {
  position: absolute; inset: 0; z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  background: linear-gradient(90deg, rgba(5,5,15,0.95) 40%, transparent);
  height: 100%; display: flex; flex-direction: column;
  justify-content: center; gap: 0.8rem;
  min-width: 500px;
}

.hero-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--cyan); letter-spacing: 0.2em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.05;
  color: #fff;
  text-shadow: 0 0 30px var(--cyan), 0 0 60px #4A7E54;
}

.hero-sub {
  color: var(--text-dim); font-size: 1rem;
  font-family: var(--font-mono); font-size: 0.85rem;
}

.hero-actions { display: flex; gap: 1rem; margin-top: 0.5rem; }



/* ╔══ BUTTONS ═════════════════════════════════════╗ */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; border-radius: 2px;
  transition: all 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, #2e5c38, #4A7E54, #6aab77);
  color: #fff;
}
.btn-primary:hover {
  box-shadow: var(--glow-mag);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--cyan); color: var(--cyan);
}
.btn-ghost:hover { background: var(--cyan); color: var(--bg); }

.btn-sm {
  padding: 0.35rem 0.8rem; font-size: 0.72rem;
}

/* ╔══ SECTIONS ════════════════════════════════════╗ */
.section {
  padding: 5rem 2rem;
  max-width: 1300px; margin: 0 auto;
}
.section-alt {
  max-width: 100%;
  background: var(--bg2);
  padding: 5rem calc((100% - 1300px) / 2 + 2rem);
}

.section-header {
  margin-bottom: 2.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  position: relative; display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.section-sub {
  margin-top: 0.8rem; color: var(--text-dim);
  font-family: var(--font-mono); font-size: 0.82rem;
}

/* ╔══ PRODUCT GRID ════════════════════════════════╗ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.product-thumb {
  width: 100%; aspect-ratio: 1;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-thumb-placeholder {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: #333; text-align: center; padding: 1rem; line-height: 1.5;
}

.product-type-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--magenta); color: #fff;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; padding: 2px 7px; border-radius: 2px;
  text-transform: uppercase;
}

.product-info { padding: 1rem; }
.product-name {
  font-family: var(--font-display); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.05em;
  color: var(--text); margin-bottom: 0.15rem;
}
.product-artist {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--text-dim); margin-bottom: 0.6rem;
}
.product-price {
  font-family: var(--font-display); font-size: 1rem;
  color: var(--cyan); font-weight: 700;
}

.product-actions {
  display: flex; gap: 0.5rem; margin-top: 0.8rem;
}

/* Size selector */
.size-select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text); border-radius: 2px;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  cursor: pointer;
}

/* ╔══ YOUTUBE SECTION ════════════════════════════╗ */
.yt-section {
  max-width: 100%;
  background: linear-gradient(135deg, var(--bg), #0a1a0d, var(--bg));
  padding: 5rem 2rem;
}
.yt-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 4rem;
  flex-wrap: wrap;
}
.yt-text { flex: 1; min-width: 260px; }
.yt-text p {
  color: var(--text-dim); font-size: 1.05rem;
  margin: 1rem 0 1.5rem;
}
.yt-big-btn { font-size: 0.9rem; padding: 0.9rem 2rem; }
.yt-thumb {
  border-radius: 4px;
  border: 1px solid var(--border);
  overflow: hidden;
  /* youtube-preview.jpg goes here — 640×360px */
}

/* ╔══ COMING SOON ════════════════════════════════╗ */
.coming-soon-block {
  text-align: center; padding: 4rem 2rem;
  border: 1px dashed var(--border); border-radius: 4px;
  margin-top: 1rem;
}
.coming-soon-block p { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.8rem; margin-top: 0.5rem; }
.glitch-text {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--cyan); position: relative;
  display: inline-block;
  animation: glitch 2.5s infinite;
}
@keyframes glitch {
  0%,90%,100%   { text-shadow: none; transform: none; }
  91% { text-shadow: 2px 0 var(--magenta), -2px 0 var(--cyan); transform: skewX(1deg); }
  93% { text-shadow: -2px 0 var(--magenta), 2px 0 var(--cyan); transform: skewX(-1deg); }
  95% { text-shadow: none; transform: none; }
  97% { text-shadow: 2px 2px var(--purple); transform: skewX(2deg); }
}

/* ╔══ CART DRAWER ════════════════════════════════╗ */
.cart-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.7);
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed; top: 0; right: -420px; z-index: 1200;
  width: 400px; height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-display); font-size: 1rem; color: var(--cyan); }
.cart-header button { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1.2rem; }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-empty { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.8rem; text-align: center; margin-top: 3rem; }

.cart-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cart-item-thumb {
  width: 60px; height: 60px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: #333; font-family: var(--font-mono);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--font-display); font-size: 0.8rem; margin-bottom: 0.2rem; }
.cart-item-meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-dim); }
.cart-item-price { font-family: var(--font-display); font-size: 0.9rem; color: var(--cyan); }
.cart-item-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1rem; padding: 0; }
.cart-item-remove:hover { color: var(--magenta); }

.cart-footer {
  padding: 1.5rem; border-top: 1px solid var(--border);
}
.cart-total {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--text); margin-bottom: 1rem;
}
.cart-note {
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--text-dim); text-align: center; margin-top: 0.7rem;
}

/* Modal image zoom */
.modal-img-wrap {
  position: relative; cursor: zoom-in;
  margin-bottom: 1.5rem; border-radius: 2px; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.modal-img-wrap.zoomed {
  cursor: zoom-out;
  position: fixed; inset: 1rem; z-index: 1500;
  margin: 0; border-radius: 4px;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,0.9);
}
.modal-img {
  width: 100%; max-height: 280px;
  object-fit: cover; display: block;
  transition: max-height 0.3s, object-fit 0.3s;
}
.modal-img-wrap.zoomed .modal-img {
  max-height: 100%; width: auto;
  max-width: 100%; object-fit: contain;
}
.modal-img-zoom-icon {
  position: absolute; bottom: 0.5rem; right: 0.5rem;
  background: rgba(5,5,15,0.8);
  color: var(--cyan); font-size: 1.1rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--cyan);
  opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.modal-img-wrap:hover .modal-img-zoom-icon { opacity: 1; }
.modal-img-wrap.zoomed .modal-img-zoom-icon {
  opacity: 1; top: 0.75rem; right: 0.75rem; bottom: auto;
}

/* ╔══ MODAL ══════════════════════════════════════╗ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1300;
  background: rgba(0,0,0,0.85);
}
.modal-overlay.open { display: block; }

.modal {
  position: fixed; top: 50%; left: 50%; z-index: 1400;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px; width: 90%; max-width: 600px;
  max-height: 85vh; overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: transform 0.25s, opacity 0.25s;
}
.modal.open { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: all; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-dim);
  cursor: pointer; font-size: 1.2rem; z-index: 1;
}
.modal-body { padding: 2rem; }
.modal-product-img {
  width: 100%; aspect-ratio: 1; max-height: 280px;
  object-fit: cover; background: var(--surface2);
  border-radius: 2px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: #333; font-family: var(--font-mono); font-size: 0.7rem;
}
.modal-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.3rem; }
.modal-artist { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.82rem; margin-bottom: 1rem; }
.modal-desc { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.7; white-space: pre-line;}
.modal-price { font-family: var(--font-display); font-size: 1.8rem; color: var(--cyan); margin-bottom: 1.5rem; }
.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ╔══ TOAST ══════════════════════════════════════╗ */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  color: var(--text); font-family: var(--font-mono); font-size: 0.8rem;
  padding: 0.8rem 1.8rem; border-radius: 2px;
  z-index: 2000; opacity: 0; transition: opacity 0.3s;
  pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; }

/* ╔══ FOOTER ═════════════════════════════════════╗ */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-brand .logo { font-size: 0.95rem; }
.footer-brand p { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.72rem; margin-top: 0.5rem; }
.footer-links { display: flex; gap: 1.5rem; align-items: flex-start; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-family: var(--font-mono); font-size: 0.78rem; }
.footer-links a:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 1rem; align-items: flex-start; }
.footer-social a {
  color: var(--text-dim); text-decoration: none;
  font-family: var(--font-mono); font-size: 0.75rem;
  border: 1px solid var(--border); padding: 0.3rem 0.7rem;
  border-radius: 2px; transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--magenta); color: var(--magenta); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 1.2rem;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-dim); font-family: var(--font-mono); font-size: 0.7rem; }
.pay-icons { display: flex; gap: 0.5rem; }
.pay-icons span {
  border: 1px solid var(--border); color: var(--text-dim);
  font-family: var(--font-mono); font-size: 0.65rem;
  padding: 0.25rem 0.5rem; border-radius: 2px;
}

/* ╔══ RESPONSIVE ═════════════════════════════════╗
   Breakpoints:
     480px  — small phones
     640px  — large phones / small tablets
     768px  — tablets
     1024px — small desktops
   ╚══════════════════════════════════════════════╝ */

/* ── TABLET (≤768px) ───────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0; z-index: 999;
  }
  .nav-links.open {
    display: flex;
    background: rgba(5,5,15,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem; gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open li { border-bottom: 1px solid var(--border); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    display: block; padding: 1rem 0;
    font-size: 0.9rem;
  }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-right { margin-left: 0.5rem; }

  /* Hero — stack vertically on tablet: image on top, content below */
  .hero {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-img-placeholder {
    position: relative;
    height: 240px;
    width: 100%;
  }
  .hero-bg-grid,
  .hero-scanlines { display: none; }
  .hero-content {
    position: relative;
    min-width: unset;
    padding: 2rem 1.5rem;
    height: auto;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
  }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-actions { flex-wrap: wrap; gap: 0.75rem; }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 130px; }

  /* Sections */
  .section { padding: 3.5rem 1.25rem; }
  .section-alt { padding: 3.5rem 1.25rem; }

  /* Product grid — 2 columns on tablet */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-name { font-size: 0.78rem; }
  .product-actions { flex-wrap: wrap; }
  .product-actions .btn { font-size: 0.68rem; padding: 0.4rem 0.7rem; }

  /* YouTube section */
  .yt-section { padding: 3.5rem 1.25rem; }
  .yt-inner { flex-direction: column; gap: 2rem; }
  .yt-thumb { width: 100% !important; height: auto !important; aspect-ratio: 16/9; }

  /* Cart drawer */
  .cart-drawer { width: 100%; right: -100%; }
  .cart-drawer.open { right: 0; }

  /* Modal */
  .modal { width: 95%; max-height: 90vh; }

  /* Footer */
  .footer-inner {
    flex-direction: column; gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column; align-items: flex-start; gap: 0.75rem;
  }
}

/* ── LARGE PHONE (≤640px) ──────────────────────── */
@media (max-width: 640px) {

  /* Nav — tighter */
  .navbar { padding: 0 1rem; gap: 0.5rem; }
  .logo { font-size: 0.95rem; }
  .cart-btn { padding: 0.4rem 0.7rem; font-size: 0.72rem; }

  /* Sections */
  .section { padding: 3rem 1rem; }
  .section-alt { padding: 3rem 1rem; }
  .section-title { font-size: 1.3rem; }

  /* Product grid — still 2 cols but tighter */
  .product-grid { gap: 0.75rem; }
  .product-info { padding: 0.75rem; }
  .product-name { font-size: 0.75rem; }
  .product-price { font-size: 0.9rem; }

  /* Hero */
  .hero-img-placeholder { height: 200px; }
  .hero-content { padding: 1.5rem 1rem; }
  .hero-label { font-size: 0.68rem; }
  .hero-title { font-size: clamp(1.6rem, 9vw, 2.4rem); }
  .hero-sub { font-size: 0.78rem; }

  /* Buttons */
  .btn { padding: 0.6rem 1.2rem; font-size: 0.75rem; }

  /* Coming soon */
  .coming-soon-block { padding: 2.5rem 1rem; }
  .glitch-text { font-size: 1.5rem; }

  /* Footer */
  .footer { padding: 2rem 1rem 1.5rem; }
  .footer-links { gap: 1rem; }
  .pay-icons { flex-wrap: wrap; }
}

/* ── SMALL PHONE (≤480px) ──────────────────────── */
@media (max-width: 480px) {

  /* Single column product grid on very small screens */
  .product-grid { grid-template-columns: 1fr; }

  /* Larger touch targets */
  .btn { min-height: 44px; }
  .cart-btn { min-height: 38px; }
  .size-select { min-height: 38px; font-size: 0.8rem; padding: 0.5rem; }

  /* Hero */
  .hero-img-placeholder { height: 180px; }
  .hero-content { background: var(--bg2); }
  .hero-title { font-size: clamp(1.5rem, 10vw, 2rem); }
  .hero-actions .btn { width: 100%; }

  /* Cart */
  .cart-header h3 { font-size: 0.9rem; }
  .cart-item-thumb { width: 48px; height: 48px; }
  .cart-item-name { font-size: 0.75rem; }

  /* Modal full screen on tiny phones */
  .modal {
    width: 100%; height: 100%;
    max-height: 100vh;
    border-radius: 0;
    top: 0; left: 0;
    transform: none;
  }
  .modal.open { transform: none; }
  .modal-body { padding: 1.25rem; }
  .modal-title { font-size: 1.1rem; }
  .modal-price { font-size: 1.4rem; }

  /* Section titles */
  .section-title { font-size: 1.15rem; }
  .section-sub { font-size: 0.75rem; }

  /* YouTube */
  .yt-big-btn { width: 100%; justify-content: center; }

  /* Footer social row wraps nicely */
  .footer-social { flex-wrap: wrap; }
  .footer-bottom p { font-size: 0.65rem; }
}

/* Free Bonus corner ribbon */
.product-card.has-bonus {
  overflow: hidden;
}

.product-card.has-bonus::before {
  content: "FREE BONUS";
  position: absolute;
  top: 18px;
  right: -28px;
  width: 110px;
  background: #ff003c;
  color: #fff;
  font-size: 9px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 5px 0;
  transform: rotate(45deg);
  z-index: 10;
}