/*
 * 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(http://force1.local/wp-content/uploads/2026/06/Gradient.png);
}

/* 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
═══════════════════════════════════════════ */
.mush-page .mush-section-deals {
    padding: 24px 24px 0;
}

.mush-page .mush-deals-card {
    width: 100%;
    height: 720px;
    border-radius: 64px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(30, 75, 40, 1) 0%, rgba(30, 75, 40, 0) 100%),
        radial-gradient(ellipse at 50% 100%, rgba(38, 14, 3, 1) 0%, rgba(19, 7, 2, 1) 50%, rgba(10, 4, 1, 1) 75%, rgba(0, 0, 0, 1) 100%);
    box-shadow: var(--mush-card-shadow);
}

.mush-page .mush-deals-left {
    position: absolute;
    left: 120px;
    top: calc(50% + 81.5px);
    transform: translateY(-50%);
    width: 505px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.mush-page .mush-deals-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 1;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    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;
    white-space: nowrap;
}

.mush-page .mush-deals-sub {
    font-weight: 500;
    font-size: 30px;
    line-height: 44.8px;
    color: #fbff84;
    max-width: 500px;
}

.mush-page .mush-deals-right {
    position: absolute;
    left: 854px;
    top: calc(40% + 0.5px);
    transform: translateY(-50%);
    width: 842px;
    height: 401px;
}

/* Weapon images */
.mush-page .mush-weapon-left {
    position: absolute;
    left: 3.77px;
    top: 104.11px;
    width: 267px;
    height: 278px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mush-page .mush-weapon-left-inner {
    transform: rotate(-15deg) scaleY(-1);
    width: 215px;
    height: 231px;
    overflow: hidden;
}

.mush-page .mush-weapon-left-inner img,
.mush-page .mush-weapon-center img,
.mush-page .mush-weapon-right-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mush-page .mush-weapon-center {
    position: absolute;
    left: 259px;
    top: 0;
    width: 323px;
    height: 243px;
    overflow: hidden;
}

.mush-page .mush-weapon-right {
    position: absolute;
    left: 572.84px;
    top: 96px;
    width: 263px;
    height: 263px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mush-page .mush-weapon-right-inner {
    transform: rotate(15deg);
    width: 215px;
    height: 215px;
    overflow: hidden;
}

/* Hot deals product cards — the SAME .product-card component as everywhere,
   wrapped in an absolutely-positioned slot so the layout stays identical. */
.mush-page .mush-deal-slot {
    position: absolute;
    top: 196px;
    width: 264px;
    z-index: 2;
}

.mush-page .mush-deal-slot .product-card {
    width: 100%;
}

.mush-page .mush-deal-slot .dc-img-area {
    height: 200px;
}

.mush-page .mush-product-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mush-page .mush-product-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.mush-page .mush-product-info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.mush-page .mush-product-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

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

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

/* Hot deals scale animation */
.mush-page .mush-deals-scale-item {
    opacity: 0;
    transform: scale(0.35);
}

.mush-page .mush-deals-scale-item.mush-animate-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════
   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-left { left: 64px; width: 44%; }
    .mush-page .mush-deals-title { font-size: 76px; }
    .mush-page .mush-deals-right { left: auto; right: 40px; }
}

/* ── ≤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 — un-absolute the layout, stack into a grid */
    .mush-page .mush-deals-card {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding: 48px 22px;
        border-radius: 48px;
    }
    .mush-page .mush-deals-left {
        position: static; transform: none; left: auto; top: auto;
        width: 100%; align-items: center; text-align: center;
    }
    .mush-page .mush-deals-title { font-size: clamp(56px, 13vw, 88px); white-space: normal; }
    .mush-page .mush-deals-sub { font-size: 20px; line-height: 30px; max-width: none; }
    .mush-page .mush-deals-right {
        position: static; transform: none; left: auto; top: auto;
        width: 100%; height: auto;
        display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
    }
    .mush-page .mush-weapon-left,
    .mush-page .mush-weapon-center,
    .mush-page .mush-weapon-right { display: none; }
    .mush-page .mush-deal-slot { position: static; width: auto; height: auto; }

    /* 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 — single column of cards */
    .mush-page .mush-deals-right { grid-template-columns: 1fr; }
    .mush-page .mush-deal-slot { height: auto; max-width: 320px; margin: 0 auto; }

    /* 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;
}