/* Секция формы */
.contact-form-section {
    position: relative !important;
    overflow: hidden !important;
}

/* Шары через псевдоэлементы секции */
.contact-form-section::before {
    content: '' !important;
    position: absolute !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    filter: blur(80px) !important;
    opacity: 0.18 !important;
    background: #bef970 !important;
    left: -80px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.contact-form-section::after {
    content: '' !important;
    position: absolute !important;
    width: 320px !important;
    height: 320px !important;
    border-radius: 50% !important;
    filter: blur(80px) !important;
    opacity: 0.18 !important;
    background: #bef970 !important;
    right: -80px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* Градиенты через дочерний элемент .elementor-widget-container */
.contact-form-section .elementor-widget:first-child .elementor-widget-container {
    position: relative !important;
}

.contact-form-section .elementor-widget:first-child .elementor-widget-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 120px !important;
    background: linear-gradient(to bottom, #111111, transparent) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.contact-form-section .elementor-widget:last-child .elementor-widget-container::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 120px !important;
    background: linear-gradient(to top, #111111, transparent) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

/* ============================================================
   GLOBAL DARK THEME — all pages except checkout/cart/account
   ============================================================ */
body:not(.woocommerce-checkout):not(.woocommerce-cart):not(.woocommerce-account) {
    background-color: #111111 !important;
    color: #ffffff !important;
}

/* Woodmart layout wrappers — make transparent so dark body shows through */
.wd-content-area,
#content,
.wd-wrapper,
.site-main,
#main,
.woocommerce-page #page,
.site-content,
.wd-site-body,
.wd-page-content,
.wd-sidebar,
.elementor,
.elementor-section-wrap {
    background: transparent !important;
}

/* Woodmart WooCommerce product grid dark overrides */
.products.woocommerce,
.products.columns-4,
ul.products {
    background: transparent !important;
}

.woocommerce-products-header,
.woocommerce-products-header__title {
    color: #fff !important;
    background: transparent !important;
}

/* WooCommerce pagination dark */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: rgba(153, 238, 45, 0.12) !important;
    border-color: rgba(153, 238, 45, 0.3) !important;
    color: #99ee2d !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
    color: rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
}

.woocommerce-breadcrumb a {
    color: #99ee2d !important;
}

/* WooCommerce notices */
.woocommerce-notices-wrapper {
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}


/* ============================================================
   MUSHSKINS HEADER — floating pill (overrides style.css)
   ============================================================ */
body {}

.header,
#header.header,
header.header {
    position: fixed !important;
    top: 24px !important;
    height: 72px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    padding: 8px 8px 8px 24px !important;
    background: rgba(12, 18, 2, 0.88) !important;
    border: 1px solid #cfe83d !important;
    border-radius: 999px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    transition: background .3s ease, box-shadow .3s ease !important;
}

.header--scrolled {
    background: rgba(12, 18, 2, 0.97) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
}

/* WP admin bar compensation — push header below 32px bar + 24px gap */
@media screen {

    html.admin-bar .header,
    html.admin-bar #header.header,
    html.admin-bar header.header {
        top: 56px !important;
    }
}

/* Logo → center */
.header__logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex-shrink: 0 !important;
}

/* Nav → left flex */
.header__nav {
    flex: 1 0 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
}

.header__nav-list {
    gap: 0 !important;
}

.header__nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0 14px !important;
    height: 56px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color .2s ease !important;
}

.header__nav-link:hover,
.header__nav-link--active {
    color: #cde738 !important;
    opacity: 1 !important;
}

.header__nav-link::after {
    display: none !important;
}

.header__nav-icon {
    flex-shrink: 0;
    display: block;
}

/* Right → justify to end */
.header__right {
    flex: 1 0 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
}

/* Icon buttons → circular */
.header__icon-btn {
    width: 52px !important;
    height: 52px !important;
    border-radius: 999px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: inset 0px 1px 7px 0px rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.header__icon-btn:hover {
    background: rgba(205, 231, 56, 0.15) !important;
    color: #cde738 !important;
    border: none !important;
}

/* Steam login button */
.header__login {
    height: 52px !important;
    padding: 0 20px !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, #1f1f1f 0%, #000 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    gap: 8px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #fff !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    margin-left: 4px !important;
}

.header__login:hover {
    color: #cde738 !important;
}

.header__login-avatar {
    width: 32px !important;
    height: 32px !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

/* Badge — circular style */
.header__cart-badge,
.header__wish-badge {
    border-radius: 50% !important;
    background: #cde738 !important;
    color: #000 !important;
}

.header__logo-img {
  width: 103px;
  height: 100%;
  /* height: 32px; */
  /* width: auto; */
  object-fit: cover;
}


/* ============================================================
   MUSHSKINS FOOTER — card with circle and marquee
   ============================================================ */
.footer {
    margin-top: 0 !important;
    display: block !important;
    min-height: auto !important;
    border-top: none !important;
    padding: 24px !important;
    background: transparent !important;
}

.footer-card {
    width: 100%;
    min-height: 520px;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    background-color: #0a1100;
    background-image: radial-gradient(ellipse at 50% 70%, rgba(30, 75, 40, 0.85) 0%, rgba(30, 75, 40, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Circle — absolutely centered */
.footer-circle-wrap {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    pointer-events: none;
    z-index: 1;
}

.footer-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: visible;
    background: radial-gradient(ellipse at 50% 60%, rgba(20, 55, 25, 0.7) 0%, transparent 70%);
}

.footer-circle img {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: auto;
    z-index: 2;
}

.footer-circle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(205, 231, 56, 0.2);
    pointer-events: none;
}

.footer-inner-square {
    position: absolute;
    inset: 30px;
    border: 1px dashed rgba(205, 231, 56, 0.12);
    pointer-events: none;
}

/* Main row: nav-left | (center circle gap) | nav-right */
.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 56px 64px 0;
    min-height: 380px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

/* Left nav columns */
.footer-nav-left {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    gap: 48px;
}

.footer-nav-left .footer-nav-col,
.footer-nav-left ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-left li a,
.footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: color .2s ease;
}

.footer-nav-left li a:hover,
.footer-nav-link:hover {
    color: #cde738;
    text-decoration: none;
}

/* Right legal nav */
.footer-nav-right {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
}

.footer-nav-right .footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color .2s ease;
    text-align: right;
}

.footer-nav-right .footer-nav-link:hover {
    color: #cde738;
    text-decoration: none;
}

/* Marquee */
.footer-marquee-outer {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    z-index: 2;
    flex-shrink: 0;
    margin: 0;
}

.footer-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: footer-marquee 18s linear infinite;
    flex-shrink: 0;
}

.footer-marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 1;
    color: #fbff85;
    text-transform: uppercase;
    padding-right: 48px;
    opacity: 0.2;
}

