/* ==========================================================================
   css-edits.css — PrintMyTargets 2026
   Full homepage redesign · "Precision Tactical" premium dark theme.
   Loaded by index.html. Image paths are relative to this file (../img/).
   ========================================================================== */

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

/* ── DESIGN TOKENS ── */
:root {
    --bg:          #0a0a0c;
    --surface:     #101013;
    --surface-2:   #16161b;
    --surface-3:   #1c1d22;
    --line:        rgba(255,255,255,0.09);
    --line-strong: rgba(255,255,255,0.16);
    --text:        #f5f5f6;
    --muted:       rgba(255,255,255,0.58);
    --faint:       rgba(255,255,255,0.40);

    --red:         #e11d2a;
    --red-light:   #ff3a48;
    --red-deep:    #4e0810;
    --steel:       #7d8a99;

    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

    --maxw:        1440px;
    --gutter:      clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;   /* fallback for old browsers */
    overflow-x: clip;     /* modern: clips sideways scroll without breaking sticky nav */
    max-width: 100%;
}

img { max-width: 100%; display: block; }


/* ── KEYFRAMES ── */
@keyframes pmt-line-up   { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes pmt-fade-up   { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes pmt-marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pmt-kenburns  { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes pmt-grain {
    0%,100% { transform: translate(0,0); }
    10% { transform: translate(-4%,-4%); } 30% { transform: translate(3%,-2%); }
    50% { transform: translate(-2%,4%); }  70% { transform: translate(4%,2%); }
    90% { transform: translate(-3%,3%); }
}
@keyframes pmt-pulse { 0%,100% { opacity: 0.45; transform: scale(1); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes pmt-cue   { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 80% { transform: translateY(9px); opacity: 0; } 100% { opacity: 0; } }


/* ── SCROLL-REVEAL (only hides when JS active) ── */
.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }


/* ── LAYOUT PRIMITIVES ── */
.pmt-container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.pmt-section   { padding: clamp(66px, 9vw, 118px) 0; position: relative; }

.pmt-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red-light);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 11px;
}
.pmt-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--red); flex-shrink: 0; }
.pmt-eyebrow.center { justify-content: center; }

.pmt-h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(30px, 4.4vw, 56px);
    line-height: 0.98;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text);
    margin: 0;
}
.pmt-lead {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.75;
    color: var(--muted);
    max-width: 520px;
    margin: 18px 0 0;
}
.pmt-section-hdr { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 46px; }

.pmt-link {
    font-family: 'Manrope', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red-light);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, letter-spacing 0.2s;
}
.pmt-link:hover { color: #fff; letter-spacing: 3px; }


/* ── BUTTONS ── */
.pmt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.25s;
}
.pmt-btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.pmt-btn--primary::after {
    content: '';
    position: absolute; top: 0; left: -120%;
    width: 70%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s var(--ease);
}
.pmt-btn--primary:hover { background: var(--red-light); border-color: var(--red-light); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 34px rgba(225,29,42,0.42); }
.pmt-btn--primary:hover::after { left: 130%; }

.pmt-btn--ghost { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.24); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.pmt-btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); transform: translateY(-2px); }

.pmt-btn--light { background: #fff; color: #0a0a0c; border-color: #fff; }
.pmt-btn--light:hover { background: transparent; color: #fff; transform: translateY(-2px); }

.pmt-btn--blue { background: #1466d8; color: #fff; border-color: #1466d8; }
.pmt-btn--blue:hover { background: #2a82ff; border-color: #2a82ff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20,102,216,0.4); }


/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.pmt-topbar {
    background: #060608;
    border-bottom: 1px solid var(--line);
    font-family: 'Manrope', sans-serif;
}
.pmt-topbar-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.pmt-topbar-msg {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pmt-topbar-msg strong { color: var(--text); font-weight: 800; }
.pmt-topbar-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); flex-shrink: 0; }
.pmt-topbar-links { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.pmt-topbar-links a {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--faint);
    text-decoration: none;
    transition: color 0.18s;
}
.pmt-topbar-links a:hover { color: #fff; }
.pmt-topbar-links a.hot { color: var(--red-light); }
.pmt-topbar-links a.hot:hover { color: #fff; }


/* ==========================================================================
   2. MAIN NAV
   ========================================================================== */
#pmt-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(10,10,12,0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
#pmt-nav.is-scrolled {
    background: rgba(8,8,10,0.94);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    border-bottom-color: var(--line-strong);
}
.pmt-nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: height 0.3s var(--ease);
}
#pmt-nav.is-scrolled .pmt-nav-inner { height: 62px; }

.pmt-nav-logo img { height: 46px; width: auto; transition: height 0.3s var(--ease); }
#pmt-nav.is-scrolled .pmt-nav-logo img { height: 40px; }

.pmt-nav-menu { display: flex; align-items: center; gap: 4px; margin: 0 auto 0 14px; }
.pmt-nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.18s;
}
.pmt-nav-link::after {
    content: '';
    position: absolute;
    left: 15px; right: 15px; bottom: 4px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s var(--ease);
}
.pmt-nav-link:hover { color: #fff; }
.pmt-nav-link:hover::after { transform: scaleX(1); }

/* Tutorials dropdown */
.pmt-nav-dd { position: relative; }
.pmt-nav-dd-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 256px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-top: 2px solid var(--red);
    border-radius: 0 0 8px 8px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 20px 44px rgba(0,0,0,0.55);
}
.pmt-nav-dd:hover .pmt-nav-dd-menu,
.pmt-nav-dd:focus-within .pmt-nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pmt-nav-dd-menu a {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 5px;
    transition: background 0.15s, color 0.15s;
}
.pmt-nav-dd-menu a:hover { background: var(--red); color: #fff; }

.pmt-nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.pmt-nav-search { width: 230px; }
.pmt-nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--red);
    border: none;
    border-radius: 4px;
    padding: 10px 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.pmt-nav-cart:hover { background: var(--red-light); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(225,29,42,0.4); }

.pmt-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    width: 42px; height: 38px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.pmt-nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; position: relative; }
.pmt-nav-toggle span::before, .pmt-nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: #fff; }
.pmt-nav-toggle span::before { top: -6px; } .pmt-nav-toggle span::after { top: 6px; }


/* ==========================================================================
   3. HERO
   ========================================================================== */
.pmt-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #000 url('../img/Silhouette-View-Targets-Background-Image.webp') center / cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}
.pmt-hero-video { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.pmt-hero-video iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw;
    min-height: 100%; min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
/* Darken the video INSIDE its own layer so the top can never show a grey band,
   even if the iframe composites above the main overlay. */
.pmt-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8,8,10,0.97) 0%, rgba(8,8,10,0.6) 13%, rgba(8,8,10,0.1) 34%, rgba(8,8,10,0) 50%);
}
.pmt-hero-kenburns {
    position: absolute; inset: -5%;
    background: url('../img/Silhouette-View-Targets-Background-Image.webp') center / cover no-repeat;
    animation: pmt-kenburns 24s ease-in-out infinite alternate;
    z-index: 0;
}
.pmt-hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(180deg, rgba(7,7,9,0.92) 0%, rgba(7,7,9,0.42) 16%, rgba(7,7,9,0) 42%),
        linear-gradient(100deg, rgba(7,7,9,0.95) 0%, rgba(7,7,9,0.66) 46%, rgba(30,4,9,0.86) 100%),
        radial-gradient(135% 130% at 72% 36%, transparent 38%, rgba(0,0,0,0.5) 100%);
}
.pmt-hero-overlay::before {
    content: '';
    position: absolute; left: -8%; bottom: -28%;
    width: 60%; height: 80%;
    background: radial-gradient(circle, rgba(225,29,42,0.20) 0%, transparent 64%);
}
.pmt-hero-grain {
    position: absolute; inset: -50%; z-index: 3; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.04;
    animation: pmt-grain 8s steps(6) infinite;
}

