    :root {
        --zenith-p: #6A0DAD;
        --zenith-o: #FF7A00;
        --zenith-soft: rgba(106, 13, 173, 0.05);
    }

    .cat-zenith-header {
        content-visibility: auto;
        contain-intrinsic-size: 1px 500px;
        text-align: center;
        margin: 50px 0 35px;
    }

    .zenith-bg-matrix {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
        opacity: 0.1;
        overflow: hidden;
    }

    .floating-social-icon {
        position: absolute;
        animation: socialRise infinite linear;
        will-change: transform;
        transform: translateZ(0);
    }

    @keyframes socialRise {
        0% {
            transform: translateY(110vh) rotate(0deg);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        90% {
            opacity: 1;
        }

        100% {
            transform: translateY(-15vh) rotate(360deg);
            opacity: 0;
        }
    }

    .zenith-main-wrapper {
        position: relative;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .cat-zenith-header h2 {
        font-size: 1.6rem;
        font-weight: 950;
        color: var(--zenith-p);
        display: inline-block;
        border-right: 7px solid var(--zenith-o);
        padding-right: 18px;
    }

    .zenith-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        width: 100%;
    }

    .zenith-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 40px;
        padding: 35px 25px;
        text-align: center;
        width: 100%;
        max-width: 340px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
        transition: 0.3s transform ease;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transform: translateZ(0);
    }

    .zenith-card:hover {
        transform: translateY(-8px);
        border-color: var(--zenith-o);
    }

    .btn-fav-zenith {
        position: absolute;
        top: 25px;
        left: 25px;
        background: #fff;
        border: 1px solid #eee;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        z-index: 5;
    }

    .btn-fav-zenith i {
        color: #ddd;
        font-size: 1.2rem;
        transition: 0.3s;
    }

    /* اللون الأحمر عند التفعيل */
    .btn-fav-zenith.active i {
        color: #ff4757 !important;
    }

    .btn-fav-zenith.active {
        border-color: #ff4757;
        background: #fff5f6;
    }

    .zenith-platform-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        display: block;
        color: var(--zenith-p);
    }

    .zenith-card h5 {
        font-weight: 950;
        color: var(--zenith-p);
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .zenith-stats {
        display: flex;
        justify-content: space-around;
        background: var(--zenith-soft);
        border-radius: 20px;
        padding: 12px;
        margin-bottom: 20px;
    }

    .zenith-stat-item {
        font-size: 0.75rem;
        font-weight: 800;
        color: #57606f;
    }

    .zenith-stat-item b {
        color: var(--zenith-p);
        display: block;
        font-size: 0.9rem;
    }

    .zenith-price {
        color: var(--zenith-o);
        font-size: 1.6rem;
        font-weight: 950;
        margin-bottom: 20px;
        display: block;
    }

    .zenith-btn-order {
        background: var(--zenith-o);
        color: #fff;
        padding: 14px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 950;
        font-size: 0.95rem;
        display: block;
        box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
    }

    /* --- DARK MODE OVERRIDES --- */
    body.dark-mode .zenith-card {
        background: #1e1e1e;
        border-color: #333;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    body.dark-mode .zenith-card h5 {
        color: #e0e0e0;
    }

    body.dark-mode .zenith-stats {
        background: rgba(255, 255, 255, 0.05);
    }

    body.dark-mode .zenith-stat-item {
        color: #aaa;
    }

    body.dark-mode .zenith-stat-item b {
        color: #fff;
    }

    body.dark-mode .btn-fav-zenith {
        background: #2c2c2c;
        border-color: #444;
    }

    body.dark-mode .cat-zenith-header h2 {
        color: #fff;
    }