@keyframes footer-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Respect reduced-motion: hold the marquee still (content stays visible). */
@media (prefers-reduced-motion: reduce) {
    .footer-marquee-track {
        animation-play-state: paused;
    }
}

/* Bottom bar: socials + copyright */
.footer-bottom-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 64px 40px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.footer-socials-row {
    grid-column: 1;
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    justify-self: start;
}

.footer-social-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: color .2s ease;
}

.footer-social-text:hover {
    color: #cde738;
    text-decoration: none;
}

.footer-copyright {
    grid-column: 2;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

/* ============================================================
   RESPONSIVE — header pill on mobile
   ============================================================ */
@media (max-width: 1024px) {
    body {}

    .header {
        padding: 8px 16px !important;
    }

    .header__nav {
        display: none !important;
    }

    .header__burger {
        display: flex !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .header__login {
        display: none !important;
    }

    .header__logo {
        position: static !important;
        transform: none !important;
    }
}

@media (max-width: 900px) {
    .footer-main-row {
        padding: 32px 32px 0;
    }

    .footer-nav-left {
        width: 220px;
        gap: 32px;
    }

    .footer-nav-right {
        width: 130px;
    }

    .footer-circle-wrap {
        width: 320px;
        height: 320px;
        top: 20px;
    }

    .footer-circle img {
        width: 230px;
    }

    .footer-main-row {
        min-height: 280px;
    }

    .footer-bottom-bar {
        padding: 12px 32px 32px;
    }
}

@media (max-width: 600px) {
    .footer-card {
        border-radius: 24px;
    }

    .footer-circle-wrap {
        width: 220px;
        height: 220px;
        top: 16px;
    }

    .footer-circle img {
        width: 160px;
    }

    .footer-main-row {
        padding: 24px 24px 0;
        min-height: 200px;
    }

    .footer-nav-left {
        gap: 24px;
    }

    .footer-nav-left li a,
    .footer-nav-link {
        font-size: 14px;
    }

    .footer-nav-right .footer-nav-link {
        font-size: 14px;
    }

    .footer-marquee-track span {
        font-size: 60px;
    }

    .footer-bottom-bar {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        padding: 12px 24px 28px;
    }
    .footer-socials-row { grid-column: 1; justify-self: center; }
    .footer-copyright { grid-column: 1; }
}

/* ── ≤480px (iPhone SE etc.): footer columns stack into ONE left-aligned
      column. The footer-main-row stayed a flex row at every breakpoint, so
      on very narrow screens the right legal column (.footer-nav-right,
      right-aligned, fixed width) got squeezed/clipped. Force a single
      left-aligned column with the right column below the others. ── */
@media (max-width: 480px) {
    .footer,
    .footer-card,
    .footer-main-row {
        overflow: visible !important;
        max-width: 100% !important;
    }
    .footer-main-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 2rem !important;
        width: 100% !important;
        padding: 28px 20px 0 !important;
        min-height: 0 !important;
    }
    .footer-nav-left,
    .footer-nav-right {
        width: 100% !important;
        max-width: 100% !important;
        flex: unset !important;
        align-items: flex-start !important;
        text-align: left !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .footer-nav-left { flex-direction: row; flex-wrap: wrap; gap: 28px 40px; }
    .footer-nav-right { order: 1; }            /* right column below the others */
    .footer-nav-right .footer-nav-link { text-align: left !important; }
    /* Decorative centred circle must not overlap the stacked links. */
    .footer-circle-wrap { position: relative; left: auto; transform: none; margin: 0 auto 8px; width: 180px; height: 180px; top: auto; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG PAGE (static Elementor page /blog/, post ID 79)
   Rendered by Blog_Page_Widget (plugin) → markup is fixed.
   We only restyle it here, scoped to body.page-id-79.
   New design system, in sync with the home page:
     Accent #cde738 · dark bg #0c1202 · Bebas Neue / Inter ·
     strong rounding · glossy inset shadows.
   NOTE: tied to the blog page ID (79). If the blog page ID
   changes, update the `page-id-79` selectors below.
   blog.js (global) drives the category filter — untouched.
═══════════════════════════════════════════════════════════ */
body.page-id-79 {
    --bl-accent: #cde738;
    --bl-rgb: 205, 231, 54;
    --bl-bg: #0c1202;
    --bl-radius-lg: 40px;
    --bl-radius: 24px;
    --bl-title-gradient: radial-gradient(ellipse at 50% 50%, #fff152 0%, #cfe636 50%, #9edb1a 100%);
    --bl-card-shadow:
        inset 0px 0.361px 0.65px -1px rgba(255, 255, 255, 0.19),
        inset 0px 1.373px 2.472px -2px rgba(255, 255, 255, 0.18),
        inset 0px 6px 10.8px -3px rgba(255, 255, 255, 0.13);
}

/* ── Page background + header offset ── */
body.page-id-79,
body.page-id-79 .site-content,
body.page-id-79 .page-wrapper,
body.page-id-79 #page {
    background:
        radial-gradient(ellipse 130% 70% at 50% 24%, rgba(25, 62, 4, 0.5) 0%, transparent 64%),
        var(--bl-bg);
}

body.page-id-79 .site-content,
body.page-id-79 .page-wrapper {
    padding-top: var(--header-h, 80px);
}

body.page-id-79 .elementor,
body.page-id-79 .elementor-section,
body.page-id-79 .elementor-container {
    background: transparent;
}

/* Shared section container width */
body.page-id-79 .blog-hero .container,
body.page-id-79 .blog-cats .container,
body.page-id-79 .blog-featured .container,
body.page-id-79 .blog-list .container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 4vw, 40px);
    padding-right: clamp(16px, 4vw, 40px);
}

/* ══ HERO — like About: centered block, text left inside ══ */
body.page-id-79 .blog-hero {
    padding: 28px 0 6px;
    position: relative;
}

/* No label / eyebrow above the title on secondary pages */
body.page-id-79 .blog-hero__eyebrow {
    display: none !important;
}

body.page-id-79 .blog-hero .blog-hero__inner {
    position: relative;
    /* max-width: 1080px; */
    text-align: left;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(var(--bl-rgb), .07) 0%, transparent 55%),
        linear-gradient(180deg, rgba(20, 42, 12, .55), rgba(7, 14, 3, .92));
    border: 1px solid rgba(var(--bl-rgb), .12);
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-card-shadow);
    padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
    overflow: hidden;
}

