/*
 * home.css — Home Page styles ported from cyberskins design
 * Loaded conditionally via functions.php: is_front_page() only
 * Scoped: body-level rules use body.home to avoid affecting other pages
 */

/* ── GOOGLE FONTS import fallback (fonts loaded via enqueue) ── */

/* ── SCROLL REVEAL — sections fade + slide up as they enter view ──
   The .reveal class is added by home.js, so without JS the content
   renders normally (no hidden state). .is-visible is toggled on scroll. */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(0.16, 1, 0.3, 1),
        transform .7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── DESIGN TOKENS ─────────────────────── */
:root {
    --hp-bg-0: #080A0E;
    --hp-bg-1: #0B0D12;
    --hp-bg-card: #0D1018;
    --hp-red: #F5222D;
    --hp-orange: #FF6B00;
    --hp-gold: #F5B942;
    --hp-purple: #7C3AED;
    --hp-blue: #3B82F6;
    --hp-teal: #14B8A6;
    --hp-txt: #F0F2F8;
    --hp-txt2: #8B8F9A;
    --hp-txt3: #4A4E5A;
    --hp-bdr: rgba(255, 255, 255, 0.07);
    --hp-bdr2: rgba(255, 255, 255, 0.13);
}

/* ── BODY OVERRIDES on front page ──────── */
body.home {
    background: var(--hp-bg-0);
    color: var(--hp-txt);
    font-family: 'Manrope', sans-serif;
}

/* film grain */
body.home::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* scanline */
body.home::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9996;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    from {
        background-position: 0 0
    }

    to {
        background-position: 0 200px
    }
}

/* ── RARITY CSS-VARIABLE CLASSES ─────── */
.pc-restricted {
    --pc-c: rgba(255, 107, 0, 0.30);
    --pc-glow: rgba(255, 107, 0, 0.20);
    --pc-hex: rgba(255, 107, 0, 0.12);
    --pc-accent: #FF6B00;
}

.pc-gold {
    --pc-c: rgba(245, 185, 66, 0.35);
    --pc-glow: rgba(245, 185, 66, 0.22);
    --pc-hex: rgba(245, 185, 66, 0.12);
    --pc-accent: #F5B942;
}

.pc-covert {
    --pc-c: rgba(245, 34, 45, 0.40);
    --pc-glow: rgba(245, 34, 45, 0.25);
    --pc-hex: rgba(245, 34, 45, 0.15);
    --pc-accent: #F5222D;
}

.pc-classified {
    --pc-c: rgba(124, 58, 237, 0.35);
    --pc-glow: rgba(124, 58, 237, 0.22);
    --pc-hex: rgba(124, 58, 237, 0.12);
    --pc-accent: #7C3AED;
}

.pc-mil-spec {
    --pc-c: rgba(59, 130, 246, 0.30);
    --pc-glow: rgba(59, 130, 246, 0.18);
    --pc-hex: rgba(59, 130, 246, 0.10);
    --pc-accent: #3B82F6;
}

/* ── SHARED SECTION HEADER ──────────── */
.hp-sec-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
}

.hp-sec-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.92;
    color: var(--hp-txt);
}

.hp-sec-title span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.hp-sec-sub {
    font-size: 14px;
    color: var(--hp-txt2);
    margin-top: -28px;
    margin-bottom: 48px;
    line-height: 1.55;
}

.hp-btn-view-all {
    background: transparent;
    border: 1px solid var(--hp-bdr2);
    color: var(--hp-txt2);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 11px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.hp-btn-view-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 34, 45, 0.06);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.hp-btn-view-all:hover::before {
    transform: scaleX(1);
}

.hp-btn-view-all:hover {
    border-color: rgba(245, 34, 45, 0.5);
    color: var(--hp-red);
    text-decoration: none;
}

.hp-btn-view-all:hover .hp-va-arrow {
    transform: translateX(5px);
}

.hp-va-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