/* Static HUD corner frame (tactical, no spinning) */
.pmt-hero-hud { position: absolute; inset: 26px; z-index: 4; pointer-events: none; }
.pmt-hero-hud span { position: absolute; width: 34px; height: 34px; opacity: 0.55; }
.pmt-hero-hud span::before, .pmt-hero-hud span::after { content: ''; position: absolute; background: rgba(255,255,255,0.6); }
.pmt-hero-hud span::before { width: 100%; height: 2px; } .pmt-hero-hud span::after { width: 2px; height: 100%; }
.pmt-hero-hud .tl { top: 0; left: 0; } .pmt-hero-hud .tl::before { top: 0; left: 0; } .pmt-hero-hud .tl::after { top: 0; left: 0; }
.pmt-hero-hud .tr { top: 0; right: 0; } .pmt-hero-hud .tr::before { top: 0; right: 0; } .pmt-hero-hud .tr::after { top: 0; right: 0; }
.pmt-hero-hud .bl { bottom: 0; left: 0; } .pmt-hero-hud .bl::before { bottom: 0; left: 0; } .pmt-hero-hud .bl::after { bottom: 0; left: 0; }
.pmt-hero-hud .br { bottom: 0; right: 0; } .pmt-hero-hud .br::before { bottom: 0; right: 0; } .pmt-hero-hud .br::after { bottom: 0; right: 0; }
.pmt-hero-hud .tl { opacity: 0.9; }
.pmt-hero-hud .tl::before, .pmt-hero-hud .tl::after { background: var(--red); }

.pmt-hero-content {
    position: relative; z-index: 5;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(90px, 12vh, 130px) var(--gutter) clamp(80px, 11vh, 120px);
    width: 100%;
}
.pmt-hero-copy { max-width: 720px; }
.pmt-hero-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: 5px; text-transform: uppercase;
    color: var(--red-light); margin: 0 0 22px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: pmt-fade-up 0.8s var(--ease-out) 0.1s forwards;
}
.pmt-hero-eyebrow::before { content: ''; width: 38px; height: 2px; background: var(--red-light); flex-shrink: 0; }

.pmt-hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(54px, 9vw, 130px);
    line-height: 0.86;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin: 0 0 30px;
    text-shadow: 0 6px 50px rgba(0,0,0,0.5);
}
.pmt-hero-title .line { display: block; overflow: hidden; padding: 2px 0; }
.pmt-hero-title .line > span { display: inline-block; transform: translateY(110%); animation: pmt-line-up 0.95s var(--ease-out) forwards; }
.pmt-hero-title .line:nth-child(1) > span { animation-delay: 0.16s; }
.pmt-hero-title .line:nth-child(2) > span { animation-delay: 0.28s; }
.pmt-hero-title .line:nth-child(3) > span { animation-delay: 0.40s; }
.pmt-hero-title .red { color: var(--red-light); }

.pmt-hero-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255,255,255,0.74);
    max-width: 500px;
    line-height: 1.7;
    margin: 0 0 36px;
    opacity: 0; animation: pmt-fade-up 0.8s var(--ease-out) 0.6s forwards;
}
.pmt-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: pmt-fade-up 0.8s var(--ease-out) 0.72s forwards; }

.pmt-hero-chips {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 30px;
    opacity: 0; animation: pmt-fade-up 0.8s var(--ease-out) 0.82s forwards;
}
.pmt-hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    padding: 8px 15px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}
.pmt-hero-chip svg { width: 15px; height: 15px; color: var(--red-light); }

.pmt-hero-stats {
    display: flex; gap: clamp(28px, 5vw, 60px); flex-wrap: wrap;
    margin-top: 52px; padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 0; animation: pmt-fade-up 0.8s var(--ease-out) 0.92s forwards;
}
.pmt-stat-num { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 4vw, 46px); color: #fff; line-height: 1; display: flex; align-items: baseline; }
.pmt-stat-num .suffix { color: var(--red-light); }
.pmt-stat-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--faint); margin-top: 9px; }

.pmt-scroll-cue {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 6; width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.32); border-radius: 14px;
    display: flex; justify-content: center; padding-top: 7px;
}
.pmt-scroll-cue::before { content: ''; width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: pmt-cue 1.8s ease-in-out infinite; }


/* ==========================================================================
   4. MARQUEE
   ========================================================================== */
.pmt-marquee {
    background: var(--red);
    overflow: hidden; padding: 13px 0; white-space: nowrap;
    border-top: 1px solid rgba(0,0,0,0.18); border-bottom: 1px solid rgba(0,0,0,0.18);
}
.pmt-marquee-track { display: inline-flex; align-items: center; animation: pmt-marquee 28s linear infinite; }
.pmt-marquee:hover .pmt-marquee-track { animation-play-state: paused; }
.pmt-marquee-track span {
    font-family: 'Archivo Black', sans-serif;
    font-size: 13.5px; letter-spacing: 3px; text-transform: uppercase;
    color: #fff; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px;
}
.pmt-marquee-track span::after { content: '✦'; color: rgba(255,255,255,0.55); font-size: 11px; }


/* ==========================================================================
   5. FEATURE / USP TRIO
   ========================================================================== */