body.page-id-79 .blog-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 92px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0 0 18px;
    max-width: 15ch;
    /* keep title to ~2 lines */
    background: var(--bl-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.page-id-79 .blog-hero__sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.6vw, 17px);
    color: rgba(255, 255, 255, .62);
    line-height: 1.65;
    max-width: 620px;
    margin: 0;
}

/* ══ CATEGORY TABS — accent pills ══ */
body.page-id-79 .blog-cats {
    margin-top: clamp(28px, 4vw, 48px);
    margin-bottom: clamp(24px, 4vw, 44px);
}

body.page-id-79 .blog-cats__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

body.page-id-79 .blog-cats__inner::-webkit-scrollbar {
    display: none;
}

body.page-id-79 .blog-cats__btn {
    flex-shrink: 0;
    padding: 10px 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: .03em;
    color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

body.page-id-79 .blog-cats__btn:hover {
    color: #fff;
    border-color: rgba(var(--bl-rgb), .3);
}

body.page-id-79 .blog-cats__btn.is-active {
    color: #000;
    background: var(--bl-accent);
    border-color: var(--bl-accent);
}

/* ══ FEATURED ARTICLE — large rounded glossy card ══ */
body.page-id-79 .blog-featured {
    margin-bottom: clamp(36px, 5vw, 60px);
}

body.page-id-79 .blog-featured__link {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(20, 40, 12, .5), rgba(8, 16, 4, .85));
    border: 1px solid rgba(var(--bl-rgb), .14);
    border-radius: var(--bl-radius-lg);
    box-shadow: var(--bl-card-shadow);
    overflow: hidden;
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

body.page-id-79 .blog-featured__link:hover {
    border-color: rgba(var(--bl-rgb), .34);
    box-shadow: var(--bl-card-shadow), 0 20px 56px rgba(0, 0, 0, .45), 0 0 36px rgba(var(--bl-rgb), .08);
    transform: translateY(-4px);
}

body.page-id-79 .blog-featured__img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

body.page-id-79 .blog-featured__img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

body.page-id-79 .blog-featured__link:hover .blog-featured__img {
    transform: scale(1.04);
}

body.page-id-79 .blog-featured__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: var(--bl-accent);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

body.page-id-79 .blog-featured__content {
    padding: clamp(28px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

body.page-id-79 .blog-featured__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bl-accent);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.page-id-79 .blog-featured__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1.02;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

body.page-id-79 .blog-featured__link:hover .blog-featured__title {
    color: var(--bl-accent);
}

body.page-id-79 .blog-featured__desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-id-79 .blog-featured__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    flex-wrap: wrap;
}

body.page-id-79 .blog-featured__meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

body.page-id-79 .blog-featured__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 6px;
    height: 48px;
    padding: 0 28px;
    background: var(--bl-accent);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: .02em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow:
        inset 0px 0.7px 1.9px -0.3px rgba(255, 255, 255, 0.24),
        inset 0px 2.7px 7px -0.7px rgba(255, 255, 255, 0.34),
        inset 0px 12px 31px -1px rgba(255, 255, 255, 0.7);
    transition: transform .2s ease, filter .2s ease;
}

