/* ═══════════════════════════════════════════════════════════════════
   EVERSTAR SPORTS — PRODUCT PAGE STYLES v1.0
   Shared by all /{category}/{product}/ pages. Loads alongside
   modern.css (theme layer) and inherits its --es-* tokens.
   Brand: #ff0000 red · #070707 coal · #25D366 WhatsApp green.
   Signature element: the "Tale of the Tape" spec sheet.
   ═══════════════════════════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; background: #0a0a0a; color: #fff; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Bebas Neue', cursive; letter-spacing: 2px; }
img { max-width: 100%; }

/* ── NAVBAR (site component) ── */
.navbar { position: relative; top: 0; left: 0; right: 0; z-index: 999; background: linear-gradient(135deg, #000 0%, #1a1a1a 100%); border-bottom: 4px solid #ff0000; box-shadow: 0 4px 20px rgba(255,0,0,0.3); }
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.nav-logo { font-size: 1.8rem; color: #ff0000; text-decoration: none; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 3px; }
.nav-logo span { color: #fff; font-weight: 300; }
.nav-links { display: flex; gap: 5px; list-style: none; align-items: center; }
.nav-links a { color: #ccc; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; padding: 8px 14px; border-radius: 4px; transition: all 0.3s; text-transform: uppercase; }
.nav-cta { background: #ff0000 !important; color: #fff !important; border-radius: 50px !important; }
.nav-cta:hover { background: #cc0000 !important; }
.nav-cta::after { display: none !important; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.mobile-menu-btn .bar { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.mobile-menu-btn.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU (site component) ── */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); z-index: 998; padding: 100px 40px 40px; overflow-y: auto; display: flex; flex-direction: column; visibility: hidden; pointer-events: none; opacity: 0; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, visibility 0s linear 0.4s; }
.mobile-menu.active { visibility: visible; pointer-events: all; opacity: 1; transform: translateX(0); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, visibility 0s linear 0s; }
.mobile-menu > a { font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; color: #fff; text-decoration: none; padding: 10px 0; border-bottom: 1px solid #1a1a1a; display: flex; align-items: center; gap: 16px; opacity: 0; transform: translateX(40px); transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease; }
.mobile-menu > a i { color: #ff0000; font-size: 1rem; width: 24px; }
.mobile-menu > a:hover { color: #ff0000; }
.mobile-menu.active > a:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:0.05s; }
.mobile-menu.active > a:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:0.10s; }
.mobile-menu.active > a:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:0.15s; }
.mobile-menu.active > a:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:0.20s; }
.mobile-menu.active > a:nth-child(5) { opacity:1; transform:translateX(0); transition-delay:0.25s; }
.mobile-menu.active > a:nth-child(6) { opacity:1; transform:translateX(0); transition-delay:0.30s; }
.mobile-menu.active > a:nth-child(7) { opacity:1; transform:translateX(0); transition-delay:0.35s; }
.mobile-contact { margin-top: 20px; padding-top: 20px; border-top: 2px solid #333; }
.mobile-contact-item { display: flex; align-items: center; gap: 12px; padding: 14px; margin-bottom: 10px; background: #1a1a1a; border-radius: 8px; color: #ccc; text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.mobile-contact-item:hover { background: #ff0000; color: #fff; }
.mobile-contact-item i { color: #ff0000; font-size: 1.1rem; width: 24px; }
.mobile-contact-item:hover i { color: #fff; }
.mobile-contact-item.whatsapp-cta { background: #25D366; color: #fff; justify-content: center; font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 2px; border-radius: 8px; margin-top: 8px; }
.mobile-contact-item.whatsapp-cta i { color: #fff; }
.mobile-social { display: flex; justify-content: center; gap: 20px; margin-top: 20px; padding-top: 20px; border-top: 1px solid #333; }
.mobile-social a { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: #1a1a1a; border-radius: 50%; color: #fff; font-size: 1.3rem; text-decoration: none; border: none; padding: 0; transition: background 0.3s; }
.mobile-social a:hover { background: #ff0000; }

/* ── BREADCRUMBS (site component) ── */
.breadcrumbs { padding: 10px 20px; border-bottom: 1px solid #141414; }
.breadcrumbs a, .breadcrumbs span, .breadcrumbs .current { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.breadcrumbs a { color: #444; text-decoration: none; }
.breadcrumbs a:hover { color: #ff0000; }
.breadcrumbs span { color: #2a2a2a; padding: 0 6px; }
.breadcrumbs .current { color: #888; }

/* ═══ PDP — PRODUCT DETAIL ══════════════════════════════════════════ */
.pdp { max-width: 1240px; margin: 0 auto; padding: 40px 24px 72px; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }

/* ── GALLERY ── */
.pdp-gallery { position: sticky; top: 24px; }
.pdp-stage { position: relative; aspect-ratio: 1/1; background: #101010; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 30px; overflow: hidden; cursor: zoom-in; }
.pdp-stage::before, .pdp-stage::after { content: ''; position: absolute; width: 26px; height: 26px; border: 2px solid rgba(255,0,0,0.5); pointer-events: none; }
.pdp-stage::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.pdp-stage::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }
.pdp-stage img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.45s cubic-bezier(0.16,1,0.3,1); }
.pdp-stage:hover img { transform: scale(1.035); }
.pdp-counter { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; color: #888; background: rgba(0,0,0,0.55); padding: 4px 12px; border-radius: 999px; pointer-events: none; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pdp-thumb { width: 66px; height: 66px; flex-shrink: 0; background: #101010; border: 1px solid #232323; border-radius: 10px; padding: 6px; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb:hover { border-color: #555; transform: translateY(-2px); }
.pdp-thumb.active { border-color: #ff0000; box-shadow: 0 0 0 1px rgba(255,0,0,0.35); }

/* ── INFO COLUMN ── */
.pdp-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #ff3b3b; margin-bottom: 12px; }
.pdp-eyebrow .sku { color: #666; letter-spacing: 2px; }
.pdp-name { font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 0.95; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.pdp-stock { display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #25D366; margin-bottom: 18px; }
.pdp-stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 8px rgba(37,211,102,0.8); }
.pdp-price { font-family: 'Bebas Neue', cursive; font-size: clamp(2rem, 3.2vw, 2.7rem); letter-spacing: 1.5px; line-height: 1; margin-bottom: 4px; }
.pdp-price .from { font-size: 0.55em; color: #888; letter-spacing: 2px; margin-right: 6px; }
.pdp-price-hint { font-size: 0.83rem; color: #7a7a7a; margin-bottom: 22px; }
.pdp-desc { font-weight: 300; font-size: 0.98rem; line-height: 1.75; color: #c9c9c9; max-width: 62ch; margin-bottom: 10px; }
.pdp-aka { font-size: 0.8rem; line-height: 1.6; color: #6d6d6d; max-width: 62ch; margin-bottom: 6px; }
.pdp-section { margin-top: 24px; }
.pdp-label { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: #999; margin-bottom: 12px; }
.pdp-label::before { content: ''; width: 18px; height: 2px; background: #ff0000; }

/* size pills */
.pdp-sizes { display: flex; flex-wrap: wrap; gap: 9px; }
.pdp-size { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; color: #ddd; background: #141414; border: 1px solid #2a2a2a; border-radius: 5px; padding: 10px 18px; cursor: pointer; transition: all 0.2s; }
.pdp-size:hover { border-color: #ff0000; color: #fff; }
.pdp-size.selected { background: #ff0000; border-color: #ff0000; color: #fff; }

/* colour swatches (static) */
.pdp-colors { display: flex; flex-wrap: wrap; gap: 9px; }
.pdp-color { display: inline-flex; align-items: center; gap: 8px; background: #141414; border: 1px solid #262626; border-radius: 999px; padding: 7px 14px 7px 8px; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 500; color: #bbb; }
.pdp-color-dot { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); flex-shrink: 0; }

/* CTAs */
.pdp-cta-wrap { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.pdp-cta { display: flex; align-items: center; justify-content: center; gap: 12px; background: #25D366; color: #fff; text-decoration: none; font-family: 'Bebas Neue', cursive; font-size: 1.4rem; letter-spacing: 2px; padding: 17px 20px; border-radius: 9px; transition: background 0.25s, transform 0.25s, box-shadow 0.25s; }
.pdp-cta i { font-size: 1.5rem; }
.pdp-cta:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.28); }
.pdp-call { display: flex; align-items: center; justify-content: center; gap: 10px; color: #bbb; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; padding: 13px 20px; border: 1px solid #2e2e2e; border-radius: 9px; transition: border-color 0.2s, color 0.2s; }
.pdp-call i { color: #ff0000; }
.pdp-call:hover { border-color: #ff0000; color: #fff; }
.pdp-wholesale { font-size: 0.82rem; color: #8a8a8a; text-align: center; margin-top: 2px; }
.pdp-wholesale a { color: #ff4444; text-decoration: none; font-weight: 500; }
.pdp-wholesale a:hover { text-decoration: underline; }

/* ── TALE OF THE TAPE (signature) ── */
.tape { margin-top: 34px; background: #0d0d0d; border: 1px solid rgba(255,255,255,0.09); border-top: 3px solid #ff0000; border-radius: 12px; padding: 22px 24px 12px; }
.tape-title { display: flex; align-items: center; gap: 14px; font-family: 'Bebas Neue', cursive; font-size: 1.25rem; letter-spacing: 4px; color: #fff; text-align: center; justify-content: center; margin-bottom: 14px; }
.tape-title::before, .tape-title::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, #333); }
.tape-title::after { background: linear-gradient(90deg, #333, transparent); }
.tape-rows { list-style: none; }
.tape-row { display: flex; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px dotted #242424; }
.tape-row:last-child { border-bottom: none; }
.tape-k { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #848484; white-space: nowrap; }
.tape-leader { flex: 1; border-bottom: 1px dotted #2c2c2c; transform: translateY(-4px); }
.tape-v { font-family: 'Bebas Neue', cursive; font-size: 1.02rem; letter-spacing: 1.2px; color: #f2f2f2; text-align: right; }

/* share */
.pdp-share { display: flex; align-items: center; gap: 10px; margin-top: 26px; }
.pdp-share-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-right: 4px; }
.pdp-share-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #2a2a2a; background: #141414; color: #ccc; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.pdp-share-btn:hover { border-color: #ff0000; color: #fff; transform: translateY(-2px); }

/* ── RELATED PRODUCTS (static, crawlable) ── */
.rp-section { background: #050505; border-top: 1px solid #111; padding: 56px 24px 64px; }
.rp-inner { max-width: 1240px; margin: 0 auto; }
.rp-title { font-size: 1.8rem; letter-spacing: 2.5px; text-transform: uppercase; display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.rp-title::before { content: ''; width: 34px; height: 3px; background: #ff0000; transform: skewX(-20deg); }
.rp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rp-card { display: block; text-decoration: none; background: #101010; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s; }
.rp-card:hover { transform: translateY(-5px); border-color: rgba(255,0,0,0.45); box-shadow: 0 18px 40px -14px rgba(0,0,0,0.7); }
.rp-img { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 20px; background: #0e0e0e; }
.rp-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s; }
.rp-card:hover .rp-img img { transform: scale(1.05); }
.rp-body { padding: 14px 16px 16px; border-top: 1px solid #161616; }
.rp-name { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; color: #e8e8e8; line-height: 1.35; margin-bottom: 6px; }
.rp-price { font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 1.5px; color: #ff3b3b; }
.rp-cat { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #555; margin-bottom: 4px; }

/* ── TRUST STRIP (site component) ── */
.trust-strip { background: #0a0a0a; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 18px 20px; }
.trust-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #ff0000; font-size: 1.1rem; }
.trust-text strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.trust-text span { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; color: #777; }

/* ── ALSO BROWSE (site component) ── */
.related-section { padding: 40px 0; background: #050505; border-top: 1px solid #111; }
.related-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.related-label { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #444; }
.related-link { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; color: #888; text-decoration: none; border: 1px solid #222; padding: 8px 16px; border-radius: 2px; transition: border-color 0.2s, color 0.2s; }
.related-link:hover { border-color: #ff0000; color: #fff; }

/* ── FOOTER (site component) ── */
.footer { background: #0a0a0a; padding: 60px 20px 30px; border-top: 3px solid #ff0000; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { color: #ff0000; margin-bottom: 18px; font-size: 1.4rem; }
.footer-section p, .footer-section a { color: #999; text-decoration: none; display: block; margin-bottom: 10px; font-size: 0.9rem; transition: color 0.3s; }
.footer-section a:hover { color: #ff0000; }
.social-links { display: flex; gap: 18px; margin-top: 14px; }
.social-links a { color: #fff; font-size: 1.6rem; transition: all 0.3s; }
.social-links a:hover { color: #ff0000; transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 28px; border-top: 1px solid #222; color: #444; font-size: 0.85rem; }

/* ── FULLSCREEN VIEWER (site component) ── */
.fullscreen-viewer { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.98); z-index: 99999; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.fullscreen-viewer.active { display: flex; opacity: 1; }
.fullscreen-image { max-width: 95vw; max-height: 95vh; object-fit: contain; }
.fullscreen-close { position: absolute; top: 20px; right: 20px; font-size: 2rem; color: #fff; cursor: pointer; width: 55px; height: 55px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,0,0,0.8); transition: all 0.3s; z-index: 10; border: none; }
.fullscreen-close:hover { transform: rotate(90deg); background: #ff0000; }
.fullscreen-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: #fff; cursor: pointer; width: 55px; height: 75px; display: flex; align-items: center; justify-content: center; background: rgba(255,0,0,0.5); transition: background 0.3s; z-index: 10; border: none; }
.fullscreen-nav:hover { background: rgba(255,0,0,0.9); }
.fullscreen-prev { left: 0; border-radius: 0 8px 8px 0; }
.fullscreen-next { right: 0; border-radius: 8px 0 0 8px; }
.fullscreen-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #666; font-size: 0.85rem; }

/* ── TOAST (site component) ── */
.toast { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: #fff; padding: 14px 24px; border-radius: 50px; font-family: 'Bebas Neue', cursive; font-size: 1.1rem; z-index: 99999; opacity: 0; transform: translateY(20px); transition: all 0.3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateY(0); }

/* ── STICKY MOBILE ENQUIRY BAR ── */
.pdp-stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 997; display: none; align-items: center; gap: 14px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,7,7,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid rgba(255,0,0,0.35); }
.pdp-stickybar-price { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 1px; line-height: 1; white-space: nowrap; }
.pdp-stickybar-price small { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.55rem; font-weight: 600; letter-spacing: 1.5px; color: #888; text-transform: uppercase; margin-bottom: 2px; }
.pdp-stickybar-cta { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; background: #25D366; color: #fff; text-decoration: none; font-family: 'Bebas Neue', cursive; font-size: 1.15rem; letter-spacing: 1.5px; padding: 12px; border-radius: 8px; }

/* ── ENTRANCE MOTION (respects reduced-motion) ── */
@media (prefers-reduced-motion: no-preference) {
    @keyframes pdpRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
    .pdp-gallery { animation: pdpRise 0.6s cubic-bezier(0.16,1,0.3,1) both; }
    .pdp-info > * { animation: pdpRise 0.55s cubic-bezier(0.16,1,0.3,1) both; }
    .pdp-info > *:nth-child(1) { animation-delay: 0.05s; }
    .pdp-info > *:nth-child(2) { animation-delay: 0.1s; }
    .pdp-info > *:nth-child(3) { animation-delay: 0.15s; }
    .pdp-info > *:nth-child(4) { animation-delay: 0.2s; }
    .pdp-info > *:nth-child(5) { animation-delay: 0.25s; }
    .pdp-info > *:nth-child(n+6) { animation-delay: 0.3s; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .navbar { top: 0; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .rp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 860px) {
    .pdp { padding: 26px 18px 60px; }
    .pdp-grid { grid-template-columns: 1fr; gap: 30px; }
    .pdp-gallery { position: relative; top: 0; }
    .pdp-name { font-size: clamp(2.1rem, 8vw, 2.8rem); }
    .pdp-stickybar { display: flex; }
    body { padding-bottom: 74px; }
    .toast { bottom: 90px; }
}
@media (max-width: 600px) {
    .trust-strip { padding: 14px 16px; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .trust-item { padding: 10px 12px; gap: 10px; border-bottom: 1px solid #111; }
    .trust-icon { width: 34px; height: 34px; font-size: 0.9rem; }
    .trust-text strong { font-size: 0.72rem; margin-bottom: 1px; }
    .trust-text span { font-size: 0.63rem; }
    .pdp-stage { padding: 18px; }
    .pdp-thumb { width: 56px; height: 56px; }
    .pdp-cta { font-size: 1.2rem; padding: 15px; }
    .tape { padding: 18px 16px 8px; }
    .rp-section { padding: 40px 16px 48px; }
    .rp-title { font-size: 1.5rem; }
}

/* ============ ES EXPANDED PRODUCT CONTENT ============ */
.pc-section { background: #070707; border-top: 1px solid #141414; padding: 58px 24px 62px; }
.pc-inner { max-width: 860px; margin: 0 auto; }
.pc-title { font-family: 'Bebas Neue', cursive; font-size: 1.9rem; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.pc-title::before { content: ''; width: 34px; height: 3px; background: #ff0000; transform: skewX(-20deg); flex-shrink: 0; }
.pc-body p { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; line-height: 1.85; color: #b9b9b9; margin-bottom: 18px; }
.pc-body p:last-child { margin-bottom: 0; }
.pc-body strong { color: #ededed; font-weight: 700; }
.pc-body a { color: #ff4d4d; text-decoration: none; border-bottom: 1px solid rgba(255,77,77,0.35); transition: color .2s, border-color .2s; }
.pc-body a:hover { color: #ff7a7a; border-color: rgba(255,122,122,0.7); }
.pc-h3 { font-family: 'Oswald', sans-serif; font-size: 1.12rem; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; color: #fff; margin: 34px 0 14px; padding-left: 14px; border-left: 3px solid #ff0000; }
.pc-list { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
.pc-list li { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; line-height: 1.75; color: #b9b9b9; padding: 9px 0 9px 24px; border-bottom: 1px dotted #1e1e1e; position: relative; }
.pc-list li:last-child { border-bottom: none; }
.pc-list li::before { content: ''; position: absolute; left: 4px; top: 18px; width: 7px; height: 2px; background: #ff0000; transform: skewX(-20deg); }
.pc-list.pc-ol { counter-reset: pcstep; }
.pc-list.pc-ol li { padding-left: 34px; }
.pc-list.pc-ol li::before { counter-increment: pcstep; content: counter(pcstep); left: 0; top: 9px; width: 20px; height: 20px; background: rgba(255,0,0,0.12); border: 1px solid rgba(255,0,0,0.32); border-radius: 50%; transform: none; color: #ff5a5a; font-family: 'Bebas Neue', cursive; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.pc-list strong { color: #ededed; }
.pc-list a { color: #ff4d4d; text-decoration: none; border-bottom: 1px solid rgba(255,77,77,0.35); }
.pc-list a:hover { color: #ff7a7a; }
.pc-faq-head { margin-top: 44px; }
.pc-faqs { margin-top: 6px; }
.pc-faq { border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; background: #0d0d0d; margin-bottom: 10px; overflow: hidden; transition: border-color .25s; }
.pc-faq[open] { border-color: rgba(255,0,0,0.3); }
.pc-faq summary { cursor: pointer; list-style: none; padding: 15px 46px 15px 18px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; color: #e6e6e6; position: relative; }
.pc-faq summary::-webkit-details-marker { display: none; }
.pc-faq summary::after { content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', cursive; font-size: 1.3rem; color: #ff0000; line-height: 1; transition: transform .25s; }
.pc-faq[open] summary::after { content: '\2013'; }
.pc-faq summary:hover { color: #fff; }
.pc-faq-a { padding: 0 18px 16px; }
.pc-faq-a p { font-family: 'Montserrat', sans-serif; font-size: 0.89rem; line-height: 1.8; color: #a5a5a5; margin: 0; }
@media (max-width: 720px) {
  .pc-section { padding: 42px 18px 46px; }
  .pc-title { font-size: 1.55rem; }
  .pc-body p, .pc-list li { font-size: 0.9rem; }
  .pc-h3 { font-size: 1.02rem; margin-top: 28px; }
}

/* ============ ES GUIDES ============ */
.gd-inner { max-width: 860px; margin: 0 auto; }
.gd-hero { background: linear-gradient(180deg, #0d0d0d 0%, #070707 100%); border-bottom: 1px solid #161616; padding: 58px 24px 46px; }
.gd-hero-h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2.2rem, 6vw, 3.3rem); letter-spacing: 3px; text-transform: uppercase; color: #fff; line-height: 1.02; margin-bottom: 16px; }
.gd-hero-h1::after { content: ''; display: block; width: 64px; height: 4px; background: #ff0000; transform: skewX(-20deg); margin-top: 16px; }
.gd-hero-sub { font-family: 'Montserrat', sans-serif; font-size: 1rem; line-height: 1.8; color: #9d9d9d; max-width: 640px; margin-top: 20px; }
.gd-list-sec { background: #070707; padding: 46px 24px 62px; }
.gd-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gd-card { display: flex; flex-direction: column; text-decoration: none; background: #0e0e0e; border: 1px solid rgba(255,255,255,0.07); border-left: 3px solid #ff0000; border-radius: 12px; padding: 22px 22px 20px; transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s; }
.gd-card:hover { transform: translateY(-4px); border-color: rgba(255,0,0,0.4); border-left-color: #ff0000; box-shadow: 0 18px 40px -16px rgba(0,0,0,.75); }
.gd-card-cat { font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #ff4d4d; margin-bottom: 9px; }
.gd-card-t { font-family: 'Oswald', sans-serif; font-size: 1.16rem; font-weight: 600; letter-spacing: .6px; color: #fff; line-height: 1.28; margin-bottom: 10px; }
.gd-card-d { font-family: 'Montserrat', sans-serif; font-size: .84rem; line-height: 1.7; color: #8f8f8f; margin-bottom: 16px; flex: 1; }
.gd-card-go { font-family: 'Montserrat', sans-serif; font-size: .74rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: #e0e0e0; display: inline-flex; align-items: center; gap: 8px; }
.gd-card:hover .gd-card-go { color: #ff4d4d; }
.gd-card-go i { font-size: .7rem; transition: transform .25s; }
.gd-card:hover .gd-card-go i { transform: translateX(4px); }

.gd { background: #070707; padding: 46px 24px 64px; }
.gd-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.gd-cat { font-family: 'Montserrat', sans-serif; font-size: .64rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #ff4d4d; border: 1px solid rgba(255,0,0,.3); border-radius: 100px; padding: 5px 12px; }
.gd-read { font-family: 'Montserrat', sans-serif; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; color: #6a6a6a; }
.gd-h1 { font-family: 'Bebas Neue', cursive; font-size: clamp(2rem, 5.4vw, 3rem); letter-spacing: 2.5px; text-transform: uppercase; color: #fff; line-height: 1.05; margin-bottom: 18px; }
.gd-lead { font-family: 'Montserrat', sans-serif; font-size: 1.04rem; line-height: 1.8; color: #cfcfcf; font-weight: 500; padding: 18px 0 22px 20px; border-left: 3px solid #ff0000; margin-bottom: 30px; }
.gd-h2 { font-family: 'Oswald', sans-serif; font-size: 1.32rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: #fff; margin: 40px 0 16px; display: flex; align-items: center; gap: 13px; }
.gd-h2::before { content: ''; width: 24px; height: 3px; background: #ff0000; transform: skewX(-20deg); flex-shrink: 0; }
.gd-body em { color: #dcdcdc; font-style: italic; }

.gd-cta { background: linear-gradient(135deg, #131313 0%, #0b0b0b 100%); border: 1px solid rgba(255,0,0,.22); border-radius: 14px; padding: 30px 28px; margin: 44px 0 8px; text-align: center; }
.gd-cta h3 { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.gd-cta p { font-family: 'Montserrat', sans-serif; font-size: .9rem; line-height: 1.75; color: #9d9d9d; max-width: 520px; margin: 0 auto 20px; }
.gd-cta-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #06210f; font-family: 'Montserrat', sans-serif; font-size: .84rem; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none; padding: 14px 28px; border-radius: 100px; transition: transform .25s, box-shadow .25s; }
.gd-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(37,211,102,.6); }
.gd-cta-btn i { font-size: 1.05rem; }

.gd-rel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gd-rel-card { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-decoration: none; background: #0e0e0e; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 15px 18px; transition: border-color .25s, transform .25s; }
.gd-rel-card:hover { border-color: rgba(255,0,0,.42); transform: translateY(-2px); }
.gd-rel-name { font-family: 'Montserrat', sans-serif; font-size: .86rem; font-weight: 600; color: #e6e6e6; line-height: 1.35; }
.gd-rel-price { font-family: 'Bebas Neue', cursive; font-size: 1rem; letter-spacing: 1.3px; color: #ff3b3b; white-space: nowrap; }

.gd-more { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gd-more-card { display: flex; flex-direction: column; gap: 6px; text-decoration: none; background: #0c0c0c; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; padding: 16px 18px; transition: border-color .25s, transform .25s; }
.gd-more-card:hover { border-color: rgba(255,0,0,.38); transform: translateY(-2px); }
.gd-more-cat { font-family: 'Montserrat', sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: #ff4d4d; }
.gd-more-t { font-family: 'Montserrat', sans-serif; font-size: .87rem; font-weight: 600; color: #ddd; line-height: 1.4; }

/* guides entry point on category / home pages */
.gx-strip { background: #0a0a0a; border-top: 1px solid #161616; border-bottom: 1px solid #161616; padding: 40px 24px; }
.gx-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.gx-text h3 { font-family: 'Bebas Neue', cursive; font-size: 1.5rem; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.gx-text p { font-family: 'Montserrat', sans-serif; font-size: .88rem; color: #8f8f8f; line-height: 1.65; max-width: 560px; }
.gx-links { display: flex; gap: 10px; flex-wrap: wrap; }
.gx-links a { font-family: 'Montserrat', sans-serif; font-size: .76rem; font-weight: 600; letter-spacing: .6px; color: #ddd; text-decoration: none; border: 1px solid rgba(255,255,255,.13); border-radius: 100px; padding: 9px 16px; transition: border-color .25s, color .25s, background .25s; }
.gx-links a:hover { border-color: rgba(255,0,0,.5); color: #fff; background: rgba(255,0,0,.07); }

@media (max-width: 760px) {
  .gd-list, .gd-rel, .gd-more { grid-template-columns: 1fr; }
  .gd, .gd-hero, .gd-list-sec { padding-left: 18px; padding-right: 18px; }
  .gd-h2 { font-size: 1.14rem; margin-top: 32px; }
  .gd-lead { font-size: .96rem; }
  .gx-inner { flex-direction: column; align-items: flex-start; }
}