.pmt-usp { background: var(--surface); border-bottom: 1px solid var(--line); }
.pmt-usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pmt-usp-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 32px 30px;
    display: flex; align-items: flex-start; gap: 18px;
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.pmt-usp-card:hover { transform: translateY(-6px); border-color: rgba(225,29,42,0.5); box-shadow: 0 22px 50px rgba(0,0,0,0.5); }
.pmt-usp-icon {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 11px;
    background: linear-gradient(160deg, var(--red), var(--red-deep));
    box-shadow: 0 10px 24px rgba(225,29,42,0.34);
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.pmt-usp-icon svg { width: 25px; height: 25px; }
.pmt-usp-title { font-family: 'Archivo Black', sans-serif; font-size: 16px; color: #fff; margin-bottom: 7px; }
.pmt-usp-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }


/* ==========================================================================
   6. HOW IT WORKS
   ========================================================================== */
.pmt-how { background: var(--bg); }
.pmt-how-head { text-align: center; margin-bottom: 56px; }
.pmt-how-head .pmt-h2 { margin-top: 0; }
.pmt-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.pmt-how-step {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 40px 32px 36px;
    overflow: hidden;
    transition: transform 0.3s var(--ease), border-color 0.3s;
}
.pmt-how-step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.pmt-how-ghost {
    position: absolute; top: 6px; right: 18px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 120px; line-height: 1;
    color: rgba(255,255,255,0.035);
    pointer-events: none;
}
.pmt-how-icon {
    width: 54px; height: 54px; border-radius: 12px;
    background: var(--surface-3); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--red-light); margin-bottom: 22px; position: relative;
}
.pmt-how-icon svg { width: 26px; height: 26px; }
.pmt-how-step h3 { font-family: 'Archivo Black', sans-serif; font-size: 19px; color: #fff; text-transform: uppercase; letter-spacing: 0.3px; margin: 0 0 10px; }
.pmt-how-step p { font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0; position: relative; }


/* ==========================================================================
   7. CATEGORIES (BENTO)
   ========================================================================== */
.pmt-cats { background: var(--surface); }
.pmt-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 212px; gap: 14px; }
.cat-card {
    position: relative; border-radius: 8px; overflow: hidden;
    display: block; text-decoration: none; background: #111;
}
.cat-card--feature { grid-column: span 2; grid-row: span 2; }
.cat-card--wide    { grid-column: span 2; }
.cat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-card-bg { transform: scale(1.07); }
.cat-card-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.32) 55%, rgba(0,0,0,0.05) 100%);
    transition: background 0.35s ease;
}
.cat-card:hover .cat-card-shade { background: linear-gradient(to top, rgba(78,8,16,0.94) 0%, rgba(0,0,0,0.46) 60%, rgba(0,0,0,0.08) 100%); }
.cat-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--red-light); transform: scaleX(0); transform-origin: left center;
    transition: transform 0.35s var(--ease); z-index: 2;
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px 20px; z-index: 1; }
.cat-card-title { font-family: 'Archivo Black', sans-serif; font-size: 17px; color: #fff; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 7px; text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.cat-card--feature .cat-card-title { font-size: 30px; }
.cat-card-cta { font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); display: inline-flex; align-items: center; gap: 5px; transition: color 0.2s, gap 0.22s; }
.cat-card:hover .cat-card-cta { color: #fff; gap: 9px; }
.cat-card-tag {
    position: absolute; top: 16px; left: 16px; z-index: 2;
    background: var(--red); color: #fff;
    font-family: 'Archivo Black', sans-serif; font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 3px;
}


/* ==========================================================================
   8. RANGE INTEL
   ========================================================================== */
.pmt-intel { background: var(--bg); position: relative; overflow: hidden; }
.pmt-intel::before { content: ''; position: absolute; top: 0; left: 0; width: 55%; bottom: 0; background: radial-gradient(ellipse at 25% 50%, rgba(20,102,216,0.12) 0%, transparent 70%); pointer-events: none; }
.pmt-intel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; position: relative; }
.pmt-intel-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(20,102,216,0.14); color: #6cb0ff;
    font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(108,176,255,0.26); margin-bottom: 20px;
}
.pmt-intel-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #6cb0ff; box-shadow: 0 0 10px #6cb0ff; animation: pmt-pulse 2s ease-in-out infinite; }
.pmt-intel .pmt-eyebrow { color: #6cb0ff; }
.pmt-intel .pmt-eyebrow::before { background: #6cb0ff; }
.pmt-intel-desc { font-size: 16px; color: var(--muted); line-height: 1.82; margin: 20px 0 34px; }
.pmt-intel-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.pmt-intel-img { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 34px 70px rgba(0,0,0,0.62), 0 0 0 1px rgba(255,255,255,0.06); }
.pmt-intel-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 58%, rgba(20,102,216,0.2)); z-index: 1; pointer-events: none; }
.pmt-intel-img img { width: 100%; height: 460px; object-fit: cover; transition: transform 0.6s var(--ease); }
.pmt-intel-img:hover img { transform: scale(1.04); }


/* ==========================================================================
   9. FEATURED PRODUCTS
   ========================================================================== */
.pmt-products { background: var(--surface); }
.carousel-tag {
    display: inline-block;
    font-family: 'Archivo Black', sans-serif;
    font-size: 11px; letter-spacing: 3.5px; text-transform: uppercase;
    color: #fff; background: var(--red); padding: 7px 20px; margin-bottom: 20px; border-radius: 3px;
}
.products-divider { height: 1px; background: var(--line); margin: 56px 0 50px; }


/* ==========================================================================
   10. GIFT CARDS
   ========================================================================== */