body.page-id-79 .blog-featured__link:hover .blog-featured__cta {
    transform: scale(1.02);
    filter: brightness(1.04) drop-shadow(0 0 22px rgba(var(--bl-rgb), .4));
}

/* ══ ARTICLES GRID ══ */
body.page-id-79 .blog-list {
    margin-bottom: clamp(48px, 7vw, 90px);
}

body.page-id-79 .blog-list__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: clamp(20px, 3vw, 32px);
    flex-wrap: wrap;
}

body.page-id-79 .blog-list__heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    color: #fff;
    letter-spacing: -.5px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}

body.page-id-79 .blog-list__count {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

body.page-id-79 .blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.6vw, 36px) clamp(16px, 2vw, 28px);
}

/* Card — transparent, rounded image, bottom divider (screenshot style) */
body.page-id-79 .blog-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(var(--bl-rgb), .14);
    border-radius: 0;
    padding-bottom: clamp(22px, 2.4vw, 32px);
    overflow: visible;
    text-decoration: none;
    transition: transform .25s ease;
}

body.page-id-79 .blog-card:hover {
    transform: translateY(-4px);
}

body.page-id-79 .blog-card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--bl-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
    margin-bottom: 18px;
    box-shadow: var(--bl-card-shadow);
}

body.page-id-79 .blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

body.page-id-79 .blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

body.page-id-79 .blog-card__cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bl-accent);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
}

body.page-id-79 .blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

body.page-id-79 .blog-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 1.7vw, 25px);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

body.page-id-79 .blog-card:hover .blog-card__title {
    color: var(--bl-accent);
}

body.page-id-79 .blog-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.page-id-79 .blog-card__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 6px;
    padding-top: 0;
    border-top: none;
}

body.page-id-79 .blog-card__date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

body.page-id-79 .blog-card__date::before {
    content: "Date: ";
    color: rgba(var(--bl-rgb), .8);
}

body.page-id-79 .blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 22px;
    background: var(--bl-accent);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: .03em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow:
        inset 0px 0.7px 1.9px -0.3px rgba(255, 255, 255, 0.24),
        inset 0px 2.7px 7px -0.7px rgba(255, 255, 255, 0.34),
        inset 0px 12px 31px -1px rgba(255, 255, 255, 0.7);
    transition: transform .2s ease, filter .2s ease;
}

body.page-id-79 .blog-card:hover .blog-card__cta {
    transform: scale(1.03);
    filter: brightness(1.04) drop-shadow(0 0 18px rgba(var(--bl-rgb), .4));
}

