/*
 * MushSkins Home Page Styles
 * All rules scoped to .mush-page to avoid affecting other pages.
 */

/* ── CSS Custom Properties ── */
.mush-page {
    --mush-accent: #cde738;
    --mush-bg: #0c1202;
    --mush-white: #ffffff;
    --mush-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);
    --mush-btn-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 0.06),
        inset 0px 1px 7.14px 0px rgba(255, 255, 255, 0.14),
        inset 0px 4px 8px 0px rgba(255, 255, 255, 0.2);
    --mush-title-gradient: radial-gradient(ellipse at 50% 50%, #fff152 0%, #cfe636 50%, #9edb1a 100%);

    background:
        radial-gradient(ellipse 130% 70% at 50% 38%, rgba(25, 62, 4, 0.82) 0%, transparent 68%),
        #0c1202;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ── Elementor container resets for mush-page ── */
.mush-page .elementor-section,
.mush-page .elementor-container,
.mush-page .elementor-column,
.mush-page .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

.mush-page .elementor-widget-container {
    padding: 0 !important;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
@keyframes mush-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mush-page .mush-hero {
    position: relative;
    padding: 100px 24px 24px;
    /* 100px top gap below header */
}

/* Card — dark rounded rectangle, no gradient (gradient lives on .mush-page) */
.mush-page .mush-hero-inner {
    position: relative;
    width: 100%;
    min-height: 540px;
    border-radius: 64px;
    overflow: hidden;
    background-color: #0a1201;
    box-shadow: var(--mush-card-shadow);
    background-image: url(https://crystalskins.store/wp-content/uploads/2026/06/Gradient.webp);
}

/* Looping background video — fills the hero card, sits behind the glow
   (::before z-index:1) and the content (z-index:2). Replaces the static
   background image visually. */
.mush-page .mush-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Weapon-area glow — only at bottom of card for lighting effect */
.mush-page .mush-hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 115%, rgba(12, 68, 8, 0.92) 0%, transparent 52%);
    pointer-events: none;
    z-index: 1;
}

/* Two-column text grid */
.mush-page .mush-hero-top {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 48px;
    padding: 56px 80px 0;
    position: relative;
    z-index: 2;
}

.mush-page .mush-hero-left {
    display: flex;
    align-items: flex-start;
}

.mush-page .mush-hero-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 12px;
}

/* Title */
.mush-page .mush-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    line-height: 0.88;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    background: var(--mush-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mush-fadeInUp 0.7s ease-out 0.3s both;
}

.mush-page .mush-hero-title span {
    display: block;
}

/* Subtitle */
.mush-page .mush-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -0.2px;
    animation: mush-fadeInUp 0.7s ease-out 0.5s both;
}

/* CTA Button — pill shape */
.mush-page .mush-btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 68px;
    padding: 0 36px;
    background: #cde736;
    border-radius: 999px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #000000;
    text-decoration: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-start;
    box-shadow:
        inset 0px 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.24),
        inset 0px 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.34),
        inset 0px 12px 31.2px -1px rgba(255, 255, 255, 0.8);
    animation: mush-fadeInUp 0.7s ease-out 0.7s both;
    transition: transform 0.2s;
}

.mush-page .mush-btn-shop:hover {
    transform: scale(1.02);
    color: #000000;
    text-decoration: none;
}

/* Bottom weapons image — absolutely pinned to card bottom */
.mush-page .mush-hero-weapons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 270px;
    pointer-events: none;
}

.mush-page .mush-hero-weapons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

/* ═══════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════ */
.mush-page .mush-section-row {
    display: flex;
    gap: 12px;
    padding: 24px;
    overflow: hidden;
}

.mush-page .mush-cat-card {
    height: 604px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse at 50% 100%,
            rgba(9, 52, 47, 1) 0%,
            rgba(5, 26, 24, 1) 50%,
            rgba(2, 13, 12, 1) 75%,
            rgba(0, 0, 0, 1) 100%);
    box-shadow: var(--mush-card-shadow);
    cursor: pointer;
    transition: transform 0.25s;
    text-decoration: none;
    display: block;
}

.mush-page .mush-cat-card:hover {
    transform: scale(1.01);
    box-shadow: var(--mush-card-shadow), 0 0 40px rgba(197, 255, 0, 0.13);
    text-decoration: none;
}

.mush-page .mush-cat-card--large {
    width: 628px;
    flex-shrink: 0;
}

.mush-page .mush-cat-card--flex {
    flex: 1 0 0;
}

.mush-page .mush-cat-title {
    position: absolute;
    left: 50%;
    top: 76px;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
    z-index: 2;
    text-align: center;
    display: block;
}

.mush-page .mush-cat-img-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 205px;
    width: 110%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mush-page .mush-cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.mush-page .mush-cat-card:hover .mush-cat-img-wrap img {
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════
   POPULAR SLIDER
═══════════════════════════════════════════ */
.mush-page .mush-section-slider {
    padding: 24px 24px 0;
}

.mush-page .mush-slider-outer {
    width: 100%;
    height: 600px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse at 50% 100%,
            rgba(9, 52, 47, 1) 0%,
            rgba(5, 26, 24, 1) 50%,
            rgba(2, 13, 12, 1) 75%,
            rgba(0, 0, 0, 1) 100%);
    box-shadow: var(--mush-card-shadow);
    display: flex;
    flex-direction: column;
    padding: 48px;
    gap: 32px;
}

.mush-page .mush-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.mush-page .mush-slider-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
    line-height: 1;
    letter-spacing: -1px;
    color: #ffffff;
}

.mush-page .mush-slider-controls {
    display: flex;
    gap: 12px;
}

.mush-page .mush-slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.mush-page .mush-slider-arrow:hover {
    background: rgba(205, 231, 54, 0.15);
    border-color: #cde738;
}

.mush-page .mush-slider-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.mush-page .mush-slider-viewport {
    flex: 1;
    /* overflow: hidden; */
    position: relative;
    cursor: grab;
}

.mush-page .mush-slider-viewport:active {
    cursor: grabbing;
}

.mush-page .mush-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    user-select: none;
    padding: 12px 0;
    align-items: center;
}

/* Popular items slider now uses the real .product-card (.dc-card) component */
.mush-page .mush-section-slider .product-card {
    width: 290px;
    flex-shrink: 0;
}

.mush-page .mush-section-slider .dc-img-area {
    height: 220px;
}

/* Slider Card */
.mush-page .mush-scard {
    width: 290px;
    flex-shrink: 0;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(15, 32, 20, 1) 0%, rgba(3, 4, 1, 1) 100%);
    box-shadow:
        inset 0px 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.12),
        inset 0px 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.18),
        inset 0px 12px 31.2px -1px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mush-page .mush-scard:hover {
    transform: translateY(-6px);
    box-shadow:
        inset 0px 0.723px 1.879px -0.333px rgba(255, 255, 255, 0.18),
        inset 0px 2.746px 7.14px -0.667px rgba(255, 255, 255, 0.28),
        inset 0px 12px 31.2px -1px rgba(255, 255, 255, 0.14),
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(197, 255, 0, 0.08);
}