/* ── HERO ────────────────────────────── */
.hero {
    position: relative;
    height: 800px;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* woodmart-child header height */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--hp-bg-0) url('../img/hero-bg.png') center / cover no-repeat;
    z-index: 2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        rgba(8, 10, 14, 0.58),
        radial-gradient(ellipse 65% 55% at 72% 48%, rgba(245, 34, 45, 0.14) 0%, transparent 65%),
        radial-gradient(ellipse 45% 65% at 28% 18%, rgba(255, 107, 0, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 30% 40% at 80% 80%, rgba(124, 58, 237, 0.07) 0%, transparent 50%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: orbDrift 12s ease-in-out infinite;
    z-index: 2;
}

.orb-1 {
    width: 420px;
    height: 420px;
    background: rgba(245, 34, 45, 0.10);
    top: 5%;
    right: 8%;
    animation-delay: 0s;
}

.orb-2 {
    width: 260px;
    height: 260px;
    background: rgba(255, 107, 0, 0.07);
    bottom: 20%;
    right: 32%;
    animation-delay: -4s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(124, 58, 237, 0.08);
    top: 30%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-15px, 20px) scale(0.92);
    }
}

.hero-slashes {
    position: absolute;
    inset: 0;
}

.hero-slashes::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 52%;
    width: 2px;
    height: 150%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(11deg);
    transform-origin: top;
}

.hero-slashes::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 57%;
    width: 1px;
    height: 150%;
    background: rgba(255, 255, 255, 0.025);
    transform: rotate(11deg);
    transform-origin: top;
}

.hero-scan {
    position: absolute;
    top: -10%;
    left: 54%;
    width: 1px;
    height: 150%;
    background: linear-gradient(180deg, transparent, rgba(245, 34, 45, 0.4), transparent);
    transform: rotate(11deg);
    transform-origin: top;
    animation: scanSlash 6s ease-in-out infinite;
}