/* Empty state (toggled by blog.js) */
body.page-id-79 .blog-list__empty {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: rgba(255, 255, 255, .4);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

body.page-id-79 .blog-list__empty.is-visible {
    display: block;
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {

    body.page-id-79 .blog-featured__link,
    body.page-id-79 .blog-featured__img,
    body.page-id-79 .blog-featured__cta,
    body.page-id-79 .blog-card,
    body.page-id-79 .blog-card__img,
    body.page-id-79 .blog-card__cta {
        transition: none !important;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    body.page-id-79 .blog-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    body.page-id-79 .blog-featured__link {
        grid-template-columns: 1fr;
    }

    body.page-id-79 .blog-featured__img-wrap,
    body.page-id-79 .blog-featured__img {
        min-height: 240px;
    }
}

@media (max-width: 600px) {
    body.page-id-79 .blog-list__grid {
        grid-template-columns: 1fr;
    }

    body.page-id-79 .blog-hero .blog-hero__inner {
        padding: 30px 22px;
        border-radius: 24px;
    }

    body.page-id-79 .blog-featured__content {
        padding: 24px 20px;
    }
}

/* ═══════════════════════════════════════════════════════════
   HOME PAGE article cards (.mush-blog-article) — align to the
   new blog-card style. Override only; plugin markup untouched.
═══════════════════════════════════════════════════════════ */
.mush-page .mush-blog-grid .mush-blog-article {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(205, 231, 54, .14) !important;
    border-radius: 0 !important;
    padding-bottom: 26px !important;
    overflow: visible !important;
}

.mush-page .mush-blog-grid .mush-blog-article:hover {
    transform: translateY(-4px);
    box-shadow: none !important;
}

.mush-page .mush-blog-grid .mush-blog-img-wrap {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow:
        inset 0px 0.361px 0.65px -1px rgba(255, 255, 255, 0.19),
        inset 0px 1.373px 2.472px -2px rgba(255, 255, 255, 0.18),
        inset 0px 6px 10.8px -3px rgba(255, 255, 255, 0.13);
    margin-bottom: 18px;
}

.mush-page .mush-blog-grid .mush-blog-article-title {
    text-transform: uppercase;
    letter-spacing: .01em;
    transition: color .2s ease;
}

.mush-page .mush-blog-grid .mush-blog-article:hover .mush-blog-article-title {
    color: #cde738;
}

/* Read-more affordance (no markup change available on home) */
.mush-page .mush-blog-grid .mush-blog-article-body::after {
    content: "Read more →";
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #cde738;
    transition: opacity .2s ease;
}

.mush-page .mush-blog-grid .mush-blog-article:hover .mush-blog-article-body::after {
    opacity: .75;
}

@media (prefers-reduced-motion: reduce) {

    .mush-page .mush-blog-grid .mush-blog-article,
    .mush-page .mush-blog-grid .mush-blog-article-title,
    .mush-page .mush-blog-grid .mush-blog-article-body::after {
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   FAQ PAGE  (static page /faqs/, ID 77, template page-faq.php)
   Frontend-only. New design system in sync with the home page:
     Accent #cde738 · dark bg #0c1202 · Bebas Neue / Inter ·
     strong rounding · glow / noise / glitch / cyber lines.
   CSS-only accordion (checkbox hack) — no JS dependency.
   Scoped to body.page-id-77 .faqs-page. NOTE: page bg is tied
   to ID 77; component styles use the .faqs-page wrapper class.
═══════════════════════════════════════════════════════════ */
body.page-id-77 {
    --fq-accent: #cde738;
    --fq-rgb: 205, 231, 54;
    --fq-cyan: #19d0ff;
    --fq-bg: #0c1202;
    --fq-radius-lg: 40px;
    --fq-radius: 18px;
    --fq-title-gradient: radial-gradient(ellipse at 50% 50%, #fff152 0%, #cfe636 50%, #9edb1a 100%);
    --fq-card-shadow:
        inset 0px 0.361px 0.65px -1px rgba(255, 255, 255, 0.19),
        inset 0px 1.373px 2.472px -2px rgba(255, 255, 255, 0.18),
        inset 0px 6px 10.8px -3px rgba(255, 255, 255, 0.13);
}

body.page-id-77,
body.page-id-77 .site-content,
body.page-id-77 .entry-content,
body.page-id-77 .page-wrapper,
body.page-id-77 #page {
    background:
        radial-gradient(ellipse 130% 70% at 50% 22%, rgba(25, 62, 4, 0.5) 0%, transparent 64%),
        var(--fq-bg);
}

/* Reset theme content padding — hero clears the header itself */
body.page-id-77 .site-content,
body.page-id-77 .page-wrapper {
    padding-top: 0;
}

.faqs-page {
    padding: 0 clamp(16px, 4vw, 40px) clamp(56px, 8vw, 96px);
    color: #fff;
}

/* ══ HERO — compact, About-style rounded panel; text left ══ */
.faqs-page .faq-hero {
    position: relative;
    max-width: 1080px;
    margin: calc(var(--header-h, 80px) + 28px) auto 0;
    padding: clamp(40px, 5vw, 62px) clamp(28px, 4vw, 56px);
    border: 1px solid rgba(var(--fq-rgb), .12);
    border-radius: var(--fq-radius-lg);
    box-shadow: var(--fq-card-shadow);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(var(--fq-rgb), .07) 0%, transparent 55%),
        linear-gradient(180deg, rgba(20, 42, 12, .55), rgba(7, 14, 3, .92));
    overflow: hidden;
    text-align: left;
}

/* Noise overlay */
.faqs-page .faq-hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: .035;
    pointer-events: none;
}

/* Cyber decorative lines */
.faqs-page .faq-hero__lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent 0 46px, rgba(var(--fq-rgb), .05) 46px 47px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 70%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 70%);
    opacity: .6;
    pointer-events: none;
}

/* Moving accent scanline */
.faqs-page .faq-hero__scanline {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--fq-rgb), .55), transparent);
    opacity: 0;
    pointer-events: none;
    animation: faqScan 5.5s linear infinite;
}