.pmt-gift { background: var(--bg); }
.pmt-gift-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.pmt-gift-text { padding: clamp(40px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.pmt-gift-text .pmt-h2 { font-size: clamp(28px, 3.2vw, 46px); }
.pmt-gift-text .pmt-lead { margin-bottom: 32px; }
.pmt-gift-img { overflow: hidden; }
.pmt-gift-img img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; transition: transform 0.6s var(--ease); }
.pmt-gift-img:hover img { transform: scale(1.05); }


/* ==========================================================================
   11. FINAL CTA
   ========================================================================== */
.pmt-cta {
    position: relative; overflow: hidden;
    background: #0a0a0c url('../img/Silhouette-targets-background.webp') center / cover no-repeat fixed;
    text-align: center;
}
.pmt-cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(8,8,10,0.86), rgba(8,8,10,0.92)), radial-gradient(circle at 50% 120%, rgba(225,29,42,0.3), transparent 60%); }
.pmt-cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.pmt-cta-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 5vw, 62px); color: #fff; text-transform: uppercase; line-height: 0.98; letter-spacing: -1.5px; margin: 0 0 18px; }
.pmt-cta-title .red { color: var(--red-light); }
.pmt-cta-sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.7; margin: 0 auto 38px; max-width: 540px; }
.pmt-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.pmt-footer { background: #060608; color: #fff; position: relative; }
.pmt-footer-accent { height: 3px; background: linear-gradient(90deg, transparent 0%, var(--red) 28%, var(--red-light) 50%, var(--red) 72%, transparent 100%); }
.pmt-footer::before { content: ''; position: absolute; top: 3px; left: 50%; transform: translateX(-50%); width: 70%; height: 220px; background: radial-gradient(ellipse at top, rgba(225,29,42,0.08), transparent 70%); pointer-events: none; }
.pmt-footer .pmt-container { position: relative; }

.pmt-footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 52px; padding: 76px 0 48px; }
.pmt-footer-brand img { width: 170px; margin-bottom: 20px; opacity: 0.95; }
.pmt-footer-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 26px; max-width: 340px; }
.pmt-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.pmt-footer-social a {
    width: 42px; height: 42px; border-radius: 10px;
    border: 1px solid var(--line); background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    color: var(--faint); transition: color .2s, border-color .2s, transform .2s, background .2s, box-shadow .2s;
}
.pmt-footer-social a:hover { color: #fff; border-color: rgba(225,29,42,0.5); background: var(--surface-2); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.45); }
.pmt-footer-col-title { font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.pmt-footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 22px; height: 2px; background: var(--red); }
.pmt-footer-links { list-style: none; padding: 0; margin: 0; }
.pmt-footer-links li { margin-bottom: 11px; }
.pmt-footer-links a { font-size: 14px; color: var(--faint); text-decoration: none; transition: color .18s, padding-left .18s; }
.pmt-footer-links a:hover { color: #fff; padding-left: 6px; }

/* Trust / reassurance row */
.pmt-footer-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pmt-footer-trust-item { display: flex; align-items: center; gap: 14px; }
.pmt-footer-trust-icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px;
    background: linear-gradient(160deg, rgba(225,29,42,0.16), rgba(78,8,16,0.18));
    border: 1px solid rgba(225,29,42,0.26);
    display: flex; align-items: center; justify-content: center; color: var(--red-light);
}
.pmt-footer-trust-icon svg { width: 21px; height: 21px; }
.pmt-footer-trust-item strong { display: block; font-size: 13.5px; color: #fff; font-weight: 700; margin-bottom: 1px; }
.pmt-footer-trust-sub { display: block; font-size: 12px; color: var(--faint); line-height: 1.35; }

/* Bottom bar */
.pmt-footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.pmt-footer-copy { font-size: 12.5px; color: var(--faint); margin: 0; }
.pmt-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.pmt-footer-legal a { font-size: 12.5px; color: var(--faint); text-decoration: none; transition: color .18s; }
.pmt-footer-legal a:hover { color: #fff; }
.pmt-footer-totop {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
    color: var(--muted); font-family: 'Manrope', sans-serif; font-size: 11.5px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; padding: 9px 18px; cursor: pointer;
    transition: color .2s, border-color .2s, background .2s, transform .15s;
}
.pmt-footer-totop:hover { color: #fff; border-color: var(--red); background: var(--surface-2); transform: translateY(-2px); }
.pmt-footer-totop span { color: var(--red-light); font-size: 14px; }

@media (max-width: 992px) { .pmt-footer-trust { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 560px) { .pmt-footer-trust { grid-template-columns: 1fr; } }


/* ==========================================================================
   13. CATEGORIES MODAL
   ========================================================================== */
#modal-menu .modal-content { border: 1px solid var(--line); background: var(--surface); }
#modal-menu .modal-header { background: var(--surface); border-bottom: 2px solid var(--red); padding: 22px 28px; }
#modal-menu .modal-title { color: #fff; font-family: 'Archivo Black', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; margin: 0; }
#modal-menu .modal-body { background: var(--surface); }
#modal-menu .modal-footer { background: var(--surface); border-top: 1px solid var(--line); }
.modal-showall {
    font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
    color: var(--red-light); text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
    margin-bottom: 26px; transition: gap 0.2s, color 0.2s;
}
.modal-showall:hover { gap: 11px; color: #fff; }
.modal-cat-heading { color: #fff; font-family: 'Archivo Black', sans-serif; font-size: 10.5px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.modal-cat-divider { height: 2px; width: 24px; background: var(--red); margin-bottom: 15px; }
.modal-cat-link {
    color: var(--muted); font-size: 13px; font-weight: 600; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.3px; display: block; padding: 4px 0;
    position: relative; transition: color 0.18s, padding-left 0.18s;
}
.modal-cat-link:hover { color: #fff; padding-left: 6px; }


/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .pmt-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pmt-intel-grid { gap: 48px; }
    .cat-card--feature .cat-card-title { font-size: 24px; }
}

@media (max-width: 992px) {
    .pmt-nav-search { display: none; }
    .pmt-nav-menu { display: none; }
    .pmt-nav-toggle { display: flex; }
    /* Mobile dropdown menu panel */
    .pmt-nav-menu.is-open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--surface); border-bottom: 1px solid var(--line);
        padding: 12px var(--gutter) 20px; gap: 2px; margin: 0;
    }
    .pmt-nav-menu.is-open .pmt-nav-link { padding: 13px 6px; font-size: 14px; }
    .pmt-nav-menu.is-open .pmt-nav-link::after { display: none; }
    .pmt-nav-menu.is-open .pmt-nav-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-left: 2px solid var(--red); border-radius: 0; margin: 0 0 8px 10px; background: transparent; }

    .pmt-usp-grid { grid-template-columns: 1fr; }
    .pmt-how-grid { grid-template-columns: 1fr; gap: 16px; }
    .pmt-intel-grid { grid-template-columns: 1fr; gap: 44px; }
    .pmt-intel-img { order: -1; }
    .pmt-intel-img img { height: 340px; }
    .pmt-intel::before { width: 100%; }
    .pmt-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .cat-card--feature { grid-column: span 2; grid-row: span 1; }
    .cat-card--feature .cat-card-title { font-size: 22px; }
    .cat-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .pmt-topbar-msg { font-size: 10.5px; }
    .pmt-topbar-links { gap: 14px; }
    .pmt-topbar-links a:not(.hot) { display: none; }
    .pmt-nav-logo img { height: 38px; width: auto; }

    .pmt-hero { min-height: auto; }
    .pmt-hero-video { display: none; }
    .pmt-hero-hud { inset: 14px; }
    .pmt-hero-stats { gap: 24px; margin-top: 40px; padding-top: 26px; }
    .pmt-scroll-cue { display: none; }
    .pmt-section-hdr { flex-direction: column; align-items: flex-start; gap: 14px; }

    .pmt-bento { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 11px; }
    .cat-card--feature, .cat-card--wide { grid-column: span 1; grid-row: span 1; }
    .cat-card--feature .cat-card-title { font-size: 19px; }

    .pmt-gift-card { grid-template-columns: 1fr; }
    .pmt-gift-img { display: none; }

    .pmt-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 52px 0 40px; }
    .pmt-footer-brand { grid-column: 1 / -1; }
    .pmt-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .pmt-hero-btns { flex-direction: column; }
    .pmt-hero-btns .pmt-btn { width: 100%; }
    .pmt-cta-btns { flex-direction: column; }
    .pmt-cta-btns .pmt-btn { width: 100%; }
    .pmt-intel-btns { flex-direction: column; }
    .pmt-footer-top { grid-template-columns: 1fr; }
}


/* ==========================================================================
   15. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .pmt-hero-kenburns, .pmt-hero-grain { animation: none !important; }
    .pmt-hero-title .line > span { transform: none !important; }
    .pmt-hero-eyebrow, .pmt-hero-sub, .pmt-hero-btns, .pmt-hero-chips, .pmt-hero-stats { opacity: 1 !important; animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .pmt-marquee-track { animation: none !important; }
    .pmt-cta { background-attachment: scroll !important; }
}


/* ==========================================================================
   17. INTERIOR PAGES — convert legacy light-theme content to the dark theme
   The homepage uses .pmt-* components and contains none of these legacy
   inline patterns, so these global rules effectively only affect the other
   ~60 builder-generated pages. css-edits.css loads after custom.css, so
   these overrides win.
   ========================================================================== */

/* Default text/headings to light on the dark base */
h1, h2, h3, h4, h5, h6 { color: var(--text); }
b, strong { color: inherit; }

/* Defeat the legacy `b { color:black !important }` rule in custom.css */
.pmt-topbar strong, .pmt-footer b, .pmt-footer strong { color: inherit !important; }

/* Neutralize hardcoded white / light backgrounds from the old light theme */
[style*="background: #ffffff"], [style*="background:#ffffff"],
[style*="background: #fff;"],  [style*="background:#fff;"],
[style*="background: #FFFFFF"], [style*="background:#FFFFFF"],
[style*="background: white"],   [style*="background:white"],
[style*="background: rgb(255,255,255)"], [style*="background: rgb(255, 255, 255)"],
[style*="background-color: #ffffff"], [style*="background-color:#ffffff"],
[style*="background-color: white"],   [style*="background-color: rgb(255, 255, 255)"] {
    background-color: var(--surface) !important;
}

/* Hardcoded black / near-black inline text → light */
[style*="color: black"], [style*="color:black"],
[style*="color: #000000"], [style*="color:#000000"],
[style*="color: #000;"],   [style*="color:#000;"],
[style*="color: #000 "],   [style*="color: rgb(0,0,0)"], [style*="color: rgb(0, 0, 0)"] {
    color: var(--text) !important;
}

/* Legacy site-builder surfaces */
.custom-side-menu,
.target-description-area {
    background: var(--surface) !important;
    border: 1px solid var(--line) !important;
    border-radius: 10px;
}
.side-menu-links { color: var(--muted) !important; }
.side-menu-links:hover { color: #fff !important; }

/* Bootstrap utility helpers used across pages */
.bg-white, .bg-light { background-color: var(--surface) !important; color: var(--text) !important; }
.text-dark, .text-black { color: var(--text) !important; }
.card { background: var(--surface); color: var(--text); border-color: var(--line); }
.table { color: var(--text); }
hr { border-color: var(--line) !important; opacity: 1; }

/* ── Reflow storefront + cart on the dark theme ──
   Reflow tokens fall back to Bootstrap's --bs-* vars (pages are
   data-bs-theme="dark"); we steer its own --ref-* tokens and fix the
   black product text that custom.css hardcodes. */
body {
    --ref-primary: var(--red);
    --ref-body-color: var(--text);
    --ref-body-bg: var(--surface-2);
    --ref-secondary-color: var(--muted);
    --ref-tertiary-bg: var(--surface-3);
    --ref-border-radius: 10px;
}
.ref-name { color: var(--text) !important; font-weight: 800; }
.ref-price { color: var(--red-light) !important; font-weight: 900; }
.ref-original-price { color: var(--faint) !important; }
.ref-description, .ref-description strong, .ref-description p, .ref-description li { color: var(--muted) !important; }
.ref-product-category { color: var(--faint) !important; }

/* Product cards → subtle elevated surface that pops on the dark page */
.ref-cards .ref-product {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.ref-cards .ref-product:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.ref-cards .ref-media, .ref-product-photo { border-radius: 8px; overflow: hidden; }
.ref-button { font-weight: 700 !important; letter-spacing: 0.3px; }

/* Reflow inputs (incl. the nav search) */
.ref-search input, input.ref-input, .ref-input, .ref-field input, select.ref-input {
    background: var(--surface-2) !important;
    color: var(--text) !important;
    border-color: var(--line) !important;
}
.ref-search input::placeholder { color: var(--faint); }

/* Old red Bootstrap navbar (in case any page is missed by the rollout) stays
   hidden so a half-converted page never shows two navbars */
#main-navbar-red ~ #main-navbar-red { display: none; }


/* ==========================================================================
   17b. CONTRAST GAPS — near-black text, dark-red emphasis, black borders
   (inline styles beat plain selectors, so attribute selectors + !important)
   ========================================================================== */
[style*="color: rgb(26,26,26)"],  [style*="color:rgb(26,26,26)"],
[style*="color: rgb(26, 26, 26)"],[style*="color:rgb(26, 26, 26)"],
[style*="color: #1a1a1a"],        [style*="color:#1a1a1a"], [style*="color: #1A1A1A"],
[style*="color: rgb(33,37,41)"],  [style*="color: rgb(33, 37, 41)"],
[style*="color: #212529"], [style*="color: #333"], [style*="color:#333"],
[style*="color: #444"], [style*="color: #555"], [style*="color: gray"], [style*="color: grey"] {
    color: var(--text) !important;
}
[style*="color: rgb(133, 0, 0)"], [style*="color:rgb(133, 0, 0)"], [style*="color: rgb(133,0,0)"],
[style*="color: rgb(142, 38, 38)"], [style*="color: rgb(150, 22, 22)"], [style*="color: rgb(150,22,22)"],
[style*="color: rgb(190,12,12)"],  [style*="color: rgb(190, 12, 12)"],
[style*="color: rgb(191, 10, 48)"],[style*="color: rgb(191,10,48)"],
[style*="color: rgb(181,11,0)"],   [style*="color: rgb(181, 11, 0)"] {
    color: var(--red-light) !important;
}
hr[style*="border-color: black"], hr[style*="border-color:black"],
[style*="border-color: black"],   [style*="border-color:black"],
[style*="border-color: #000"],    [style*="border-color:#000"],
[style*="border-color: rgb(0,0,0)"], [style*="border-color: rgb(0, 0, 0)"] {
    border-color: var(--line) !important;
}
[style*="background-color: rgb(255, 255, 255)"][style*="color: rgb(191, 10, 48)"] {
    background-color: var(--surface) !important;
}

/* Defeat custom.css `b { color:black !important }` and any forced-black strong.
   Cataloged emphasis colors above (rule B) still win via higher specificity. */
b, strong { color: var(--text) !important; }
.ref-description, .ref-description strong, .ref-description p, .ref-description li { color: var(--muted) !important; }


/* ==========================================================================
   18. INTERIOR PAGES — layout, components, mobile
   ========================================================================== */

/* Fixed-height forced-scroll boxes → let content flow naturally */
.target-description-area { height: auto !important; max-height: none !important; overflow: visible !important; padding: 22px !important; }
.custom-side-menu { overflow: auto !important; }

/* Legacy two-column side-menu layout: align breakpoint to 992 + stack cleanly */
@media (max-width: 992px) {
    .side-menu-column-left { display: none !important; }
    .side-menu-column-right { width: 100% !important; }
}

/* Larger tap targets in legacy side menu / category nav */
.side-menu-links, .category-nav-items { display: block; padding: 9px 4px; min-height: 40px; }

/* Modernize legacy red Bootstrap buttons to the pmt-btn look */
.view-targets-home-buttons, .home-bundle-buttons,
.side-menu-column-right .btn-primary, main .btn-primary, .container .btn.btn-primary {
    background: var(--red) !important;
    border: 2px solid var(--red) !important;
    color: #fff !important;
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 1.4px !important;
    text-transform: uppercase !important;
    border-radius: 3px !important;
    padding: 13px 28px !important;
    box-shadow: none !important;
    transition: background .2s, transform .15s, box-shadow .25s !important;
}
.view-targets-home-buttons:hover, .home-bundle-buttons:hover,
.side-menu-column-right .btn-primary:hover, main .btn-primary:hover, .container .btn.btn-primary:hover {
    background: var(--red-light) !important;
    border-color: var(--red-light) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(225,29,42,0.4) !important;
}

/* Cap legacy fixed-500px category tiles so phones aren't a 13,000px wall */
.category-columns > div { height: clamp(220px, 42vw, 360px) !important; }

/* Category-page hero (legacy single-slide carousel) → cinematic dark band */
.carousel-fade { height: clamp(360px, 48vh, 520px) !important; position: relative; isolation: isolate; }
.carousel-images { position: relative; overflow: hidden; }
.carousel-images > img.fit-cover { z-index: 0 !important; transform: scale(1.02); }
.carousel-images::before {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8,8,10,0.5) 0%, rgba(8,8,10,0.32) 45%, rgba(8,8,10,0.92) 100%),
        linear-gradient(100deg, rgba(8,8,10,0.66) 0%, rgba(30,4,9,0.4) 100%);
}
.carousel-images::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 3;
    background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red-light) 50%, var(--red) 70%, transparent);
}
.carousel-images .container { position: relative; z-index: 2; flex-direction: column !important; gap: 12px; text-align: center; }
.carousel-images .container::before {
    display: block;
    content: 'Printable Shooting Targets';
    font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 800;
    letter-spacing: 4px; text-transform: uppercase; color: var(--red-light);
}
.carousel-images .container p {
    font-family: 'Archivo Black', sans-serif !important; color: #fff !important;
    text-shadow: none !important; font-size: inherit !important; margin: 0 !important; line-height: 1 !important;
}
.slide-title-spans {
    background: transparent !important; color: #fff !important;
    font-family: 'Archivo Black', sans-serif !important;
    font-size: clamp(34px, 6.5vw, 72px) !important;
    letter-spacing: -1.5px !important; line-height: 0.95 !important;
    text-transform: uppercase !important;
    text-shadow: 0 6px 44px rgba(0,0,0,0.7) !important;
    padding: 0 !important; -webkit-text-stroke: 0 !important; display: inline-block;
}