@keyframes scanSlash {

    0%,
    100% {
        opacity: 0
    }

    30%,
    70% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-cut {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 110px;
    background: var(--hp-bg-0);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
    padding: 60px 52px 80px;
    gap: 20px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-left>* {
    opacity: 0;
    animation: heroIn 0.7s ease forwards;
}

.hero-left>*:nth-child(1) {
    animation-delay: 0.1s
}

.hero-left>*:nth-child(2) {
    animation-delay: 0.25s
}

.hero-left>*:nth-child(3) {
    animation-delay: 0.4s
}

.hero-left>*:nth-child(4) {
    animation-delay: 0.55s
}

.hero-left>*:nth-child(5) {
    animation-delay: 0.7s
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(50px, 7.5vw, 88px);
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -.01em;
    color: var(--hp-txt);
    position: relative;
}

.hero-title .outline-line {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
}

.hero-title .red-line {
    color: var(--hp-red);
}

.hero-title .glitch-word {
    position: relative;
    display: inline-block;
    animation: glitchIdle 8s ease infinite;
}

.hero-title .glitch-word::before,
.hero-title .glitch-word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

.hero-title .glitch-word::before {
    color: var(--hp-red);
    clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
    transform: translate(-2px, 0);
    animation: glitchA 8s ease infinite;
}

.hero-title .glitch-word::after {
    color: #00eeff;
    clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
    transform: translate(2px, 0);
    animation: glitchB 8s ease infinite;
}

@keyframes glitchIdle {

    0%,
    85%,
    100% {
        transform: translate(0)
    }

    86% {
        transform: translate(-2px, 1px)
    }

    87% {
        transform: translate(3px, -1px)
    }

    88% {
        transform: translate(0)
    }

    90% {
        transform: translate(-1px, 0)
    }

    91% {
        transform: translate(0)
    }
}

@keyframes glitchA {

    0%,
    85%,
    100% {
        opacity: 0;
        transform: translate(-2px, 0)
    }

    86% {
        opacity: 1;
        transform: translate(-4px, 1px)
    }

    87% {
        opacity: 0
    }

    90% {
        opacity: 1;
        transform: translate(-1px, 0)
    }

    91% {
        opacity: 0
    }
}

@keyframes glitchB {

    0%,
    85%,
    100% {
        opacity: 0;
        transform: translate(2px, 0)
    }

    86% {
        opacity: 1;
        transform: translate(5px, -1px)
    }

    87% {
        opacity: 0
    }

    90% {
        opacity: 1;
        transform: translate(2px, 0)
    }

    91% {
        opacity: 0
    }
}

.hero-sub {
    font-size: 15px;
    color: var(--hp-txt2);
    line-height: 1.65;
    max-width: 430px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-main {
    background: linear-gradient(135deg, var(--hp-red), var(--hp-orange));
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 17px 40px;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-hero-main:hover::before {
    opacity: 1
}

.btn-hero-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn-hero-main:hover::after {
    left: 130%
}

.btn-hero-main:hover {
    box-shadow: 0 8px 40px rgba(245, 34, 45, 0.5), 0 0 80px rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.btn-hero-main:active {
    transform: translateY(1px)
}

.btn-hero-sec {
    background: transparent;
    border: 1px solid var(--hp-bdr2);
    color: var(--hp-txt2);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 16px 34px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hp-bdr);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-hero-sec:hover::before {
    transform: scaleX(1)
}

.btn-hero-sec:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--hp-txt);
    text-decoration: none
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--hp-bdr);
}

.stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 11px;
    color: var(--hp-txt3);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
}

/* Hero right */
.hero-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.sparks-layer {
    position: absolute;
    inset: 0;
    z-index: 20;
    overflow: hidden;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-cards .prod-card {
    position: absolute;
    width: 210px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75), 0 0 30px var(--pc-glow, rgba(245, 34, 45, 0.1));
}

.hero-cards .prod-card:nth-child(1) {
    left: 10px;
    top: 130px;
    z-index: 2;
    transform: rotate(-5deg);
    animation: hcFloat1 3.8s ease-in-out infinite
}

.hero-cards .prod-card:nth-child(2) {
    left: 162px;
    top: 240px;
    z-index: 3;
    transform: rotate(0deg);
    animation: hcFloat2 3.4s ease-in-out infinite 0.65s
}

.hero-cards .prod-card:nth-child(3) {
    left: 310px;
    top: 90px;
    z-index: 2;
    transform: rotate(5deg);
    animation: hcFloat3 3.6s ease-in-out infinite 1.3s
}

.hero-cards .prod-card:hover {
    animation-play-state: paused
}

.hero-cards .prod-card:nth-child(1):hover {
    transform: rotate(-5deg) translateY(-10px)
}

.hero-cards .prod-card:nth-child(2):hover {
    transform: rotate(0deg) translateY(-10px)
}

.hero-cards .prod-card:nth-child(3):hover {
    transform: rotate(5deg) translateY(-10px)
}

@keyframes hcFloat1 {

    0%,
    100% {
        top: 130px
    }

    50% {
        top: 125px
    }
}

@keyframes hcFloat2 {

    0%,
    100% {
        top: 240px
    }

    50% {
        top: 236px
    }
}

@keyframes hcFloat3 {

    0%,
    100% {
        top: 90px
    }

    50% {
        top: 85px
    }
}

/* ── SHARED PRODUCT CARD ─────────────── */
.prod-card {
    /* border-radius:14px; */
    background: url('/wp-content/themes/woodmart-child/img/pattern-red.png') center/cover no-repeat, var(--hp-bg-card);
    border: 1px solid var(--pc-c, rgba(255, 255, 255, 0.07));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s, border-color 0.3s;
}

.prod-card:hover {
    transform: translateY(-8px);
    border-color: var(--pc-c, rgba(255, 255, 255, 0.15));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px var(--pc-glow, rgba(245, 34, 45, 0.12));
}

.prod-img {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
}

.prod-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 55%, var(--pc-hex, rgba(245, 34, 45, 0.08)) 0%, transparent 70%);
}

.prod-hex {
    position: absolute;
    width: 128px;
    height: 128px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: linear-gradient(160deg, var(--pc-hex, rgba(245, 34, 45, 0.1)) 0%, rgba(0, 0, 0, 0.25) 100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s;
}

.prod-card:hover .prod-hex {
    transform: scale(1.14) rotate(6deg);
    opacity: 0.9
}

.prod-hex-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: var(--pc-hex, rgba(245, 34, 45, 0.08));
    filter: blur(18px);
    transform: scale(1.3);
    opacity: 0.7;
    transition: transform 0.5s, opacity 0.4s;
}

.prod-card:hover .prod-hex-glow {
    transform: scale(1.6);
    opacity: 1
}

.prod-weapon-icon {
    position: relative;
    z-index: 3;
    width: 220px;
    height: 130px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px var(--pc-glow, rgba(245, 34, 45, 0.35)));
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s;
    user-select: none;
    animation: weaponFloat 4s ease-in-out infinite;
}

.prod-card:hover .prod-weapon-icon {
    transform: scale(1.12) translateY(-5px);
    filter: drop-shadow(0 8px 24px var(--pc-glow, rgba(245, 34, 45, 0.5)));
    animation-play-state: paused;
}