@keyframes faqScan {
    0% {
        top: 0;
        opacity: 0;
    }

    12% {
        opacity: .55;
    }

    88% {
        opacity: .55;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Hero glow */
.faqs-page .faq-hero__glow {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 220px;
    max-width: 90%;
    background: radial-gradient(ellipse, rgba(var(--fq-rgb), .12) 0%, transparent 70%);
    pointer-events: none;
}

.faqs-page .faq-hero__inner {
    position: relative;
    z-index: 1;
}

.faqs-page .faq-hero__title {
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 7vw, 90px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0 0 16px;
    max-width: 16ch;
    /* keep title to ~2 lines */
    background: var(--fq-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: faqGlitch 7s infinite steps(1);
}

/* Subtle periodic RGB-split glitch */
@keyframes faqGlitch {

    0%,
    90%,
    100% {
        text-shadow: none;
    }

    91% {
        text-shadow: -2px 0 var(--fq-accent), 2px 0 var(--fq-cyan);
    }

    93% {
        text-shadow: 2px 0 var(--fq-accent), -2px 0 var(--fq-cyan);
    }

    95% {
        text-shadow: -1px 0 var(--fq-accent), 1px 0 var(--fq-cyan);
    }

    97% {
        text-shadow: none;
    }
}

.faqs-page .faq-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.6vw, 17px);
    color: rgba(255, 255, 255, .62);
    line-height: 1.65;
    max-width: 620px;
    margin: 0;
}

/* ══ FAQ BODY ══ */
.faqs-page .faq-body__inner {
    max-width: 1080px;
    margin: 0 auto;
}

.faqs-page .faq-group {
    margin-top: clamp(40px, 5vw, 64px);
}

.faqs-page .faq-group__label {
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 3.4vw, 44px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -.4px;
    text-transform: uppercase;
    margin: 0 0 18px;
    padding-left: 18px;
}

/* Cyber accent bar before each category */
.faqs-page .faq-group__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--fq-accent), rgba(var(--fq-rgb), .15));
    box-shadow: 0 0 14px rgba(var(--fq-rgb), .5);
}

.faqs-page .faq-group__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Accordion item (CSS-only, checkbox hack) ── */
.faqs-page .faq-item {
    position: relative;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--fq-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .008));
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faqs-page .faq-item:hover {
    border-color: rgba(var(--fq-rgb), .26);
}

/* Visually-hidden but focusable checkbox */
.faqs-page .faq-item__toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    margin: 0;
}

/* Question row (label toggles the checkbox) */
.faqs-page .faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 26px);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, .9);
    transition: color .2s ease, background .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.faqs-page .faq-item__q:hover {
    color: #fff;
}

/* Expand icon (+ → −) */
.faqs-page .faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(var(--fq-rgb), .3);
    border-radius: 9px;
    background: rgba(var(--fq-rgb), .08);
    transition: transform .3s ease, background .25s ease, border-color .25s ease;
}

.faqs-page .faq-item__icon::before,
.faqs-page .faq-item__icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--fq-accent);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

.faqs-page .faq-item__icon::before {
    width: 13px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faqs-page .faq-item__icon::after {
    width: 2px;
    height: 13px;
    transform: translate(-50%, -50%);
}

/* Open state — highlight + icon morph to minus */
.faqs-page .faq-item__toggle:checked~.faq-item__q {
    color: #fff;
    background: rgba(var(--fq-rgb), .06);
}

.faqs-page .faq-item__toggle:checked~.faq-item__q .faq-item__icon {
    transform: rotate(180deg);
    background: var(--fq-accent);
    border-color: var(--fq-accent);
}

.faqs-page .faq-item__toggle:checked~.faq-item__q .faq-item__icon::before,
.faqs-page .faq-item__toggle:checked~.faq-item__q .faq-item__icon::after {
    background: #000;
}

.faqs-page .faq-item__toggle:checked~.faq-item__q .faq-item__icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

/* Active card highlight (progressive — :has) */
.faqs-page .faq-item:has(.faq-item__toggle:checked) {
    border-color: rgba(var(--fq-rgb), .4);
    box-shadow: 0 0 0 1px rgba(var(--fq-rgb), .12), 0 14px 40px rgba(0, 0, 0, .35), 0 0 26px rgba(var(--fq-rgb), .08);
}

/* Keyboard focus */
.faqs-page .faq-item__toggle:focus-visible~.faq-item__q {
    outline: 2px solid var(--fq-accent);
    outline-offset: -2px;
    border-radius: var(--fq-radius);
}

/* Smooth answer reveal (grid-rows 0fr → 1fr) */
.faqs-page .faq-item__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.faqs-page .faq-item__toggle:checked~.faq-item__a {
    grid-template-rows: 1fr;
}

.faqs-page .faq-item__a-inner {
    overflow: hidden;
    min-height: 0;
}

.faqs-page .faq-item__a-inner p {
    margin: 0;
    padding: 2px clamp(18px, 2.2vw, 26px) clamp(18px, 2vw, 24px);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
}

.faqs-page .faq-item__a-inner a {
    color: var(--fq-accent);
    text-decoration: none;
    transition: opacity .2s ease;
}

.faqs-page .faq-item__a-inner a:hover {
    opacity: .7;
    text-decoration: underline;
}

.faqs-page .faq-item__a-inner strong {
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
}

/* ══ FINAL CTA ══ */
.faqs-page .faq-cta {
    position: relative;
    max-width: 760px;
    margin: clamp(48px, 6vw, 80px) auto 0;
    padding: clamp(32px, 4vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    border: 1px solid rgba(var(--fq-rgb), .22);
    border-radius: var(--fq-radius-lg);
    background:
        radial-gradient(ellipse at 100% 0%, rgba(var(--fq-rgb), .14) 0%, transparent 55%),
        linear-gradient(180deg, rgba(20, 42, 12, .7), rgba(7, 14, 3, .95));
    box-shadow: var(--fq-card-shadow), 0 24px 64px rgba(0, 0, 0, .4);
    overflow: hidden;
}

.faqs-page .faq-cta__glow {
    position: absolute;
    bottom: -90px;
    left: 30%;
    width: 320px;
    height: 240px;
    background: radial-gradient(ellipse, rgba(var(--fq-rgb), .12) 0%, transparent 70%);
    pointer-events: none;
}

.faqs-page .faq-cta__text {
    position: relative;
    z-index: 1;
    flex: 1 1 320px;
}

.faqs-page .faq-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -.4px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.faqs-page .faq-cta__sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
    margin: 0;
    max-width: 420px;
}

.faqs-page .faq-cta__btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 32px;
    background: var(--fq-accent);
    color: #000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    box-shadow:
        inset 0px 0.7px 1.9px -0.3px rgba(255, 255, 255, 0.24),
        inset 0px 2.7px 7px -0.7px rgba(255, 255, 255, 0.34),
        inset 0px 12px 31px -1px rgba(255, 255, 255, 0.7);
    transition: transform .2s ease, filter .2s ease;
}