/* Restyle the legacy black Categories modal toward the homepage modal */
#modal-menu .modal-content { background: var(--surface) !important; border: 1px solid var(--line) !important; }
#modal-menu .modal-header, #modal-menu .modal-body, #modal-menu .modal-footer { background: var(--surface) !important; }
#modal-menu .modal-header { border-bottom: 2px solid var(--red) !important; }
#modal-menu .modal-body h1, #modal-menu .modal-body h2, #modal-menu .modal-body h3, #modal-menu .modal-title {
    font-family: 'Archivo Black', sans-serif !important; color: #fff !important;
    font-size: 13px !important; letter-spacing: 2px !important; text-transform: uppercase !important;
}
#modal-menu .modal-body hr { background: var(--red) !important; border: none !important; height: 2px !important; width: 26px !important; opacity: 1 !important; margin: 8px 0 14px !important; }
#modal-menu .modal-body a { color: var(--muted) !important; text-decoration: none !important; }
#modal-menu .modal-body a:hover { color: #fff !important; }
#modal-menu .modal-footer .btn { background: transparent !important; color: var(--muted) !important; border: 1px solid var(--line) !important; }

/* Utility links shown only inside the mobile nav menu (added to pages via markup) */
.pmt-nav-link--util { display: none; }
@media (max-width: 992px) { .pmt-nav-menu.is-open .pmt-nav-link--util { display: block; } }