@keyframes weaponFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.prod-logo-mark {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 5;
    width: 22px;
    height: 22px;
    background: rgba(8, 10, 14, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    color: var(--pc-accent, var(--hp-red));
    font-weight: 900;
}

.prod-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 28px;
    height: 28px;
    background: rgba(8, 10, 14, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-txt3);
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}

.prod-fav:hover {
    background: rgba(245, 34, 45, 0.2);
    border-color: rgba(245, 34, 45, 0.5);
    color: var(--hp-red);
    transform: scale(1.1)
}

.prod-fav.active {
    color: var(--hp-red)
}

.prod-body {
    padding: 14px 16px 16px;
}

.prod-skin-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hp-txt);
    line-height: 1;
    letter-spacing: .02em;
}

.prod-weapon-type {
    font-size: 11px;
    font-weight: 600;
    color: var(--pc-accent, var(--hp-txt3));
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 3px;
}

.prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.prod-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--hp-txt);
}

.btn-prod-buy {
    background: linear-gradient(135deg, var(--hp-red), var(--hp-orange));
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    transition: box-shadow 0.25s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    z-index: 3;
}

.btn-prod-buy:hover {
    box-shadow: 0 0 20px rgba(245, 34, 45, 0.5);
    transform: scale(1.04);
    color: #fff;
    text-decoration: none
}

/* ── CATEGORIES SECTION ──────────────── */
.cats-section {
    position: relative;
    padding: 100px 52px 80px;
    background: var(--hp-bg-0);
    z-index: 1;
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: auto auto;
    gap: 14px;
}

.c-knives {
    grid-column: 1/5;
    grid-row: 1/3;
}

.c-gloves {
    grid-column: 5/9;
    grid-row: 1/3;
}

.c-sniper {
    grid-column: 9/12;
    grid-row: 1;
}

.c-rifles {
    grid-column: 12/15;
    grid-row: 1;
}

.c-mg {
    grid-column: 9/11;
    grid-row: 2;
}

.c-pistols {
    grid-column: 11/13;
    grid-row: 2;
}

.c-smgs {
    grid-column: 13/15;
    grid-row: 2;
}

.cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--hp-bg-card);
    border: 1px solid var(--hp-bdr);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 200px;
    transform-style: preserve-3d;
    perspective: 800px;
    transition: border-color 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
    will-change: transform;
    text-decoration: none;
    color: inherit;
}

.cat-card.visible {
    animation: catReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes catReveal {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.cat-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.cc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s;
    transform-origin: center;
}

.cc-small .cc-img {
    object-fit: contain;
    object-position: center 55%;
    filter: brightness(0.8) saturate(1.15)
}

.cat-card:hover .cc-img {
    transform: scale(1.08);
    filter: brightness(0.78) saturate(1.2)
}

.cc-small:hover .cc-img {
    transform: scale(1.06);
    filter: brightness(0.92) saturate(1.25)
}

.cc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 10, 14, 0.96) 0%, rgba(8, 10, 14, 0.55) 40%, rgba(8, 10, 14, 0.12) 100%);
    transition: background 0.4s;
}

.cat-card:hover .cc-overlay {
    background: linear-gradient(to top, rgba(8, 10, 14, 0.98) 0%, rgba(8, 10, 14, 0.45) 45%, rgba(8, 10, 14, 0.08) 100%)
}