.faqs-page .faq-cta__btn:hover {
    transform: scale(1.03);
    filter: brightness(1.04) drop-shadow(0 0 24px rgba(var(--fq-rgb), .45));
    color: #000;
}

.faqs-page .faq-cta__btn:active {
    transform: scale(.98);
}

.faqs-page .faq-cta__btn:focus-visible {
    outline: 2px solid var(--fq-accent);
    outline-offset: 4px;
}

/* ══ Reduced motion ══ */
@media (prefers-reduced-motion: reduce) {
    .faqs-page .faq-hero__title {
        animation: none;
    }

    .faqs-page .faq-hero__scanline {
        animation: none;
        opacity: 0;
    }

    .faqs-page .faq-item,
    .faqs-page .faq-item__q,
    .faqs-page .faq-item__icon,
    .faqs-page .faq-item__icon::before,
    .faqs-page .faq-item__icon::after,
    .faqs-page .faq-item__a,
    .faqs-page .faq-cta__btn {
        transition: none !important;
    }
}

/* ══ Responsive ══ */
@media (max-width: 600px) {
    .faqs-page .faq-hero {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .faqs-page .faq-cta {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 24px;
    }

    .faqs-page .faq-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   MY ACCOUNT — front-page restyle (body.woocommerce-account)
   Global dark rule excludes account, so we set the bg here.
   Accent #cde738, dark-green bg, rounded glossy cards, pills.
   ============================================================ */
body.woocommerce-account {
  --wl-accent: #cde738;
}

body.woocommerce-account {
  background-image:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(25, 62, 4, 0.5) 0%, transparent 60%),
    linear-gradient(#0c1202, #0c1202) !important;
  background-attachment: fixed, scroll;
  background-repeat: no-repeat;
  color: #fff !important;
}

body.woocommerce-account .woocommerce { padding-top: clamp(24px, 4vw, 48px); padding-bottom: clamp(40px, 6vw, 80px); }

/* ── Login / Register columns → rounded glossy cards ── */
body.woocommerce-account .wd-col.col-login,
body.woocommerce-account .wd-col.col-register,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-MyAccount-navigation {
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(40, 86, 8, .22) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)) !important;
  border: 1px solid rgba(255, 255, 255, .07) !important;
  border-radius: 28px !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .06) !important;
  padding: clamp(24px, 3vw, 38px) !important;
}

/* Titles → Bebas */
body.woocommerce-account .wd-login-title,
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  letter-spacing: .01em !important;
  color: #fff !important;
  text-transform: uppercase;
}

/* ── Inputs / selects / textareas → rounded, accent focus ── */
body.woocommerce-account .woocommerce-Input,
body.woocommerce-account .input-text,
body.woocommerce-account input[type="text"],
body.woocommerce-account input[type="email"],
body.woocommerce-account input[type="password"],
body.woocommerce-account input[type="tel"],
body.woocommerce-account select,
body.woocommerce-account textarea {
  width: 100%;
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
  height: 48px;
  padding: 0 16px !important;
  outline: none;
  box-shadow: none !important;
  transition: border-color .18s, background .18s, box-shadow .18s !important;
}

body.woocommerce-account textarea { height: auto; padding: 14px 16px !important; }

body.woocommerce-account input:focus,
body.woocommerce-account select:focus,
body.woocommerce-account textarea:focus {
  border-color: rgba(205, 231, 56, .55) !important;
  background: rgba(205, 231, 56, .05) !important;
  box-shadow: 0 0 0 3px rgba(205, 231, 56, .1) !important;
}