/* Buttons pinned to top corners */
.mush-page .mush-scard-btns {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.mush-page .mush-scard-btns .mush-product-btn {
    pointer-events: all;
}

/* Image area — fills remaining height */
.mush-page .mush-scard-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 20px 12px;
    overflow: hidden;
}

.mush-page .mush-scard-img img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.mush-page .mush-scard:hover .mush-scard-img img {
    transform: scale(1.08);
}

/* Info section — fixed height at bottom */
.mush-page .mush-scard-body {
    padding: 10px 14px 14px;
    flex-shrink: 0;
}

.mush-page .mush-scard-info-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
}

.mush-page .mush-scard-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.mush-page .mush-scard-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mush-page .mush-scard-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1;
}

.mush-page .mush-scard-skin {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mush-page .mush-scard-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Shared product UI elements */
.mush-page .mush-product-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--mush-btn-shadow);
    transition: opacity 0.2s, transform 0.14s;
    color: #ffffff;
}

.mush-page .mush-product-btn:hover {
    opacity: 0.75;
}

.mush-page .mush-product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    height: 20px;
    border-radius: 99px;
    background: radial-gradient(ellipse at 50% 100%,
            rgba(209, 67, 70, 1) 0%,
            rgba(170, 53, 55, 1) 25%,
            rgba(131, 38, 40, 1) 50%,
            rgba(91, 24, 24, 1) 75%,
            rgba(52, 9, 9, 1) 100%);
    font-weight: 800;
    font-size: 10px;
    color: #ffffff;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.mush-page .mush-product-old-price {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: -0.24px;
    text-decoration: line-through;
    opacity: 0.5;
    color: #f6f4f9;
}

.mush-page .mush-product-new-price {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.28px;
    color: #f6f4f9;
}

/* ═══════════════════════════════════════════
   HOT DEALS — v2 (left info + right carousel + trust strip, no icons)
═══════════════════════════════════════════ */
.mush-page .mush-section-deals {
    padding: 24px 24px 0;
}

.mush-page .mush-deals-card {
    width: 100%;
    border-radius: 48px;
    overflow: hidden;
    position: relative;
    padding: 56px 56px 40px;
    display: grid;
    grid-template-columns: minmax(0, 505px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
        "left right"
        "trust trust";
    column-gap: 56px;
    row-gap: 44px;
    align-items: center;
    background:
        radial-gradient(ellipse at 8% 30%, rgba(30, 75, 40, 0.55) 0%, rgba(30, 75, 40, 0) 55%),
        radial-gradient(ellipse at 50% 120%, rgba(38, 14, 3, 0.9) 0%, rgba(19, 7, 2, 1) 45%, rgba(8, 4, 1, 1) 78%, rgba(0, 0, 0, 1) 100%);
    box-shadow: var(--mush-card-shadow);
}

/* ── LEFT: info column ── */
.mush-page .mush-deals-left {
    grid-area: left;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 2;
    min-width: 0;
}

.mush-page .mush-deals-tag {
    align-self: flex-start;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mush-accent, #cde738);
    background: rgba(197, 231, 56, 0.1);
    border: 1px solid rgba(197, 231, 56, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
}

.mush-page .mush-deals-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 6.5vw, 96px);
    line-height: 0.92;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 18px;
}