.cc-sweep {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    background-size: 100% 60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.cat-card:hover .cc-sweep {
    opacity: 1;
    animation: ccSweep 1s linear infinite
}

@keyframes ccSweep {
    from {
        background-position: 0 -60px
    }

    to {
        background-position: 0 100%
    }
}

.cc-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.cat-card:hover .cc-accent {
    transform: scaleX(1)
}

.acc-red {
    background: linear-gradient(90deg, var(--hp-red), var(--hp-orange));
}

.acc-gold {
    background: linear-gradient(90deg, var(--hp-gold), #E8A82E);
}

.acc-purple {
    background: linear-gradient(90deg, var(--hp-purple), #A78BFA);
}

.acc-blue {
    background: linear-gradient(90deg, var(--hp-blue), #60A5FA);
}

.acc-teal {
    background: linear-gradient(90deg, var(--hp-teal), #2DD4BF);
}

.acc-orange {
    background: linear-gradient(90deg, var(--hp-orange), #FBBF24);
}

.cc-corner-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 0 0 120px;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s;
}

.cat-card:hover .cc-corner-glow {
    opacity: 1
}

.c-knives .cc-corner-glow {
    background: radial-gradient(at top right, rgba(245, 34, 45, 0.25), transparent 70%)
}

.c-gloves .cc-corner-glow {
    background: radial-gradient(at top right, rgba(245, 185, 66, 0.20), transparent 70%)
}

.c-sniper .cc-corner-glow {
    background: radial-gradient(at top right, rgba(59, 130, 246, 0.20), transparent 70%)
}

.c-rifles .cc-corner-glow {
    background: radial-gradient(at top right, rgba(255, 107, 0, 0.20), transparent 70%)
}

.c-mg .cc-corner-glow {
    background: radial-gradient(at top right, rgba(20, 184, 166, 0.20), transparent 70%)
}

.c-pistols .cc-corner-glow {
    background: radial-gradient(at top right, rgba(124, 58, 237, 0.20), transparent 70%)
}

.c-smgs .cc-corner-glow {
    background: radial-gradient(at top right, rgba(245, 34, 45, 0.20), transparent 70%)
}

.cc-diag {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 4;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 56px 56px;
    border-color: transparent transparent rgba(255, 255, 255, 0.04) transparent;
    transition: border-width 0.3s;
}

.cat-card:hover .cc-diag {
    border-width: 0 0 72px 72px
}

.cc-hot {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 7;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 10px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    animation: hotBadgePulse 2.5s ease infinite;
}

@keyframes hotBadgePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.75
    }
}

.cc-content {
    position: relative;
    z-index: 5;
    padding: 20px 22px;
}

.cc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: var(--hp-txt);
}

.cc-name-lg {
    font-size: 34px
}

.cc-name-md {
    font-size: 26px
}

.cc-name-sm {
    font-size: 21px
}

.cc-sub {
    font-size: 11px;
    color: var(--hp-txt3);
    margin-top: 5px;
    line-height: 1.45;
}

.cc-tall {
    min-height: 470px;
}

.cc-medium {
    min-height: 225px;
}

.cc-small {
    min-height: 212px;
}

/* ── HOT DROPS SECTION ───────────────── */
.hotdrops-section {
    position: relative;
    padding: 90px 52px;
    background: var(--hp-bg-1);
    z-index: 1;
}

.hotdrops-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 34, 45, 0.4), rgba(255, 107, 0, 0.3), transparent);
}

.hd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.hd-card {
    background: url('/wp-content/themes/woodmart-child/img/pattern-red.png') center/cover no-repeat, var(--hp-bg-card);
    border: 1px solid var(--pc-c, rgba(255, 255, 255, 0.07));
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s, border-color 0.3s;
}

.hd-card:hover {
    transform: translateY(-8px);
    border-color: var(--pc-c, rgba(255, 255, 255, 0.15));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px var(--pc-glow, rgba(245, 34, 45, 0.15));
}

.hd-img-wrap {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hd-img-wrap .prod-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 55%, var(--pc-hex, rgba(245, 34, 45, 0.08)) 0%, transparent 70%);
}

.hd-img-wrap .prod-hex-glow {
    position: absolute;
    width: 175px;
    height: 175px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: var(--pc-hex, rgba(245, 34, 45, 0.08));
    filter: blur(22px);
    transform: scale(1.3);
    opacity: 0.7;
    transition: transform 0.5s, opacity 0.4s;
}

.hd-card:hover .hd-img-wrap .prod-hex-glow {
    transform: scale(1.65);
    opacity: 1
}

.hd-img-wrap .prod-hex {
    position: absolute;
    width: 155px;
    height: 155px;
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background: linear-gradient(160deg, var(--pc-hex, rgba(245, 34, 45, 0.1)) 0%, rgba(0, 0, 0, 0.25) 100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hd-card:hover .hd-img-wrap .prod-hex {
    transform: scale(1.12) rotate(5deg)
}

.hd-img-wrap .prod-weapon-icon {
    position: relative;
    z-index: 3;
    width: 360px;
    height: 160px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 22px var(--pc-glow, rgba(245, 34, 45, 0.35)));
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
    animation: weaponFloat 4s ease-in-out infinite;
}

.hd-card:hover .hd-img-wrap .prod-weapon-icon {
    transform: scale(1.1) translateY(-6px);
    animation-play-state: paused
}

.hd-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 30px;
    height: 30px;
    background: rgba(8, 10, 14, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-txt3);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.hd-fav:hover {
    background: rgba(245, 34, 45, 0.2);
    border-color: rgba(245, 34, 45, 0.5);
    color: var(--hp-red);
    transform: scale(1.1)
}

.hd-fav svg path {
    transition: fill 0.2s ease, stroke 0.2s ease
}

.hd-body {
    padding: 16px 20px 20px;
    /* background: rgba(8, 10, 14, 0.62); */
}

.hd-skin-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hp-txt);
    line-height: 1;
}