body.woocommerce-account .woocommerce-form__label,
body.woocommerce-account label {
  color: rgba(255, 255, 255, .55) !important;
  font-size: 13px;
  font-family: 'Inter', sans-serif !important;
}

body.woocommerce-account input[type="checkbox"],
body.woocommerce-account input[type="radio"] { accent-color: #cde738; width: 16px; height: 16px; }

/* ── Buttons → pill accent ── */
body.woocommerce-account .button,
body.woocommerce-account .woocommerce-button,
body.woocommerce-account button[type="submit"],
body.woocommerce-account .woocommerce-Button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 32px !important;
  background: linear-gradient(180deg, #d9f04b 0%, #cde738 100%) !important;
  color: #0c1202 !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 19px !important;
  letter-spacing: .03em;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, .5) !important;
  transition: transform .15s ease, box-shadow .2s ease !important;
}

body.woocommerce-account .button:hover,
body.woocommerce-account button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, .5), 0 8px 22px rgba(197, 255, 0, .25) !important;
  color: #0c1202 !important;
}

/* Links → accent */
body.woocommerce-account a { color: #cde738; }
body.woocommerce-account .woocommerce-LostPassword a,
body.woocommerce-account .lost_password a { color: rgba(205, 231, 56, .75); }

/* ── Logged-in: account navigation → pill menu ── */
body.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }

body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .6);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s, color .2s;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
  background: #cde738;
  color: #0c1202;
  box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, .5);
}

/* ── Orders / tables → dark rounded ── */
body.woocommerce-account .woocommerce-orders-table,
body.woocommerce-account table.shop_table {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-radius: 18px !important;
  border-collapse: separate !important;
  overflow: hidden;
}

body.woocommerce-account table.shop_table th,
body.woocommerce-account table.shop_table td {
  background: transparent !important;
  border-color: rgba(255, 255, 255, .06) !important;
  color: rgba(255, 255, 255, .75) !important;
}

/* ── Address cards ── */
body.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
body.woocommerce-account .addresses .address {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)) !important;
  border: 1px solid rgba(255, 255, 255, .06) !important;
  border-radius: 18px !important;
  padding: 22px !important;
}

/* Two-column registration grid spacing */
body.woocommerce-account .wd-grid-f-col { gap: clamp(16px, 2vw, 28px); }


/* ============================================================
   CART SNACKBAR — replaces the old customCartPopup
   ============================================================ */
.sf-snackbar {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 160%);
    z-index: 100001;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100vw - 32px);
    padding: 12px 12px 12px 18px;
    background: linear-gradient(180deg, #141f05 0%, #0a1201 100%);
    border: 1px solid rgba(205, 231, 56, 0.22);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transition: transform .32s cubic-bezier(.34, 1.4, .64, 1), opacity .25s ease;
}

.sf-snackbar.is-open { transform: translate(-50%, 0); opacity: 1; }

.sf-snackbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #cde738;
    color: #0c1202;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.sf-snackbar--error .sf-snackbar__icon { background: #ff6b6b; color: #fff; }

.sf-snackbar__text { font-size: 14px; font-weight: 600; white-space: nowrap; }

.sf-snackbar__btn {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 20px;
    background: #cde738;
    color: #0c1202;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: .02em;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: inset 0 6px 14px -2px rgba(255, 255, 255, 0.5);
    transition: transform .15s ease;
}

.sf-snackbar__btn:hover { transform: translateY(-1px); color: #0c1202; }

.sf-snackbar__close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.sf-snackbar__close:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }

@media (max-width: 480px) {
    .sf-snackbar { border-radius: 18px; flex-wrap: wrap; padding: 12px 14px; }
    .sf-snackbar__text { white-space: normal; }
}

/* ════════════════════════════════════════════════════════════
   UNIFIED CONTENT WIDTH — every page EXCEPT the home/front page
   shares the same max content width (1400px) with side gutters on
   smaller screens. Home is marked by .mush-page and is deliberately
   excluded / left untouched. Single source of truth: --cs2-page-max.
   Full-bleed backgrounds (full-width Elementor sections, page heroes)
   are NOT affected — only the inner content wrappers are capped.
   ════════════════════════════════════════════════════════════ */
:root { --cs2-page-max: 1400px; }

/* Styled custom-template / shortcode page wrappers — cap, centre, gutters. */
.cs2-shop,
.cs2-disc,
.sf-contact-page .ct-wrap,
.faqs-page .faq-hero__inner,
.faqs-page .faq-body {
    max-width: var(--cs2-page-max) !important;
    margin-inline: auto !important;
    padding-inline: clamp(16px, 4vw, 40px) !important;
}

/* Generic page container (cart, account, checkout, blog, misc) — not on home. */
body:not(.mush-page) .container {
    max-width: var(--cs2-page-max);
    padding-inline: clamp(16px, 4vw, 40px);
}

/* About + any other secondary Elementor page — widen the BOXED section's
   inner container to the same width (full-width sections stay full-bleed). */
body:not(.mush-page) .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--cs2-page-max);
}