.mush-page .mush-deals-title-hi {
    background: radial-gradient(ellipse at 50% 42%, #fff152 0%, #cfe636 50%, #9edb1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mush-page .mush-deals-title-rest {
    color: #ffffff;
}

.mush-page .mush-deals-sub {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    max-width: 460px;
    margin: 0;
}

/* feature rows — text only, lime accent bar instead of an icon */
.mush-page .mush-deals-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mush-page .mush-deals-feature {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.mush-page .mush-deals-feature-bar {
    flex: 0 0 4px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff152 0%, #9edb1a 100%);
    box-shadow: 0 0 12px rgba(197, 231, 56, 0.5);
}

.mush-page .mush-deals-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mush-page .mush-deals-feature-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #ffffff;
}

.mush-page .mush-deals-feature-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* buttons */
.mush-page .mush-deals-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.mush-page .mush-deals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.mush-page .mush-deals-btn--primary {
    color: #0c1202;
    background: var(--mush-accent, #cde738);
    border: 1px solid var(--mush-accent, #cde738);
    box-shadow: 0 10px 30px rgba(197, 231, 56, 0.28);
}

.mush-page .mush-deals-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(197, 231, 56, 0.42);
}

.mush-page .mush-deals-btn--ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mush-page .mush-deals-btn--ghost:hover {
    border-color: var(--mush-accent, #cde738);
    color: var(--mush-accent, #cde738);
}

.mush-page .mush-deals-trustline {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    margin: 2px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mush-page .mush-deals-trustline strong { color: #ffffff; font-weight: 800; }
.mush-page .mush-deals-stars { color: var(--mush-accent, #cde738); letter-spacing: 1px; }
.mush-page .mush-deals-rating { color: #ffffff; font-weight: 800; }

/* ── RIGHT: carousel ── */
.mush-page .mush-deals-right {
    grid-area: right;
    min-width: 0;
    z-index: 2;
}

.mush-page .mush-deals-carousel {
    position: relative;
}

.mush-page .mush-deals-viewport {
    overflow: hidden;
    padding: 30px 6px 26px;
}

.mush-page .mush-deals-track {
    display: flex;
    gap: 20px;
    align-items: center;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* deal card */
.mush-page .mush-deal-card {
    flex: 0 0 244px;
    width: 244px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(120% 70% at 50% 100%, rgba(24, 64, 32, 0.45) 0%, rgba(8, 16, 6, 0) 60%),
        linear-gradient(180deg, #0d1408 0%, #070b04 100%);
    transform: scale(0.92);
    opacity: 0.72;
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.4s, border-color 0.25s, box-shadow 0.35s;
}

.mush-page .mush-deal-card:hover {
    border-color: rgba(197, 231, 56, 0.4);
}

/* active/center card — enlarged with lime glow */
.mush-page .mush-deal-card.is-active {
    transform: scale(1.06);
    opacity: 1;
    border-color: rgba(197, 231, 56, 0.65);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 46px rgba(197, 231, 56, 0.22);
}

.mush-page .mush-deal-media {
    position: relative;
    height: 176px;
    background: radial-gradient(90% 80% at 50% 100%, rgba(30, 80, 40, 0.4), transparent 70%);
}

.mush-page .mush-deal-imgwrap {
    position: absolute;
    inset: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mush-page .mush-deal-imgwrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mush-page .mush-deal-card:hover .mush-deal-imgwrap img { transform: scale(1.06); }

/* badge — TRENDING / BEST PRICE (text only) */
.mush-page .mush-deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 6px;
    color: #0c1202;
}

.mush-page .mush-deal-badge.is-trending { background: #f5a623; }
.mush-page .mush-deal-badge.is-best { background: var(--mush-accent, #cde738); }

.mush-page .mush-deal-body {
    padding: 4px 16px 18px;
    display: flex;
    flex-direction: column;
}

.mush-page .mush-deal-name {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mush-page .mush-deal-skin {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mush-page .mush-deal-wear {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 2px;
}

/* price block — get_price_html() markup (del/ins + red -X%) */
.mush-page .mush-deal-price {
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.mush-page .mush-deal-price .cs-disc-price { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.mush-page .mush-deal-price .cs-disc-old { font-size: 13px; color: rgba(255, 255, 255, 0.4); text-decoration: line-through; }
.mush-page .mush-deal-price .cs-disc-new { font-weight: 800; font-size: 20px; color: var(--mush-accent, #cde738); }
.mush-page .mush-deal-price .cs-disc-new .woocommerce-Price-amount { color: var(--mush-accent, #cde738); }
.mush-page .mush-deal-price .cs-disc-badge {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: #e5484d;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}
/* fallback if a product ever isn't discounted */
.mush-page .mush-deal-price .woocommerce-Price-amount { font-weight: 800; font-size: 20px; color: var(--mush-accent, #cde738); }

.mush-page .mush-deal-stock {
    margin-top: 10px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: #f5a623;
}

/* minimal TEXT-only add-to-cart (no icon) */
.mush-page .mush-deal-cart {
    margin-top: 14px;
    width: 100%;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 11px 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.mush-page .mush-deal-card.is-active .mush-deal-cart {
    color: #0c1202;
    background: var(--mush-accent, #cde738);
    border-color: var(--mush-accent, #cde738);
}

.mush-page .mush-deal-cart:hover {
    color: #0c1202;
    background: var(--mush-accent, #cde738);
    border-color: var(--mush-accent, #cde738);
}

/* nav arrows (text chevrons, no icon assets) */
.mush-page .mush-deals-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    border: 1px solid rgba(197, 231, 56, 0.35);
    background: rgba(8, 14, 4, 0.78);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s, opacity 0.2s;
}

.mush-page .mush-deals-nav span { display: block; margin-top: -3px; }
.mush-page .mush-deals-nav--prev { left: -14px; }
.mush-page .mush-deals-nav--next { right: -14px; }
.mush-page .mush-deals-nav:hover:not(:disabled) { color: var(--mush-accent, #cde738); border-color: var(--mush-accent, #cde738); }
.mush-page .mush-deals-nav:disabled { opacity: 0; pointer-events: none; }

/* dots */
.mush-page .mush-deals-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.mush-page .mush-deals-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: width 0.25s, background 0.25s;
}

.mush-page .mush-deals-dot.is-active { width: 26px; background: var(--mush-accent, #cde738); }

.mush-page .mush-deals-empty {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body, 'Inter', sans-serif);
    padding: 40px 16px;
}

/* ── BOTTOM: trust strip (text only) ── */
.mush-page .mush-deals-trust {
    grid-area: trust;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
}

.mush-page .mush-deals-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mush-page .mush-deals-trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--mush-accent, #cde738);
    box-shadow: 0 0 10px rgba(197, 231, 56, 0.6);
    flex: 0 0 10px;
}

.mush-page .mush-deals-trust-text { display: flex; flex-direction: column; gap: 1px; }
.mush-page .mush-deals-trust-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
}
.mush-page .mush-deals-trust-desc {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
}


/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.mush-page .mush-section-features {
    padding: 24px 24px 0;
    display: flex;
    gap: 12px;
}

.mush-page .mush-feature-card {
    flex: 1 0 0;
    height: 840px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--mush-card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    padding: 60px 80px;
    background: radial-gradient(100% 100% at 50% 100%, #010600 0%, #000 100%);
}

.mush-page .mush-fstat-main {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.mush-page .mush-fstat-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 200px;
    line-height: 0.9;
    letter-spacing: -4px;
    background: var(--mush-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mush-page .mush-fstat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: -0.3px;
}

.mush-page .mush-feature-img {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
}

.mush-page .mush-feature-img--timer {
    left: 83px;
    top: 297px;
    width: 777px;
    height: 623px;
}

.mush-page .mush-feature-img--skins {
    top: 260px;
    height: 900px;
    width: 100%;
}

.mush-page .mush-feature-img img {
    position: absolute;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mush-page .mush-feature-img--skins img {
    object-fit: cover;
}

/* Advantage videos — fill the lower portion of each feature card, sit
   behind the stat number/label. */
.mush-page .mush-feature-video {
    position: absolute;
    left: 50%;
    bottom: -40%;
    transform: translateX(-50%);
    width: 100%;
    /* height: 70%; */
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
    z-index: 0;
}

.mush-page .mush-feature-card .mush-fstat-main {
    z-index: 2;
}

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.mush-page .mush-section-blog {
    padding: 24px 24px 0;
}

.mush-page .mush-blog-outer {
    width: 100%;
    border-radius: 64px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 100%,
            rgba(20, 40, 25, 1) 0%,
            rgba(5, 12, 7, 1) 60%,
            rgba(0, 0, 0, 1) 100%);
    box-shadow: var(--mush-card-shadow);
    padding: 64px 64px 72px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.mush-page .mush-blog-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mush-page .mush-blog-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.mush-page .mush-blog-see-all {
    font-weight: 600;
    font-size: 16px;
    color: #cde738;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.mush-page .mush-blog-see-all:hover {
    opacity: 0.7;
}

.mush-page .mush-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mush-page .mush-blog-article {
    text-decoration: none;
    color: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mush-page .mush-blog-article:hover {
    transform: translateY(-6px);
    border-color: rgba(205, 231, 54, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(197, 255, 0, 0.06);
    text-decoration: none;
    color: #ffffff;
}

.mush-page .mush-blog-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.mush-page .mush-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mush-page .mush-blog-article:hover .mush-blog-img-wrap img {
    transform: scale(1.06);
}

.mush-page .mush-blog-article-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mush-page .mush-blog-article-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mush-page .mush-blog-article-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.mush-page .mush-section-cta {
    padding: 24px;
}

.mush-page .mush-cta-card {
    width: 100%;
    height: 840px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(0deg,
            rgb(202, 202, 22) 0%,
            rgb(206, 209, 21) 22.5%,
            rgb(205, 222, 18) 41.25%,
            rgb(204, 237, 12) 58.75%,
            rgb(198, 251, 4) 77.5%,
            rgb(196, 255, 0) 100%);
    box-shadow:
        inset 0px 0.602px 1.084px -1px rgba(255, 255, 255, 0.15),
        inset 0px 2.289px 4.119px -2px rgba(255, 255, 255, 0.14),
        inset 0px 10px 18px -3px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 40px 80px;
}

/* Crystal artwork — left side */
.mush-page .mush-cta-img {
    width: 420px;
    max-width: 40%;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.28));
}

.mush-page .mush-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    max-width: 640px;
}

.mush-page .mush-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 1;
    letter-spacing: -1.5px;
    color: #141415;
    text-transform: uppercase;
    text-align: left;
}

.mush-page .mush-cta-sub {
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.5px;
    color: #515300;
    text-align: left;
    max-width: 560px;
}

.mush-page .mush-cta-form {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.mush-page .mush-cta-input {
    width: 420px;
    height: 72px;
    padding: 0 28px;
    border-radius: 999px;
    border: 2px solid rgba(20, 21, 0, 0.4);
    background: rgba(0, 0, 0, 0.25);
    color: #141415;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.mush-page .mush-cta-input::placeholder {
    color: rgba(20, 21, 0, 0.45);
}

.mush-page .mush-cta-input:focus {
    border-color: rgba(20, 21, 0, 0.7);
    background: rgba(0, 0, 0, 0.35);
}

.mush-page .mush-cta-subscribe-btn {
    height: 72px;
    padding: 0 40px;
    border-radius: 999px;
    border: none;
    background: #141415;
    color: #cde738;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mush-page .mush-cta-subscribe-btn:hover {
    transform: scale(1.03);
}

.mush-page .mush-cta-msg {
    font-size: 16px;
    font-weight: 600;
    color: #141415;
    min-height: 24px;
    text-align: center;
}

/* ═══════════════════════════════════════════
   CONTACT WIDGET
═══════════════════════════════════════════ */
.mush-page .mush-section-contact {
    padding: 24px;
}

.mush-page .mush-contact-card {
    width: 100%;
    min-height: 560px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse at 50% 100%, rgba(9, 52, 47, 1) 0%, rgba(5, 26, 24, 1) 50%, rgba(2, 13, 12, 1) 75%, rgba(0, 0, 0, 1) 100%);
    box-shadow: var(--mush-card-shadow);
    display: flex;
    align-items: stretch;
    gap: 0;
}

.mush-page .mush-contact-left {
    width: 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.mush-page .mush-contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -1px;
    background: radial-gradient(ellipse at 50% 50%, #fff152 0%, #cfe636 50%, #9edb1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mush-page .mush-contact-sub {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 400px;
}

.mush-page .mush-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.mush-page .mush-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color .2s ease;
}

.mush-page .mush-contact-link:hover {
    color: #cde738;
}

.mush-page .mush-contact-right {
    flex: 1;
    padding: 80px 80px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mush-page .mush-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mush-page .mush-contact-input,
.mush-page .mush-contact-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 231, 56, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease;
    resize: vertical;
}

.mush-page .mush-contact-input::placeholder,
.mush-page .mush-contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.mush-page .mush-contact-input:focus,
.mush-page .mush-contact-textarea:focus {
    border-color: #cde738;
}

.mush-page .mush-contact-btn {
    width: 100%;
    height: 60px;
    border-radius: 999px;
    background: #cde738;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #000;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
    letter-spacing: 0.5px;
}

.mush-page .mush-contact-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.mush-page .mush-contact-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mush-page .mush-contact-msg {
    font-size: 15px;
    font-weight: 600;
    min-height: 20px;
    text-align: center;
}

/* Contact on non-mush pages (generic dark style) */
.mush-section-contact {
    padding: 40px var(--container-px, 40px);
}

.mush-contact-card {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.mush-contact-left {
    flex: 1 0 320px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mush-contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    line-height: 1;
    color: #fff;
}

.mush-contact-sub {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.mush-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mush-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color .2s ease;
}

.mush-contact-link:hover {
    color: #cde738;
}

.mush-contact-right {
    flex: 1 0 360px;
    padding: 60px 40px;
}

.mush-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mush-contact-input,
.mush-contact-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color .2s ease;
    resize: vertical;
}

.mush-contact-input::placeholder,
.mush-contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.mush-contact-input:focus,
.mush-contact-textarea:focus {
    border-color: #99ee2d;
}

.mush-contact-btn {
    width: 100%;
    height: 52px;
    border-radius: 8px;
    background: #99ee2d;
    border: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: #111;
    cursor: pointer;
    transition: opacity .2s ease;
    letter-spacing: 0.5px;
}

.mush-contact-btn:hover {
    opacity: 0.88;
}

.mush-contact-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mush-contact-msg {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    min-height: 18px;
}

/* ═══════════════════════════════════════════
   WISHLIST BUTTON — FILL STATE
═══════════════════════════════════════════ */
.mush-wishlist-btn svg,
.product-card__wish svg {
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.mush-wishlist-btn.is-wishlisted svg,
.mush-wishlist-btn.active svg {
    fill: #FFFFFF;
    stroke: #FFFFFF;
}

.product-card__wish.is-wishlisted svg,
.product-card__wish.active svg {
    fill: #c0392b;
    stroke: #c0392b;
}
/* ════════════════════════════════════════════════════════════
   RESPONSIVE / MOBILE  (home page had no breakpoints — added)
   Goal: every section fits the viewport with clear UX. The Hot
   Deals section is rebuilt from absolute positioning into a
   stacked grid on small screens.
════════════════════════════════════════════════════════════ */

/* ── ≤1200px : large tablet ── */
@media (max-width: 1200px) {
    .mush-page .mush-hero-title { font-size: 92px; }
    .mush-page .mush-hero-top { padding: 48px 48px 0; gap: 32px; }
    .mush-page .mush-fstat-big { font-size: 150px; }
    .mush-page .mush-deals-card { grid-template-columns: minmax(0, 420px) minmax(0, 1fr); column-gap: 40px; padding: 48px 40px 36px; }
    .mush-page .mush-deals-title { font-size: clamp(58px, 6vw, 84px); }
}

/* ── ≤1024px : tablet — categories & blog reflow ── */
@media (max-width: 1024px) {
    .mush-page .mush-section-row { flex-wrap: wrap; }
    .mush-page .mush-cat-card--large,
    .mush-page .mush-cat-card--flex { flex: 1 1 calc(50% - 6px); width: auto; min-width: 240px; }
    .mush-page .mush-cat-card { height: 420px; }

    .mush-page .mush-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .mush-page .mush-blog-heading { font-size: 52px; }
    .mush-page .mush-blog-outer { padding: 48px 36px 56px; border-radius: 44px; }
}

/* ── ≤900px : stack the two-up rows (features / cta / contact)
      and rebuild Hot Deals into a normal stacked block ── */
@media (max-width: 900px) {
    /* Hero */
    .mush-page .mush-hero { padding: 90px 14px 14px; }
    .mush-page .mush-hero-inner { min-height: 0; border-radius: 36px; }
    .mush-page .mush-hero-top { grid-template-columns: 1fr; gap: 22px; padding: 40px 32px 24px; }
    .mush-page .mush-hero-title { font-size: clamp(52px, 11vw, 84px); }
    .mush-page .mush-hero-right { padding-top: 0; }
    .mush-page .mush-hero-weapons { position: static; height: auto; margin-top: 12px; }
    .mush-page .mush-hero-weapons img { height: 220px; }

    /* Slider */
    .mush-page .mush-slider-outer { height: 540px; padding: 32px 22px; border-radius: 44px; gap: 22px; }
    .mush-page .mush-slider-heading { font-size: 40px; }

    /* Features — stack vertically */
    .mush-page .mush-section-features { flex-direction: column; }
    .mush-page .mush-feature-card { height: 560px; border-radius: 48px; padding: 52px 36px; }
    .mush-page .mush-fstat-big { font-size: 132px; }
    .mush-page .mush-fstat-label { font-size: 22px; }
    .mush-page .mush-feature-img--timer,
    .mush-page .mush-feature-img--skins {
        left: 0 !important; top: auto !important; bottom: 0;
        width: 100% !important; height: 60% !important;
    }

    /* Hot Deals — single column: info on top, carousel below */
    .mush-page .mush-deals-card {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 44px 22px 32px;
        border-radius: 44px;
    }
    .mush-page .mush-deals-left {
        width: 100%; align-items: center; text-align: center;
    }
    .mush-page .mush-deals-title { font-size: clamp(56px, 13vw, 88px); justify-content: center; }
    .mush-page .mush-deals-sub { font-size: 16px; max-width: 440px; }
    .mush-page .mush-deals-features { width: 100%; max-width: 380px; }
    .mush-page .mush-deals-feature { text-align: left; }
    .mush-page .mush-deals-actions { justify-content: center; }
    .mush-page .mush-deals-right { width: 100%; }
    .mush-page .mush-deals-trust { justify-content: center; }

    /* CTA — stack crystal above text, full-width form */
    .mush-page .mush-cta-card {
        flex-direction: column; height: auto;
        padding: 56px 28px; gap: 32px; text-align: center;
    }
    .mush-page .mush-cta-img { width: 260px; max-width: 64%; }
    .mush-page .mush-cta-content { align-items: center; max-width: 100%; }
    .mush-page .mush-cta-title { font-size: clamp(48px, 12vw, 80px); text-align: center; }
    .mush-page .mush-cta-sub { font-size: 20px; line-height: 30px; text-align: center; max-width: 100%; }
    .mush-page .mush-cta-form { flex-direction: column; width: 100%; max-width: 420px; }
    .mush-page .mush-cta-input,
    .mush-page .mush-cta-subscribe-btn { width: 100%; }

    /* Contact — stack columns */
    .mush-page .mush-contact-card { flex-direction: column; }
    .mush-page .mush-contact-left {
        width: 100%; border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 52px 36px;
    }
    .mush-page .mush-contact-right { padding: 44px 36px; }
    .mush-page .mush-contact-title { font-size: 60px; }
}

/* ── ≤600px : phones ── */
@media (max-width: 600px) {
    .mush-page .mush-section-slider,
    .mush-page .mush-section-deals,
    .mush-page .mush-section-features,
    .mush-page .mush-section-blog,
    .mush-page .mush-section-cta,
    .mush-page .mush-section-contact,
    .mush-page .mush-section-row { padding-left: 12px; padding-right: 12px; }

    /* Categories — one per row */
    .mush-page .mush-cat-card--large,
    .mush-page .mush-cat-card--flex { flex: 1 1 100%; min-width: 0; }
    .mush-page .mush-cat-card { height: 320px; border-radius: 40px; }
    .mush-page .mush-cat-title { font-size: 30px; top: 60px; }
    .mush-page .mush-cat-img-wrap { top: 130px; height: 72%; }

    /* Slider */
    .mush-page .mush-slider-outer { height: 500px; padding: 24px 16px; border-radius: 36px; }
    .mush-page .mush-slider-heading { font-size: 34px; }
    .mush-page .mush-section-slider .product-card { width: 230px; }

    /* Features */
    .mush-page .mush-feature-card { height: 460px; padding: 44px 26px; border-radius: 40px; }
    .mush-page .mush-fstat-big { font-size: 96px; }

    /* Blog — single column */
    .mush-page .mush-blog-grid { grid-template-columns: 1fr; }
    .mush-page .mush-blog-heading { font-size: 40px; }
    .mush-page .mush-blog-outer { padding: 36px 22px 44px; border-radius: 36px; }

    /* Hot Deals — tighten carousel for phones */
    .mush-page .mush-deals-title { font-size: clamp(48px, 15vw, 76px); }
    .mush-page .mush-deal-card { flex-basis: 210px; width: 210px; }
    .mush-page .mush-deals-nav--prev { left: -6px; }
    .mush-page .mush-deals-nav--next { right: -6px; }
    .mush-page .mush-deals-nav { width: 42px; height: 42px; }
    .mush-page .mush-deals-trust { gap: 14px 24px; }

    /* Contact */
    .mush-page .mush-contact-title { font-size: 48px; }
    .mush-page .mush-contact-left,
    .mush-page .mush-contact-right { padding: 40px 22px; }
}

/* ── ≤400px : very small phones ── */
@media (max-width: 400px) {
    .mush-page .mush-hero-title { font-size: clamp(42px, 13vw, 60px); }
    .mush-page .mush-section-slider .product-card { width: 200px; }
    .mush-page .mush-fstat-big { font-size: 78px; }
}

.mush-cta-subscribe-form-wrap{
        margin: 24px !important;
}
.elementor-534 .elementor-element.elementor-element-6abf137 > .elementor-widget-container {
    background: none !important;
}
/* ═══════════════════════════════════════════
   HOME ENHANCEMENTS (2026-07): section rhythm,
   live category cards, scroll reveal.
═══════════════════════════════════════════ */

/* ── Section header (rhythm) ── */
.mush-page .mush-sec-head { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; padding:44px 40px 6px; }
.mush-page .mush-sec-title { font-family: var(--font-display, 'Bebas Neue'), sans-serif; font-weight:400; font-size:48px; line-height:.95; letter-spacing:.5px; text-transform:uppercase; color:#fff; margin:0; }
.mush-page .mush-sec-head-left { display:flex; align-items:center; gap:14px; }
.mush-page .mush-sec-count { font-family: var(--font-body, 'Inter', sans-serif); font-size:13px; font-weight:700; letter-spacing:.4px; color: var(--mush-accent, #cde738); background: rgba(197,231,56,.10); border:1px solid rgba(197,231,56,.28); padding:5px 12px; border-radius:999px; white-space:nowrap; }
.mush-page .mush-sec-viewall { font-family: var(--font-body, 'Inter', sans-serif); font-size:14px; font-weight:600; color: rgba(255,255,255,.72); text-decoration:none; padding:9px 18px; border-radius:999px; border:1px solid rgba(255,255,255,.16); transition: color .2s, border-color .2s, background .2s, transform .2s; white-space:nowrap; }
.mush-page .mush-sec-viewall:hover { color:#0c1202; background: var(--mush-accent, #cde738); border-color: var(--mush-accent, #cde738); transform: translateX(2px); text-decoration:none; }
.mush-page .mush-slider-controls { display:flex; align-items:center; gap:12px; }

/* ── Live category card: head (title + count) ── */
.mush-page .mush-cat-head { position:absolute; left:0; right:0; top:48px; z-index:4; display:flex; flex-direction:column; align-items:center; gap:9px; pointer-events:none; padding:0 20px; }
.mush-page .mush-cat-head .mush-cat-title { position:static; left:auto; top:auto; transform:none; }
.mush-page .mush-cat-count { font-family: var(--font-body, 'Inter', sans-serif); font-size:12.5px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color: var(--mush-accent, #cde738); background: rgba(197,231,56,.10); border:1px solid rgba(197,231,56,.26); padding:4px 12px; border-radius:999px; }

/* ── from-price pill + hover go arrow ── */
.mush-page .mush-cat-from { position:absolute; left:40px; bottom:40px; z-index:4; font-family: var(--font-body,'Inter',sans-serif); font-size:14px; font-weight:600; color: rgba(255,255,255,.6); background: rgba(0,0,0,.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border:1px solid rgba(255,255,255,.12); padding:8px 15px; border-radius:999px; pointer-events:none; }
.mush-page .mush-cat-from .woocommerce-Price-amount { color:#fff; font-weight:800; margin-left:4px; }
.mush-page .mush-cat-go { position:absolute; right:40px; bottom:36px; z-index:4; width:46px; height:46px; display:flex; align-items:center; justify-content:center; border-radius:999px; color:#0c1202; background: var(--mush-accent, #cde738); box-shadow: 0 6px 22px rgba(197,231,56,.3); opacity:0; transform: translateX(-6px); transition: opacity .28s ease, transform .28s ease; pointer-events:none; }
.mush-page .mush-cat-card:hover .mush-cat-go { opacity:1; transform:none; }

/* ── hover preview carousel ── */
.mush-page .mush-cat-img-wrap .mush-cat-preview { position:absolute; inset:0; opacity:0; transition: opacity .35s ease; }
.mush-page .mush-cat-img-wrap .mush-cat-preview-img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; opacity:0; transition: opacity .5s ease; }
.mush-page .mush-cat-img-wrap .mush-cat-preview-img.is-active { opacity:1; }
.mush-page .mush-cat-card:hover .mush-cat-preview { opacity:1; }
.mush-page .mush-cat-card:hover .mush-cat-hero-img { opacity:0; }
.mush-page .mush-cat-hero-img { transition: opacity .35s ease, transform .5s cubic-bezier(.25,.46,.45,.94); }

/* ── scroll reveal (enabled only when JS present) ── */
html.mush-js .mush-page [data-mush-reveal] { opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
html.mush-js .mush-page [data-mush-reveal].mush-in { opacity:1; transform:none; }

/* ── mobile ── */
@media (max-width: 767px) {
    .mush-page .mush-sec-head { padding:28px 16px 4px; }
    .mush-page .mush-sec-title { font-size:34px; }
    .mush-page .mush-cat-head { top:30px; gap:7px; }
    .mush-page .mush-cat-from { left:20px; bottom:22px; font-size:12.5px; padding:6px 12px; }
    .mush-page .mush-cat-go { right:20px; bottom:20px; width:40px; height:40px; }
}

/* ═══════════════════════════════════════════
   CATEGORIES v2 — "Find your perfect skin"
═══════════════════════════════════════════ */
.mush-page .mush-catx-wrap { padding: 44px 40px 0; }
.mush-page .mush-catx-header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; }
.mush-page .mush-catx-eyebrow { display:inline-flex; align-items:center; gap:8px; font-family: var(--font-body,'Inter',sans-serif); font-size:13px; font-weight:700; letter-spacing:1.6px; text-transform:uppercase; color: var(--mush-accent,#cde738); }
.mush-page .mush-catx-eyebrow svg { width:15px; height:15px; filter: drop-shadow(0 0 6px rgba(197,231,56,.6)); }
.mush-page .mush-catx-title { font-family: var(--font-display,'Bebas Neue'),sans-serif; font-weight:400; font-size:62px; line-height:.92; letter-spacing:.5px; text-transform:uppercase; color:#fff; margin:12px 0 0; }
.mush-page .mush-catx-sub { font-family: var(--font-body,'Inter',sans-serif); font-size:15px; line-height:1.5; color: rgba(255,255,255,.5); margin:12px 0 0; max-width:440px; }
.mush-page .mush-catx-viewall { flex-shrink:0; display:inline-flex; align-items:center; gap:10px; font-family: var(--font-body,'Inter',sans-serif); font-size:13px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color: var(--mush-accent,#cde738); text-decoration:none; padding:14px 24px; border-radius:14px; border:1px solid rgba(197,231,56,.35); background: rgba(197,231,56,.05); transition: background .2s, box-shadow .2s, transform .2s; }
.mush-page .mush-catx-viewall svg { width:17px; height:17px; }
.mush-page .mush-catx-viewall:hover { background: rgba(197,231,56,.14); box-shadow: 0 0 26px rgba(197,231,56,.2); transform: translateY(-1px); text-decoration:none; }

.mush-page .mush-catx-chips { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:30px; }
.mush-page .mush-catx-chip { display:inline-flex; align-items:center; gap:9px; font-family: var(--font-body,'Inter',sans-serif); font-size:14px; font-weight:600; color: rgba(255,255,255,.72); text-decoration:none; padding:11px 20px; border-radius:999px; border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.02); transition: color .2s, border-color .2s, background .2s; }
.mush-page .mush-catx-chip svg { width:16px; height:16px; }
.mush-page .mush-catx-chip:hover { color:#fff; border-color: rgba(197,231,56,.35); background: rgba(197,231,56,.06); text-decoration:none; }
.mush-page .mush-catx-chip.is-active { color: var(--mush-accent,#cde738); border-color: rgba(197,231,56,.55); background: rgba(197,231,56,.08); }
.mush-page .mush-catx-chip--all { margin-left:auto; }
.mush-page .mush-catx-st { display:inline-flex; align-items:center; justify-content:center; font-size:10px; font-weight:800; letter-spacing:.5px; color:#0c1202; background:#f5a623; border-radius:4px; padding:2px 5px; line-height:1; }

.mush-page .mush-catx-grid { display:grid; gap:20px; padding:24px 40px; }
.mush-page .mush-catx-grid--3 { grid-template-columns: repeat(3,1fr); }
.mush-page .mush-catx-grid--4 { grid-template-columns: repeat(4,1fr); }

.mush-page .mush-catx-card { display:flex; flex-direction:column; min-height:520px; border-radius:26px; padding:24px; text-decoration:none; position:relative; overflow:hidden; border:1px solid rgba(197,231,56,.12); background: radial-gradient(120% 80% at 50% 108%, rgba(30,78,42,.55) 0%, rgba(9,26,14,0) 62%), linear-gradient(180deg,#0e1608 0%,#060a03 100%); transition: border-color .25s, transform .25s, box-shadow .25s; }
.mush-page .mush-catx-card:hover { border-color: rgba(197,231,56,.5); transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,0,0,.4), 0 0 40px rgba(197,231,56,.1); text-decoration:none; }
.mush-page .mush-catx-cardtop { display:flex; align-items:center; gap:14px; position:relative; z-index:3; }
.mush-page .mush-catx-badge { position:relative; width:52px; height:56px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.mush-page .mush-catx-hex { position:absolute; inset:0; width:100%; height:100%; }
.mush-page .mush-catx-hex path { stroke: rgba(197,231,56,.55); stroke-width:1.5; fill: rgba(197,231,56,.08); }
.mush-page .mush-catx-glyph { position:relative; display:flex; color: var(--mush-accent,#cde738); }
.mush-page .mush-catx-glyph svg { width:24px; height:24px; }
.mush-page .mush-catx-meta { display:flex; flex-direction:column; gap:6px; min-width:0; }
.mush-page .mush-catx-name { font-family: var(--font-display,'Bebas Neue'),sans-serif; font-weight:400; font-size:34px; line-height:.9; letter-spacing:.5px; color:#fff; }
.mush-page .mush-catx-count { display:inline-flex; align-items:center; gap:7px; font-family: var(--font-body,'Inter',sans-serif); font-size:12px; font-weight:700; letter-spacing:.8px; color: rgba(255,255,255,.62); }
.mush-page .mush-catx-dot { width:7px; height:7px; border-radius:999px; background: var(--mush-accent,#cde738); box-shadow: 0 0 8px rgba(197,231,56,.7); flex-shrink:0; }
.mush-page .mush-catx-media { position:relative; flex:1 1 auto; margin:8px 0 4px; min-height:200px; }
.mush-page .mush-catx-hero, .mush-page .mush-catx-media .mush-cat-preview-img { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; }
.mush-page .mush-catx-hero { transition: opacity .35s ease; }
.mush-page .mush-catx-media .mush-cat-preview { position:absolute; inset:0; opacity:0; transition: opacity .35s ease; }
.mush-page .mush-catx-media .mush-cat-preview-img { opacity:0; transition: opacity .5s ease; }
.mush-page .mush-catx-media .mush-cat-preview-img.is-active { opacity:1; }
.mush-page .mush-catx-card:hover .mush-cat-preview { opacity:1; }
.mush-page .mush-catx-card:hover .mush-catx-hero { opacity:1; } /* keep category image visible on hover (preview carousel removed) */
.mush-page .mush-catx-foot { position:relative; z-index:3; margin-top:auto; }
.mush-page .mush-catx-price { display:flex; flex-direction:column; gap:2px; min-height:46px; margin-bottom:16px; justify-content:flex-end; }
.mush-page .mush-catx-from { font-family: var(--font-body,'Inter',sans-serif); font-size:11px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color: rgba(255,255,255,.4); }
.mush-page .mush-catx-price strong { font-family: var(--font-display,'Bebas Neue'),sans-serif; font-weight:400; font-size:36px; line-height:1; color: var(--mush-accent,#cde738); }
.mush-page .mush-catx-price strong .woocommerce-Price-amount { color: var(--mush-accent,#cde738); }
.mush-page .mush-catx-btn { display:flex; align-items:center; justify-content:center; gap:9px; font-family: var(--font-body,'Inter',sans-serif); font-size:13px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color: var(--mush-accent,#cde738); padding:14px; border-radius:14px; border:1px solid rgba(197,231,56,.3); background: rgba(197,231,56,.04); transition: background .2s, color .2s, box-shadow .2s; }
.mush-page .mush-catx-btn svg { width:16px; height:16px; }
.mush-page .mush-catx-card:hover .mush-catx-btn { background: var(--mush-accent,#cde738); color:#0c1202; box-shadow: 0 6px 24px rgba(197,231,56,.3); }

@media (max-width:1100px){ .mush-page .mush-catx-grid--4 { grid-template-columns: repeat(2,1fr); } .mush-page .mush-catx-title { font-size:50px; } }
@media (max-width:820px){
    .mush-page .mush-catx-wrap { padding:28px 16px 0; }
    .mush-page .mush-catx-grid { padding:18px 16px; }
    .mush-page .mush-catx-grid--3 { grid-template-columns:1fr; }
    .mush-page .mush-catx-header { flex-direction:column; align-items:flex-start; gap:16px; }
    .mush-page .mush-catx-title { font-size:42px; }
    .mush-page .mush-catx-chip--all { margin-left:0; }
    .mush-page .mush-catx-card { min-height:440px; }
}

/* ── category card background image (crystal cave) ── */
.mush-page .mush-catx-card {
    background:
        linear-gradient(180deg, transparent 52%, rgba(4,8,2,.5) 100%),
        url(https://crystalskins.store/wp-content/uploads/2026/07/item-bg-1.webp) center / cover no-repeat,
        linear-gradient(180deg, #0e1608 0%, #060a03 100%);
}

/* ═══════════════════════════════════════════
   POPULAR ITEMS v2 — reworked slider
═══════════════════════════════════════════ */
.mush-page .mush-pop { padding: 40px 40px 8px; }
.mush-page .mush-pop-head { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.mush-page .mush-pop-head-title { display:flex; align-items:center; gap:14px; }
.mush-page .mush-pop-h2 { font-family: var(--font-display,'Bebas Neue'),sans-serif; font-weight:400; font-size:48px; line-height:.9; letter-spacing:.5px; text-transform:uppercase; color:#fff; margin:0; }
.mush-page .mush-pop-count { font-family: var(--font-body,'Inter',sans-serif); font-size:14px; font-weight:700; letter-spacing:.4px; color: var(--mush-accent,#cde738); background: rgba(197,231,56,.1); border:1px solid rgba(197,231,56,.3); padding:5px 13px; border-radius:999px; }
.mush-page .mush-pop-sub { font-family: var(--font-body,'Inter',sans-serif); font-size:14px; color: rgba(255,255,255,.5); margin:10px 0 0; }
.mush-page .mush-pop-head-r { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.mush-page .mush-pop-trending { display:inline-flex; align-items:center; gap:8px; font-family: var(--font-body,'Inter',sans-serif); font-size:13.5px; font-weight:700; color:#fff; padding:11px 18px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); }
.mush-page .mush-pop-trending svg { width:16px; height:16px; color: var(--mush-accent,#cde738); }
.mush-page .mush-pop-arrow { width:46px; height:46px; border-radius:999px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03); color:#fff; cursor:pointer; transition: border-color .2s, background .2s, color .2s; }
.mush-page .mush-pop-arrow svg { width:20px; height:20px; }
.mush-page .mush-pop-arrow:hover:not(:disabled) { border-color: var(--mush-accent,#cde738); color: var(--mush-accent,#cde738); }
.mush-page .mush-pop-arrow.mush-pop-next { border-color: rgba(197,231,56,.45); color: var(--mush-accent,#cde738); }
.mush-page .mush-pop-arrow:disabled { opacity:.35; cursor:default; }

.mush-page .mush-pop-chips { display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:26px; }
.mush-page .mush-pop-chip { display:inline-flex; align-items:center; gap:9px; font-family: var(--font-body,'Inter',sans-serif); font-size:14px; font-weight:600; color: rgba(255,255,255,.72); cursor:pointer; padding:11px 20px; border-radius:14px; border:1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.02); transition: color .2s, border-color .2s, background .2s; }
.mush-page .mush-pop-sort { margin-left:auto; display:inline-flex; align-items:center; gap:9px; }
.mush-page .mush-pop-sort-lbl { font-family: var(--font-body,'Inter',sans-serif); font-size:12.5px; font-weight:600; letter-spacing:.4px; text-transform:uppercase; color: rgba(255,255,255,.4); }
.mush-page .mush-pop-sortsel { appearance:none; -webkit-appearance:none; color:#fff; font-family: var(--font-body,'Inter',sans-serif); font-size:13.5px; font-weight:600; padding:11px 38px 11px 16px; border-radius:12px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cde738' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 13px center; background-size:15px; cursor:pointer; transition: border-color .2s, box-shadow .2s; }
.mush-page .mush-pop-sortsel:hover { border-color: rgba(197,231,56,.4); }
.mush-page .mush-pop-sortsel:focus { outline:none; border-color: rgba(197,231,56,.55); box-shadow: 0 0 0 3px rgba(197,231,56,.1); }
.mush-page .mush-pop-sortsel option { background:#131c0c; color:#fff; }
@media (max-width: 767px) { .mush-page .mush-pop-sort { margin-left:0; width:100%; justify-content:space-between; } .mush-page .mush-pop-sortsel { flex:1; } }
.mush-page .mush-pop-chip svg { width:16px; height:16px; }
.mush-page .mush-pop-chip:hover { color:#fff; border-color: rgba(197,231,56,.3); }
.mush-page .mush-pop-chip.is-active { color:#0c1202; background: var(--mush-accent,#cde738); border-color: var(--mush-accent,#cde738); }

/* slider frame */
.mush-page .mush-pop-slider { position:relative; margin-top:26px; }
.mush-page .mush-pop-viewport { overflow:hidden; padding:24px 4px; }
.mush-page .mush-pop-track { display:flex; gap:18px; will-change:transform; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.mush-page .mush-pop-side { position:absolute; top:50%; transform:translateY(-50%); z-index:5; width:52px; height:52px; border-radius:999px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(197,231,56,.3); background: rgba(8,14,4,.75); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px); color:#fff; cursor:pointer; transition: color .2s, border-color .2s, background .2s; }
.mush-page .mush-pop-side svg { width:22px; height:22px; }
.mush-page .mush-pop-side:hover:not(:disabled) { color: var(--mush-accent,#cde738); border-color: var(--mush-accent,#cde738); }
.mush-page .mush-pop-side:disabled { opacity:0; pointer-events:none; }
.mush-page .mush-pop-side-prev { left:-14px; }
.mush-page .mush-pop-side-next { right:-14px; }

/* card */
.mush-page .mush-pop-card { flex:0 0 264px; width:264px; border-radius:22px; overflow:hidden; cursor:pointer; position:relative; border:1px solid rgba(255,255,255,.07); background: radial-gradient(120% 70% at 50% 100%, rgba(24,64,32,.5) 0%, rgba(8,16,6,0) 60%), linear-gradient(180deg,#0d1408 0%,#070b04 100%); transition: transform .25s, border-color .25s, box-shadow .25s; }
.mush-page .mush-pop-card::before { content:''; position:absolute; top:-13px; left:50%; transform:translateX(-50%) rotate(45deg); width:20px; height:20px; background: var(--mush-accent,#cde738); border-radius:5px; opacity:0; transition: opacity .25s, top .25s; z-index:6; box-shadow: 0 0 18px rgba(197,231,56,.7); }
.mush-page .mush-pop-card:hover { transform: translateY(-6px); border-color: rgba(197,231,56,.55); box-shadow: 0 22px 50px rgba(0,0,0,.45), 0 0 44px rgba(197,231,56,.16); }
.mush-page .mush-pop-card:hover::before { opacity:1; top:-9px; }

.mush-page .mush-pop-media { position:relative; height:196px; background: radial-gradient(90% 80% at 50% 100%, rgba(30,80,40,.4), transparent 70%); }
.mush-page .mush-pop-imgwrap { position:absolute; inset:14px; display:flex; align-items:center; justify-content:center; }
.mush-page .mush-pop-img { max-width:100%; max-height:100%; object-fit:contain; transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
.mush-page .mush-pop-card:hover .mush-pop-img { transform: scale(1.07); }
.mush-page .mush-pop-ico { position:absolute; top:12px; width:34px; height:34px; border-radius:999px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.12); background: rgba(6,10,3,.7); color:#fff; cursor:pointer; z-index:3; transition: color .2s, background .2s; }
.mush-page .mush-pop-ico svg { width:15px; height:15px; }
.mush-page .mush-pop-wish { left:12px; }
.mush-page .mush-pop-cart { right:12px; }
.mush-page .mush-pop-ico:hover { color: var(--mush-accent,#cde738); }
.mush-page .mush-pop-cart:hover { color:#0c1202; background: var(--mush-accent,#cde738); }
.mush-page .mush-pop-badge--st { position:absolute; left:12px; bottom:12px; z-index:3; font-family: var(--font-body,'Inter',sans-serif); font-size:9.5px; font-weight:800; letter-spacing:.6px; text-transform:uppercase; color:#0c1202; background:#f5a623; padding:4px 8px; border-radius:6px; }

.mush-page .mush-pop-info { padding:0 16px 18px; }
.mush-page .mush-pop-title { font-family: var(--font-body,'Inter',sans-serif); font-weight:700; font-size:16px; line-height:1.2; color:#fff; margin:0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mush-page .mush-pop-skin { display:block; font-family: var(--font-body,'Inter',sans-serif); font-size:13px; color: rgba(255,255,255,.55); margin-top:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mush-page .mush-pop-wear { display:block; font-family: var(--font-body,'Inter',sans-serif); font-size:12px; color: rgba(255,255,255,.38); margin-top:2px; }
.mush-page .mush-pop-price { margin-top:12px; font-family: var(--font-body,'Inter',sans-serif); font-weight:800; font-size:20px; color: var(--mush-accent,#cde738); }
.mush-page .mush-pop-price .woocommerce-Price-amount { color: var(--mush-accent,#cde738); }

/* filter */
.mush-page .mush-pop-card.is-hidden { display:none; }

/* dots */
.mush-page .mush-pop-dots { display:flex; align-items:center; justify-content:center; gap:8px; margin-top:8px; }
.mush-page .mush-pop-dot { width:8px; height:8px; padding:0; border:none; border-radius:999px; background: rgba(255,255,255,.18); cursor:pointer; transition: width .25s, background .25s; }
.mush-page .mush-pop-dot.is-active { width:26px; background: var(--mush-accent,#cde738); }

@media (max-width:820px){
    .mush-page .mush-pop { padding:28px 16px 8px; }
    .mush-page .mush-pop-head { flex-direction:column; gap:14px; }
    .mush-page .mush-pop-h2 { font-size:36px; }
    .mush-page .mush-pop-side { display:none; }
    .mush-page .mush-pop-card { flex-basis:220px; width:220px; }
}

/* reveal FAILSAFE — a CSS animation reveals [data-mush-reveal] even if the main
   thread is blocked (heavy load) and the JS observer/timeout can't run. Runs on
   the compositor, so it is immune to main-thread jank. .mush-in (JS) cancels it. */
html.mush-js .mush-page [data-mush-reveal] { animation: mush-reveal-fb .7s ease 2.2s forwards; }
html.mush-js .mush-page [data-mush-reveal].mush-in { animation: none; }
@keyframes mush-reveal-fb { to { opacity: 1; transform: none; } }