/* ==========================================================================
   19. TUTORIALS — index card grid + detail stepper
   ========================================================================== */
.pmt-tut-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 0 0 48px; }
.pmt-tut-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px; color: var(--muted); text-decoration: none; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.pmt-tut-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 18px 44px rgba(0,0,0,0.5); }
.pmt-tut-badge { display: inline-block; font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--red-light); border: 1px solid var(--line); border-radius: 6px; padding: 5px 11px; margin-bottom: 18px; }
.pmt-tut-card h3 { font-family: 'Archivo Black', sans-serif; color: #fff !important; text-transform: uppercase; font-size: 19px; margin: 0 0 10px; }
.pmt-tut-meta { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 0; margin: 0 0 14px; font-size: 13px; color: var(--faint); }
.pmt-tut-meta li { position: relative; padding-left: 14px; }
.pmt-tut-meta li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--red-light); }
.pmt-tut-link { display: inline-block; margin-top: 14px; color: var(--red-light); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }

.pmt-tut { background: var(--bg); }
.pmt-tut-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 40px; }
.pmt-tut-rail { position: sticky; top: 92px; align-self: start; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.pmt-tut-rail .rail-title { font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.pmt-tut-rail a { display: block; color: var(--muted); text-decoration: none; padding: 9px 0; font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.pmt-tut-rail a:last-child { border-bottom: none; }
.pmt-tut-rail a:hover, .pmt-tut-rail a.is-active { color: var(--red-light); }
.pmt-tut-title { color: #fff !important; }
.pmt-tut-video { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); margin: 22px 0 36px; }
.pmt-tut-materials { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; margin-bottom: 36px; }
.pmt-tut-materials h2 { font-family: 'Archivo Black', sans-serif; color: #fff !important; text-transform: uppercase; font-size: 15px; letter-spacing: 1px; margin: 0 0 14px; }
.pmt-tut-materials ul { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; padding: 0; margin: 0; }
.pmt-tut-materials li { position: relative; padding-left: 16px; color: var(--muted); font-size: 14px; }
.pmt-tut-materials li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--red-light); }
.pmt-stepper { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.pmt-step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 28px 30px; transition: border-color .25s; }
.pmt-step:hover { border-color: var(--line-strong); }
.pmt-step-num { font-family: 'Archivo Black', sans-serif; font-size: 22px; line-height: 1; color: var(--red-light); min-width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; background: var(--surface-3); border: 1px solid var(--line); border-radius: 12px; }
.pmt-step-content h3 { font-family: 'Archivo Black', sans-serif; color: #fff !important; text-transform: uppercase; font-size: 17px; margin: 0 0 8px; }
.pmt-step-content p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0 0 16px; }
.pmt-step-content p:last-child { margin-bottom: 0; }
.pmt-step-content strong { color: #fff !important; }
.pmt-step-content a { color: var(--red-light) !important; }
.pmt-step--optional .pmt-step-num { color: var(--muted); }
.pmt-tut-tag { display: inline-block; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); border: 1px solid var(--line); border-radius: 100px; padding: 2px 9px; margin-left: 8px; vertical-align: middle; }
.pmt-tut-phase { font-family: 'Archivo Black', sans-serif; color: var(--red-light); text-transform: uppercase; font-size: 12px; letter-spacing: 2px; margin: 14px 0 4px; }
.pmt-tut-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.pmt-tut-gallery img { width: 100%; border-radius: 10px; border: 1px solid var(--line); display: block; }
@media (max-width: 860px) {
    .pmt-tut-wrap { grid-template-columns: 1fr; }
    .pmt-tut-rail { position: static; }
    .pmt-step { grid-template-columns: 1fr; gap: 14px; }
    .pmt-step-num { min-width: 44px; height: 44px; font-size: 18px; }
}


/* ==========================================================================
   20. RANGE INTEL — blue-accent hero, video wrapper, install cards
   ========================================================================== */
.pmt-hero--intel .pmt-hero-eyebrow { color: #6cb0ff; }
.pmt-hero--intel .pmt-hero-eyebrow::before { background: #6cb0ff; }
.pmt-hero--intel .pmt-hero-title .red { color: #6cb0ff; }
.pmt-hero--intel .pmt-hero-overlay::before { background: radial-gradient(circle, rgba(20,102,216,0.28) 0%, transparent 64%); }
.pmt-hero--intel .pmt-hero-chip svg { color: #6cb0ff; }
.pmt-hero--intel .pmt-stat-num .suffix { color: #6cb0ff; }

.pmt-video { position: relative; padding-top: 56.25%; border-radius: 8px; overflow: hidden; box-shadow: 0 34px 70px rgba(0,0,0,0.62), 0 0 0 1px rgba(255,255,255,0.06); }
.pmt-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.pmt-install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pmt-install-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 34px 32px; }
.pmt-install-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pmt-install-card-head svg { width: 26px; height: 26px; color: #6cb0ff; flex-shrink: 0; }
.pmt-install-card h3 { font-family: 'Archivo Black', sans-serif; color: #fff !important; text-transform: uppercase; font-size: 16px; margin: 0; }
.pmt-install-card ol { margin: 0; padding-left: 20px; color: var(--muted); }
.pmt-install-card li { margin-bottom: 12px; line-height: 1.6; font-size: 14.5px; }
.pmt-install-card li strong { color: #fff !important; }
.pmt-install-card a { color: #6cb0ff !important; text-decoration: none; }
.pmt-install-card a:hover { text-decoration: underline; }
.pmt-install-card-done { margin-top: 16px; color: var(--faint); font-size: 13px; font-style: italic; }
.pmt-how--intel .pmt-how-icon { color: #6cb0ff; }
.pmt-cta--intel .pmt-cta-title .red { color: #6cb0ff; }
@media (max-width: 768px) { .pmt-install-grid { grid-template-columns: 1fr; } }


/* ==========================================================================
   21. REVIEW-PASS POLISH — fill in classes the rebuilt pages reference
   ========================================================================== */
/* Centered lead paragraph (tutorials index intro, Range Intel install header) */
.pmt-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Tutorial article content column — allow grid cell to shrink (no overflow) */
.pmt-tut-body { min-width: 0; }

/* Closing "Done + back to tutorials" block on the detail pages */
.pmt-tut-done {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.pmt-tut-done .pmt-lead { margin: 0; }


/* ==========================================================================
   22. LEGAL / POLICY PAGES — clean readable document layout
   ========================================================================== */
.pmt-legal { background: var(--bg); }
.pmt-legal-head {
    max-width: 820px; margin: 0 auto 44px; text-align: center;
    padding-bottom: 38px; border-bottom: 1px solid var(--line);
}
.pmt-legal-head .pmt-eyebrow { justify-content: center; }
.pmt-legal-head .pmt-h2 { margin: 0 0 14px; }
.pmt-legal-updated {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--faint);
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 100px; padding: 6px 16px; margin: 0;
}
.pmt-legal-body { max-width: 820px; margin: 0 auto; }
.pmt-legal-body h1, .pmt-legal-body h2 {
    font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 19px;
    text-transform: uppercase; letter-spacing: 0.3px; line-height: 1.25;
    margin: 44px 0 16px; padding-left: 16px; border-left: 3px solid var(--red);
}
.pmt-legal-body h1:first-child, .pmt-legal-body h2:first-child { margin-top: 0; }
.pmt-legal-body h3, .pmt-legal-body h4 {
    font-family: 'Manrope', sans-serif; color: #fff; font-weight: 800;
    font-size: 16px; margin: 28px 0 10px;
}
.pmt-legal-body p { color: var(--muted); font-size: 15.5px; line-height: 1.8; margin: 0 0 18px; }
.pmt-legal-body ul, .pmt-legal-body ol { color: var(--muted); font-size: 15.5px; line-height: 1.8; margin: 0 0 18px; padding-left: 22px; }
.pmt-legal-body li { margin-bottom: 9px; }
.pmt-legal-body li::marker { color: var(--red-light); }
.pmt-legal-body a { color: var(--red-light); text-decoration: none; word-break: break-word; }
.pmt-legal-body a:hover { text-decoration: underline; }
.pmt-legal-body strong, .pmt-legal-body b { color: #fff; }
.pmt-legal-body hr { border: none; border-top: 1px solid var(--line); margin: 34px 0; }
.pmt-legal-body table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: 14.5px; color: var(--muted); }
.pmt-legal-body th, .pmt-legal-body td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.pmt-legal-body th { background: var(--surface); color: #fff; font-weight: 700; }


/* ==========================================================================
   23. ALL-CATEGORIES COLLECTION PAGE
   ========================================================================== */
.pmt-cat-collection { background: var(--bg); }
.pmt-cat-group { margin-bottom: 50px; }
.pmt-cat-group:last-child { margin-bottom: 0; }
.pmt-cat-group > .pmt-eyebrow { margin-bottom: 18px; }
.pmt-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); gap: 14px; }
.pmt-cat-grid .cat-card { height: 230px; }
@media (max-width: 640px) { .pmt-cat-grid { grid-template-columns: repeat(2, 1fr); } .pmt-cat-grid .cat-card { height: 180px; } }
@media (max-width: 400px) { .pmt-cat-grid { grid-template-columns: 1fr; } .pmt-cat-grid .cat-card { height: 200px; } }

/* Catch no-space inline white backgrounds, e.g. <body style="background:rgb(255,255,255)"> */
[style*="background:rgb(255,255,255)"], [style*="background:rgb(255, 255, 255)"],
[style*="background:#ffffff"], [style*="background:#FFFFFF"], [style*="background:white"] {
    background-color: var(--surface) !important;
}


/* ==========================================================================
   24. ABOUT + HELP / SUPPORT PAGES
   ========================================================================== */
/* About story cards (image + copy) */
.pmt-about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pmt-about-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.pmt-about-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.pmt-about-card-img { height: 210px; overflow: hidden; }
.pmt-about-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pmt-about-card:hover .pmt-about-card-img img { transform: scale(1.05); }
.pmt-about-card-body { padding: 28px 30px; }
.pmt-about-card-body h3 { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 18px; text-transform: uppercase; margin: 0 0 12px; }
.pmt-about-card-body p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .pmt-about-grid { grid-template-columns: 1fr; } }

/* "Values / Additional Information" prose block (reuses legal-body readability) */
.pmt-prose { max-width: 860px; margin: 0 auto; }
.pmt-prose h2 { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 20px; text-transform: uppercase; letter-spacing: 0.3px; margin: 40px 0 16px; padding-left: 16px; border-left: 3px solid var(--red); }
.pmt-prose p { color: var(--muted); font-size: 15.5px; line-height: 1.85; margin: 0 0 18px; }
.pmt-prose strong, .pmt-prose b { color: #fff; }

/* Help hub cards */
.pmt-help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.pmt-help-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 34px 32px; display: flex; flex-direction: column; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.pmt-help-card:hover { transform: translateY(-6px); border-color: rgba(225,29,42,0.45); box-shadow: 0 20px 46px rgba(0,0,0,0.5); }
.pmt-help-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(160deg, var(--red), var(--red-deep)); box-shadow: 0 10px 24px rgba(225,29,42,0.32); display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 20px; }
.pmt-help-icon svg { width: 24px; height: 24px; }
.pmt-help-card h3 { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 16px; text-transform: uppercase; margin: 0 0 10px; }
.pmt-help-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0 0 22px; flex: 1; }
.pmt-help-card .pmt-btn { align-self: flex-start; }

/* Support: contact methods + form card */
.pmt-support-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; }
.pmt-support-info { display: flex; flex-direction: column; gap: 18px; }
.pmt-support-item { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; }
.pmt-support-item h3 { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 15px; text-transform: uppercase; margin: 0 0 8px; }
.pmt-support-item p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin: 0; }
.pmt-support-email { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: var(--red-light) !important; font-weight: 800; font-size: 15px; text-decoration: none; }
.pmt-support-email:hover { text-decoration: underline; }
.pmt-form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: clamp(28px, 4vw, 44px); }
.pmt-form-card h2 { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 20px; text-transform: uppercase; margin: 0 0 22px; text-align: left; }
@media (max-width: 860px) { .pmt-support-grid { grid-template-columns: 1fr; } }

/* ── Shop pages: section header search + free-targets grid ── */
.pmt-shop-search { max-width: 460px; margin: 0 0 30px; }

.pmt-free-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.pmt-free-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.pmt-free-card:hover { transform: translateY(-5px); border-color: rgba(225,29,42,0.4); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.pmt-free-card-img { background: #fff; padding: 14px; }
.pmt-free-card-img img { width: 100%; display: block; border-radius: 6px; }
.pmt-free-card-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pmt-free-card-title { font-family: 'Archivo Black', sans-serif; color: #fff; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.3px; }
.pmt-free-card .pmt-btn { width: 100%; margin-top: auto; padding: 11px 16px; font-size: 11px; }
@media (max-width: 480px) { .pmt-free-grid { grid-template-columns: repeat(2, 1fr); } }


/* Dark form fields (support form + any Bootstrap form on the site) */
.form-control, .form-select, textarea.form-control {
    background: var(--surface-2) !important; border: 1px solid var(--line) !important; color: var(--text) !important;
    border-radius: 8px !important; padding: 12px 14px !important; font-family: 'Manrope', sans-serif !important; font-size: 15px !important;
}
.form-control:focus, .form-select:focus { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(225,29,42,0.18) !important; background: var(--surface-2) !important; color: var(--text) !important; }
.form-control::placeholder { color: var(--faint) !important; }
.form-label, .form-text { color: var(--muted); }


/* ==========================================================================
   25. FAQ — accordion (main page) + article (sub-pages)
   ========================================================================== */
.pmt-faq { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.pmt-faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.pmt-faq details[open] { border-color: var(--line-strong); box-shadow: 0 14px 36px rgba(0,0,0,0.4); }
.pmt-faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px; color: #fff; transition: color .2s; }
.pmt-faq summary::-webkit-details-marker { display: none; }
.pmt-faq summary::after { content: '+'; font-family: 'Archivo Black', sans-serif; font-size: 24px; line-height: 1; color: var(--red-light); flex-shrink: 0; transition: transform .25s; }
.pmt-faq details[open] summary::after { content: '\2212'; }
.pmt-faq summary:hover { color: var(--red-light); }
.pmt-faq-answer { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; line-height: 1.8; }
.pmt-faq-answer p { margin: 0 0 14px; }
.pmt-faq-answer p:last-child { margin-bottom: 0; }
.pmt-faq-answer a { color: var(--red-light); text-decoration: none; }
.pmt-faq-answer a:hover { text-decoration: underline; }
.pmt-faq-answer strong, .pmt-faq-answer b { color: #fff; }

.pmt-faq-article { max-width: 820px; margin: 0 auto; }
.pmt-faq-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); text-decoration: none; font-size: 12.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 26px; transition: color .2s, gap .2s; }
.pmt-faq-back:hover { color: var(--red-light); gap: 11px; }
.pmt-faq-q { margin: 0 0 26px; }
.pmt-faq-cta { margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.pmt-faq-cta a { color: var(--red-light); font-weight: 700; text-decoration: none; }
.pmt-faq-cta a:hover { text-decoration: underline; }


/* ── Cart minimum-order notice ── */
.pmt-cart-note {
    display: flex; align-items: center; gap: 12px;
    background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--red);
    border-radius: 10px; padding: 14px 18px; margin-bottom: 28px;
    color: var(--muted); font-size: 14.5px; line-height: 1.5;
}
.pmt-cart-note svg { width: 20px; height: 20px; color: var(--red-light); flex-shrink: 0; }
.pmt-cart-note strong { color: #fff; }
.pmt-cart-note.is-met { border-left-color: #22c55e; }
.pmt-cart-note.is-met svg { color: #22c55e; }