.hd-weapon-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--pc-accent, var(--hp-txt3));
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 3px;
}

.hd-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px
}

.hd-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--hp-txt)
}

.btn-hd-buy {
    background: linear-gradient(135deg, var(--hp-red), var(--hp-orange));
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 4px;
    transition: box-shadow 0.25s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-hd-buy:hover {
    box-shadow: 0 0 25px rgba(245, 34, 45, 0.6);
    transform: scale(1.04);
    color: #fff;
    text-decoration: none
}

/* ── POPULAR CATALOG SECTION ─────────── */
.catalog-section {
    position: relative;
    padding: 90px 52px;
    background: var(--hp-bg-0);
    z-index: 1;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.catalog-layout {
    margin-top: 0;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* ── BLOG SECTION ────────────────────── */
.blog-section {
    position: relative;
    padding: 90px 52px;
    background: var(--hp-bg-1);
    z-index: 1;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-card {
    background: var(--hp-bg-card);
    border: 1px solid var(--hp-bdr);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: inherit
}

.blog-card-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--hp-red), var(--hp-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
}

.blog-card:hover .blog-card-top {
    transform: scaleX(1)
}

.blog-img-wrap {
    overflow: hidden;
    height: 168px;
    flex-shrink: 0;
    position: relative
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s;
    filter: brightness(0.78) saturate(1.1);
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(1.2)
}

.blog-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(8, 10, 14, 0.7));
}

.blog-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(245, 34, 45, 0.10);
    border: 1px solid rgba(245, 34, 45, 0.22);
    color: var(--hp-red);
    margin: 16px 16px 0;
}

.blog-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hp-txt);
    line-height: 1.15;
    padding: 8px 16px 0;
}

.blog-desc {
    font-size: 12px;
    color: var(--hp-txt2);
    line-height: 1.6;
    padding: 7px 16px 0;
    flex: 1;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid var(--hp-bdr);
    margin-top: 14px;
}

.blog-read {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--hp-txt3);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.blog-card:hover .blog-read {
    color: var(--hp-red)
}

.blog-read-arrow {
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center
}

.blog-card:hover .blog-read-arrow {
    transform: translateX(4px)
}

/* ── HOW IT WORKS ────────────────────── */
.hiw-section {
    position: relative;
    padding: 90px 52px;
    background: var(--hp-bg-0);
    z-index: 1;
    overflow: hidden;
}

.hiw-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.hiw-line {
    position: absolute;
    top: 50%;
    left: 52px;
    right: 52px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 34, 45, 0.3), rgba(255, 107, 0, 0.2), rgba(245, 34, 45, 0.3), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.hiw-step {
    position: relative;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hiw-step.visible {
    opacity: 1;
    transform: translateY(0)
}

.hiw-node {
    width: 56px;
    height: 56px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.hiw-node-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--hp-bdr2);
    background: var(--hp-bg-card);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.hiw-step:hover .hiw-node-ring {
    border-color: var(--step-c, rgba(245, 34, 45, 0.6));
    box-shadow: 0 0 24px var(--step-glow, rgba(245, 34, 45, 0.25));
}

.hiw-node-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid var(--step-c, rgba(245, 34, 45, 0.3));
    opacity: 0;
    animation: stepPulse 2.8s ease infinite;
}

.hiw-step:nth-child(1) .hiw-node-pulse {
    animation-delay: 0s
}

.hiw-step:nth-child(2) .hiw-node-pulse {
    animation-delay: 0.7s
}

.hiw-step:nth-child(3) .hiw-node-pulse {
    animation-delay: 1.4s
}

.hiw-step:nth-child(4) .hiw-node-pulse {
    animation-delay: 2.1s
}

@keyframes stepPulse {
    0% {
        opacity: 0;
        transform: scale(0.8)
    }

    30% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: scale(1.5)
    }
}

.hiw-icon {
    position: relative;
    z-index: 2;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--step-c, rgba(245, 34, 45, 0.9));
    filter: drop-shadow(0 2px 8px var(--step-glow, rgba(245, 34, 45, 0.4)));
}

.hiw-num {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 3;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--step-c, var(--hp-red));
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hiw-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--hp-txt);
    letter-spacing: .04em;
}

.hiw-desc {
    font-size: 13px;
    color: var(--hp-txt2);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.hiw-step:nth-child(1) {
    --step-c: rgba(245, 34, 45, 0.7);
    --step-glow: rgba(245, 34, 45, 0.25)
}

.hiw-step:nth-child(2) {
    --step-c: rgba(255, 107, 0, 0.7);
    --step-glow: rgba(255, 107, 0, 0.25)
}

.hiw-step:nth-child(3) {
    --step-c: rgba(124, 58, 237, 0.7);
    --step-glow: rgba(124, 58, 237, 0.25)
}

.hiw-step:nth-child(4) {
    --step-c: rgba(20, 184, 166, 0.7);
    --step-glow: rgba(20, 184, 166, 0.25)
}

/* ── CTA BANNER ──────────────────────── */
.cta-section {
    position: relative;
    padding: 100px 52px;
    background: url('/wp-content/themes/cyberskins/cta-bg.png') center center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(8, 10, 14, 0.74);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245, 34, 45, 0.09) 0%, transparent 65%);
}

.cta-inner {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.93;
    color: var(--hp-txt);
}

.cta-sub {
    font-size: 14px;
    color: var(--hp-txt2);
    line-height: 1.65;
    max-width: 520px
}

.cta-search {
    display: flex;
    width: 100%;
    max-width: 520px;
    border: 1px solid var(--hp-bdr2);
    background: var(--hp-bg-card);
    overflow: hidden;
    transition: border-color 0.3s;
}

.cta-search:focus-within {
    border-color: rgba(245, 34, 45, 0.5)
}

.cta-search input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 20px;
    color: var(--hp-txt);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.cta-search input::placeholder {
    color: var(--hp-txt3)
}

.cta-search-btn {
    background: linear-gradient(135deg, var(--hp-red), var(--hp-orange));
    border: none;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0 24px;
    transition: box-shadow 0.25s;
    cursor: pointer;
    white-space: nowrap;
}

.cta-search-btn:hover {
    box-shadow: 0 0 24px rgba(245, 34, 45, 0.5)
}

/* no-products / no-posts fallback notice */
.hp-empty-notice {
    grid-column: 1/-1;
    padding: 48px 20px;
    text-align: center;
    color: var(--hp-txt3);
    font-size: 14px;
    letter-spacing: .08em;
    border: 1px dashed var(--hp-bdr);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width:1200px) {
    .hero-inner {
        padding: 60px 32px 80px;
    }

    .cats-section,
    .hotdrops-section,
    .catalog-section,
    .blog-section,
    .hiw-section,
    .cta-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hiw-line {
        left: 32px;
        right: 32px;
    }

    .prod-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:1024px) {
    .hero {
        height: auto;
        min-height: 640px;
        padding-top: 80px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 24px 40px;
    }

    .hero-right {
        display: none;
    }

    .cats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
    }

    .c-knives,
    .c-gloves,
    .c-sniper,
    .c-rifles,
    .c-mg,
    .c-pistols,
    .c-smgs {
        grid-column: unset;
        grid-row: unset;
    }

    .cc-tall,
    .cc-medium {
        min-height: 220px;
    }

    .hd-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hd-grid .hd-card:last-child {
        grid-column: 1/-1;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cats-section,
    .hotdrops-section,
    .catalog-section,
    .blog-section,
    .hiw-section,
    .cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width:640px) {
    .hero-title {
        font-size: clamp(40px, 11vw, 60px);
    }

    .hero-stats {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hp-sec-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .cats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cc-tall {
        min-height: 240px;
    }

    .cc-medium,
    .cc-small {
        min-height: 180px;
    }

    .hd-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hd-grid .hd-card:last-child {
        grid-column: unset;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hiw-line {
        display: none;
    }

    .cta-search {
        flex-direction: column;
    }

    .cta-search-btn {
        padding: 14px;
        width: 100%;
    }

    .cats-section,
    .hotdrops-section,
    .catalog-section,
    .blog-section,
    .hiw-section,
    .cta-section {
        padding: 60px 16px;
    }

    .hero-inner {
        padding: 40px 16px 60px;
    }
}