:root {
        --home-bg: #ffffff;
        --home-text: #0f172a;
        --home-text-muted: #64748b;
        --home-border: #e2e8f0;
        --home-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        --home-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
        --home-gradient-start: #2563eb;
        --home-gradient-end: #1d4ed8;
        --home-success: #16a34a;
        --home-danger: #dc2626;
        --home-warning: #f59e0b;
        --home-gold: #fbbf24;
        --home-card-bg: #ffffff;
        --home-input-bg: #f8fafc;
        --home-radius-lg: 20px;
        --home-radius-md: 14px;
        --home-radius-sm: 10px;
        --hero-overlay: rgba(15, 23, 42, 0.6);
    }
    
    [data-theme="dark"] {
        --home-bg: #0f172a;
        --home-text: #f1f5f9;
        --home-text-muted: #94a3b8;
        --home-border: #1e293b;
        --home-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
        --home-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.5);
        --home-card-bg: #1e293b;
        --home-input-bg: #0f172a;
        --hero-overlay: rgba(15, 23, 42, 0.8);
    }

    /* ===== اسلایدر اصلی (هیرو) ===== */
    .heroSwiper {
        border-radius: var(--home-radius-lg);
        overflow: hidden;
        box-shadow: var(--home-shadow);
    }
    .hero-slide {
        min-height: 470px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .hero-slide .bg-pattern {
        position: absolute;
        inset: 0;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }
    .hero-slide .slide-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    .hero-slide .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-slide .slide-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    }
    .hero-slide h1 {
        font-size: 38px;
        font-weight: 800;
        line-height: 1.2;
        color: #fff;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
    .hero-slide h1 .neon-text {
        background: linear-gradient(135deg, var(--home-gradient-start), var(--home-gradient-end));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .hero-slide p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .float-animation {
        animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }
    
    .btn-gaming {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: var(--home-radius-sm);
        background: linear-gradient(135deg, var(--home-gradient-start), var(--home-gradient-end));
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: none;
        font-family: 'Vazirmatn', sans-serif;
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    .btn-gaming::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        transition: left 0.6s ease;
    }
    .btn-gaming:hover::after {
        left: 100%;
    }
    .btn-gaming:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
        color: #fff;
    }
    .btn-gaming:active {
        transform: scale(0.97);
    }
    
    .btn-outline-gaming {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        border-radius: var(--home-radius-sm);
        border: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-family: 'Vazirmatn', sans-serif;
        backdrop-filter: blur(10px);
        cursor: pointer;
    }
    .btn-outline-gaming:hover {
        border-color: var(--home-gradient-start);
        background: rgba(37, 99, 235, 0.15);
        transform: translateY(-3px);
        color: #fff;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        color: #fff;
        background: rgba(0, 0, 0, 0.3);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: var(--home-gradient-start);
        border-color: var(--home-gradient-start);
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
        font-weight: 700;
    }
    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.3);
        opacity: 1;
        width: 10px;
        height: 10px;
        transition: all 0.3s ease;
    }
    .swiper-pagination-bullet-active {
        background: var(--home-gradient-start);
        width: 28px;
        border-radius: 10px;
    }
    
    /* ===== بخش‌های عمومی ===== */
    .section-title-wrap {
        position: relative;
        display: inline-block;
    }
    .section-title-wrap::after {
        content: '';
        position: absolute;
        bottom: -6px;
        right: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(135deg, var(--home-gradient-start), var(--home-gradient-end));
        border-radius: 10px;
    }
    .neon-text {
        background: linear-gradient(135deg, var(--home-gradient-start), var(--home-gradient-end));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .fade-in-up {
        animation: fadeInUp 0.8s ease forwards;
        opacity: 0;
    }
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .section-alt {
        background: var(--home-input-bg);
        border-radius: var(--home-radius-lg);
        padding: 40px 0;
    }
    
    /* ===== دسته‌بندی‌ها ===== */
    .category-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 12px;
        background: var(--home-card-bg);
        border: 1px solid var(--home-border);
        border-radius: var(--home-radius-md);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: var(--home-shadow);
        text-align: center;
    }
    .category-card:hover {
        transform: translateY(-6px);
        border-color: var(--home-gradient-start);
        box-shadow: var(--home-shadow-hover);
    }
    .category-card .category-icon {
        width: 56px;
        height: 56px;
        background: var(--home-input-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        border: 1px solid var(--home-border);
        transition: all 0.3s ease;
    }
    .category-card:hover .category-icon {
        border-color: var(--home-gradient-start);
        background: rgba(37, 99, 235, 0.04);
    }
    .category-card .category-icon i {
        font-size: 24px;
        color: var(--home-gradient-start);
    }
    .category-card .category-icon img {
        width: 30px;
        height: 30px;
        object-fit: cover;
    }
    .category-card .category-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--home-gradient-start);
    }
    .category-card h3 {
        font-size: 14px;
        font-weight: 700;
        color: var(--home-text);
        margin-bottom: 2px;
    }
    .category-card p {
        font-size: 12px;
        color: var(--home-text-muted);
    }
    
    /* ===== اسلایدر محصولات ===== */
    .product-slider-wrapper {
        position: relative;
        padding: 0 10px;
    }
    
    .product-slider-wrapper .product-next,
    .product-slider-wrapper .product-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--home-card-bg);
        border: 1px solid var(--home-border);
        box-shadow: var(--home-shadow);
        color: var(--home-text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .product-slider-wrapper .product-next:hover,
    .product-slider-wrapper .product-prev:hover {
        background: var(--home-gradient-start);
        color: #fff;
        border-color: var(--home-gradient-start);
    }
    .product-slider-wrapper .product-next::after,
    .product-slider-wrapper .product-prev::after {
        font-size: 14px;
        font-weight: 700;
    }
    .product-slider-wrapper .product-next {
        right: -18px;
        left: auto;
    }
    .product-slider-wrapper .product-prev {
        left: -18px;
        right: auto;
    }
    
    /* ===== اسلایدر تخفیف‌ها ===== */
    .discount-slider-wrapper {
        position: relative;
        padding: 0 10px;
    }
    
    .discount-slider-wrapper .discount-next,
    .discount-slider-wrapper .discount-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--home-card-bg);
        border: 1px solid var(--home-border);
        box-shadow: var(--home-shadow);
        color: var(--home-text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .discount-slider-wrapper .discount-next:hover,
    .discount-slider-wrapper .discount-prev:hover {
        background: var(--home-danger);
        color: #fff;
        border-color: var(--home-danger);
    }
    .discount-slider-wrapper .discount-next::after,
    .discount-slider-wrapper .discount-prev::after {
        font-size: 14px;
        font-weight: 700;
    }
    .discount-slider-wrapper .discount-next {
        right: -18px;
        left: auto;
    }
    .discount-slider-wrapper .discount-prev {
        left: -18px;
        right: auto;
    }
    
    /* ===== کارت محصول ===== */
    .product-card {
        background: var(--home-card-bg);
        border: 1px solid var(--home-border);
        border-radius: var(--home-radius-md);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: var(--home-shadow);
    }
    .product-card:hover {
        transform: translateY(-6px);
        border-color: var(--home-gradient-start);
        box-shadow: var(--home-shadow-hover);
    }
    .product-card .product-image {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--home-input-bg);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    .product-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    .product-card .product-image svg {
        width: 48px;
        height: 48px;
        opacity: 0.2;
        stroke: var(--home-gradient-start);
    }
    
    .product-card .product-badges {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 3;
    }
    .product-card .product-badges .badge {
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.3px;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .badge-featured {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        color: #0f172a;
    }
    .badge-new {
        background: linear-gradient(135deg, #3b82f6, #2563eb);
        color: #fff;
    }
    .badge-best {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        color: #fff;
    }
    .badge-sale {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        color: #fff;
        animation: pulseBadge 2s infinite;
    }
    @keyframes pulseBadge {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.06); }
    }
    
    .product-card .badge-stock {
        position: absolute;
        bottom: 10px;
        right: 10px;
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 9px;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        color: #fff;
        z-index: 3;
    }
    .product-card .badge-stock.in-stock {
        background: rgba(22, 163, 74, 0.85);
    }
    .product-card .badge-stock.out-of-stock {
        background: rgba(220, 38, 38, 0.85);
    }
    .product-card .badge-stock.preorder {
        background: rgba(245, 158, 11, 0.85);
    }
    
    .product-card .product-body {
        padding: 14px 16px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .product-card .product-body .product-category {
        display: inline-block;
        background: var(--home-input-bg);
        color: var(--home-gradient-start);
        font-size: 10px;
        padding: 2px 10px;
        border-radius: 20px;
        font-weight: 600;
        margin-bottom: 6px;
        width: fit-content;
        border: 1px solid var(--home-border);
    }
    .product-card .product-body .product-name {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 40px;
    }
    .product-card .product-body .product-name a {
        color: var(--home-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .product-card .product-body .product-name a:hover {
        color: var(--home-gradient-start);
    }
    
    .product-card .product-body .product-rating {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
    }
    .product-card .product-body .product-rating .stars {
        display: flex;
        gap: 1px;
        color: var(--home-gold);
        font-size: 12px;
    }
    .product-card .product-body .product-rating .count {
        font-size: 11px;
        color: var(--home-text-muted);
    }
    
    .product-card .product-body .product-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid var(--home-border);
        gap: 8px;
    }
    .product-card .product-body .product-footer .product-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .product-card .product-body .product-footer .product-price .price-old {
        font-size: 11px;
        color: var(--home-text-muted);
        text-decoration: line-through;
    }
    .product-card .product-body .product-footer .product-price .price-new {
        font-size: 17px;
        font-weight: 800;
        color: var(--home-gradient-start);
        line-height: 1.2;
    }
    .product-card .product-body .product-footer .product-price .price-free {
        font-size: 16px;
        font-weight: 700;
        color: var(--home-success);
    }
    
    .product-card .product-body .product-footer .btn-buy {
        padding: 6px 14px;
        border-radius: var(--home-radius-sm);
        font-size: 11px;
        font-weight: 600;
        background: linear-gradient(135deg, var(--home-gradient-start), var(--home-gradient-end));
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        white-space: nowrap;
        font-family: 'Vazirmatn', sans-serif;
        box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
    }
    .product-card .product-body .product-footer .btn-buy:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    }
    .product-card .product-body .product-footer .btn-buy:active {
        transform: scale(0.95);
    }
    .product-card .product-body .product-footer .btn-buy svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
    
    /* ===== کارت تخفیف ===== */
    .discount-card {
        background: var(--home-card-bg);
        border: 1px solid var(--home-border);
        border-radius: var(--home-radius-md);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: var(--home-shadow);
    }
    .discount-card:hover {
        transform: translateY(-6px);
        border-color: var(--home-danger);
        box-shadow: var(--home-shadow-hover);
    }
    .discount-card .product-image {
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--home-input-bg);
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    .discount-card .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .discount-card:hover .product-image img {
        transform: scale(1.05);
    }
    .discount-card .product-image svg {
        width: 48px;
        height: 48px;
        opacity: 0.2;
        stroke: var(--home-danger);
    }
    .discount-card .product-body {
        padding: 14px 16px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .discount-card .product-body .discount-badge {
        display: inline-block;
        background: rgba(220, 38, 38, 0.08);
        color: var(--home-danger);
        font-size: 10px;
        font-weight: 700;
        padding: 2px 10px;
        border-radius: 20px;
        border: 1px solid rgba(220, 38, 38, 0.1);
        width: fit-content;
        margin-bottom: 6px;
    }
    .discount-card .product-body .product-category {
        display: inline-block;
        background: var(--home-input-bg);
        color: var(--home-gradient-start);
        font-size: 10px;
        padding: 2px 10px;
        border-radius: 20px;
        font-weight: 600;
        margin-bottom: 6px;
        width: fit-content;
        border: 1px solid var(--home-border);
    }
    .discount-card .product-body .product-name {
        font-size: 14px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 40px;
    }
    .discount-card .product-body .product-name a {
        color: var(--home-text);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .discount-card .product-body .product-name a:hover {
        color: var(--home-gradient-start);
    }
    .discount-card .product-body .product-rating {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
    }
    .discount-card .product-body .product-rating .stars {
        display: flex;
        gap: 1px;
        color: var(--home-gold);
        font-size: 12px;
    }
    .discount-card .product-body .product-rating .count {
        font-size: 11px;
        color: var(--home-text-muted);
    }
    .discount-card .product-body .product-footer {
        margin-top: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid var(--home-border);
        gap: 8px;
    }
    .discount-card .product-body .product-footer .product-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    .discount-card .product-body .product-footer .product-price .price-old {
        font-size: 11px;
        color: var(--home-text-muted);
        text-decoration: line-through;
    }
    .discount-card .product-body .product-footer .product-price .price-new {
        font-size: 17px;
        font-weight: 800;
        color: var(--home-danger);
        line-height: 1.2;
    }
    .discount-card .product-body .product-footer .btn-buy {
        padding: 6px 14px;
        border-radius: var(--home-radius-sm);
        font-size: 11px;
        font-weight: 600;
        background: linear-gradient(135deg, var(--home-danger), #b91c1c);
        color: #fff;
        border: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        display: flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        white-space: nowrap;
        font-family: 'Vazirmatn', sans-serif;
        box-shadow: 0 2px 12px rgba(220, 38, 38, 0.2);
    }
    .discount-card .product-body .product-footer .btn-buy:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
    }
    .discount-card .product-body .product-footer .btn-buy:active {
        transform: scale(0.95);
    }
    .discount-card .product-body .product-footer .btn-buy svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
    
    /* ===== ویژگی‌ها ===== */
    .feature-gaming {
        background: var(--home-card-bg);
        border: 1px solid var(--home-border);
        border-radius: var(--home-radius-md);
        box-shadow: var(--home-shadow);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        padding: 24px 16px;
        text-align: center;
    }
    .feature-gaming:hover {
        transform: translateY(-6px);
        border-color: var(--home-gradient-start);
        box-shadow: var(--home-shadow-hover);
    }
    .feature-gaming .icon {
        width: 56px;
        height: 56px;
        border-radius: var(--home-radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        background: var(--home-input-bg);
        border: 1px solid var(--home-border);
        transition: all 0.3s ease;
        color: var(--home-gradient-start);
    }
    .feature-gaming:hover .icon {
        border-color: var(--home-gradient-start);
        background: rgba(37, 99, 235, 0.08);
        color: var(--home-gradient-start);
    }
    .feature-gaming .icon svg {
        width: 28px;
        height: 28px;
        stroke: currentColor;
    }
    .feature-gaming h3 {
        font-size: 15px;
        font-weight: 700;
        color: var(--home-text);
        margin-bottom: 4px;
        transition: color 0.3s ease;
    }
    .feature-gaming:hover h3 {
        color: var(--home-gradient-start);
    }
    .feature-gaming p {
        font-size: 13px;
        color: var(--home-text-muted);
        margin: 0;
        transition: color 0.3s ease;
    }
    .feature-gaming:hover p {
        color: var(--home-text);
    }
    
    /* ===== خبرنامه ===== */
    .newsletter-box {
        background: linear-gradient(135deg, var(--home-gradient-start), var(--home-gradient-end));
        border-radius: var(--home-radius-lg);
        padding: 48px 32px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(37, 99, 235, 0.2);
    }
    .newsletter-box::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .newsletter-box .newsletter-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 12px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .newsletter-box .newsletter-icon svg {
        width: 32px;
        height: 32px;
        stroke: #fff;
    }
    .newsletter-box h3 {
        font-size: 24px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 8px;
    }
    .newsletter-box h3 .neon-text {
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .newsletter-box p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin-bottom: 16px;
    }
    .newsletter-box .newsletter-form .input-group {
        display: flex;
        gap: 10px;
        max-width: 440px;
        margin: 0 auto;
    }
    .newsletter-box .newsletter-form .input-group input {
        flex: 1;
        padding: 12px 18px;
        border-radius: var(--home-radius-sm);
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 14px;
        font-family: 'Vazirmatn', sans-serif;
        outline: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .newsletter-box .newsletter-form .input-group input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    .newsletter-box .newsletter-form .input-group input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.2);
    }
    .newsletter-box .newsletter-form .input-group .btn-subscribe {
        padding: 12px 24px;
        border-radius: var(--home-radius-sm);
        border: none;
        background: #fff;
        color: var(--home-gradient-start);
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-family: 'Vazirmatn', sans-serif;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }
    .newsletter-box .newsletter-form .input-group .btn-subscribe:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .newsletter-box .subscribed-status {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: var(--home-radius-sm);
        border: 1px solid rgba(255, 255, 255, 0.06);
        max-width: 500px;
        margin: 0 auto;
    }
    .newsletter-box .subscribed-status .status-icon {
        width: 32px;
        height: 32px;
        background: rgba(22, 163, 74, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .newsletter-box .subscribed-status .status-icon svg {
        width: 18px;
        height: 18px;
        stroke: #34d399;
    }
    .newsletter-box .subscribed-status .status-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }
    .newsletter-box .subscribed-status .status-text strong {
        color: #fff;
    }
    .newsletter-box .subscribed-status .btn-unsubscribe {
        padding: 4px 16px;
        border-radius: var(--home-radius-sm);
        border: 1px solid rgba(220, 38, 38, 0.2);
        background: rgba(220, 38, 38, 0.1);
        color: #fca5a5;
        font-weight: 600;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Vazirmatn', sans-serif;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .newsletter-box .subscribed-status .btn-unsubscribe:hover {
        background: rgba(220, 38, 38, 0.2);
        border-color: rgba(220, 38, 38, 0.3);
        color: #fff;
    }
    .newsletter-box .subscribed-status .btn-unsubscribe svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
    }
    
    /* ===== حالت خالی ===== */
    .empty-state {
        text-align: center;
        padding: 40px 20px;
        color: var(--home-text-muted);
    }
    .empty-state .empty-icon {
        width: 80px;
        height: 80px;
        opacity: 0.15;
        margin-bottom: 12px;
        stroke: var(--home-text-muted);
    }
    .empty-state h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--home-text);
        margin-bottom: 4px;
    }
    .empty-state p {
        font-size: 14px;
    }
    
    /* ===== ریسپانسیو ===== */
    
    /* تبلت */
    @media (max-width: 1024px) {
        .product-slider-wrapper .product-next {
            right: -10px;
        }
        .product-slider-wrapper .product-prev {
            left: -10px;
        }
        .discount-slider-wrapper .discount-next {
            right: -10px;
        }
        .discount-slider-wrapper .discount-prev {
            left: -10px;
        }
        .hero-slide h1 {
            font-size: 30px;
        }
    }
    
    /* موبایل */
    @media (max-width: 768px) {
        /* مخفی کردن دکمه‌های ناوبری در موبایل */
        .product-slider-wrapper .product-next,
        .product-slider-wrapper .product-prev,
        .discount-slider-wrapper .discount-next,
        .discount-slider-wrapper .discount-prev {
            display: none !important;
        }
        
        .product-slider-wrapper {
            padding: 0;
        }
        .discount-slider-wrapper {
            padding: 0;
        }
        
        .hero-slide {
            min-height: 320px;
        }
        .hero-slide h1 {
            font-size: 24px;
        }
        .hero-slide .btn-gaming,
        .hero-slide .btn-outline-gaming {
            padding: 10px 20px;
            font-size: 13px;
        }
        
        .category-card {
            padding: 14px 10px;
        }
        .category-card .category-icon {
            width: 44px;
            height: 44px;
        }
        .category-card .category-icon svg {
            width: 22px;
            height: 22px;
        }
        .category-card h3 {
            font-size: 12px;
        }
        
        .newsletter-box {
            padding: 32px 20px;
        }
        .newsletter-box h3 {
            font-size: 20px;
        }
        .newsletter-box .newsletter-form .input-group {
            flex-direction: column;
        }
        .newsletter-box .newsletter-form .input-group .btn-subscribe {
            justify-content: center;
        }
        .newsletter-box .subscribed-status {
            flex-direction: column;
            text-align: center;
        }
        
        .section-alt {
            padding: 24px 0;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            width: 34px;
            height: 34px;
        }
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 12px;
        }
        
        .discount-card .product-image {
            height: 160px;
        }
        
        .feature-gaming {
            padding: 16px 12px;
        }
        .feature-gaming .icon {
            width: 44px;
            height: 44px;
        }
        .feature-gaming .icon svg {
            width: 22px;
            height: 22px;
        }
        .feature-gaming h3 {
            font-size: 13px;
        }
        .feature-gaming p {
            font-size: 12px;
        }
    }
    
    /* موبایل کوچک */
    @media (max-width: 480px) {
        .hero-slide {
            min-height: 260px;
        }
        .hero-slide h1 {
            font-size: 20px;
        }
        .hero-slide .btn-gaming,
        .hero-slide .btn-outline-gaming {
            padding: 8px 16px;
            font-size: 12px;
        }
        .hero-slide .btn-gaming svg,
        .hero-slide .btn-outline-gaming svg {
            width: 14px;
            height: 14px;
        }
        
        .product-card .product-image {
            height: 130px;
        }
        .product-card .product-body .product-name {
            font-size: 12px;
            min-height: 32px;
        }
        .product-card .product-body .product-footer .product-price .price-new {
            font-size: 14px;
        }
        .product-card .product-body .product-footer .btn-buy {
            padding: 4px 10px;
            font-size: 10px;
        }
        .product-card .product-body .product-footer .btn-buy svg {
            width: 12px;
            height: 12px;
        }
        
        .discount-card .product-image {
            height: 130px;
        }
        .discount-card .product-body .product-footer .product-price .price-new {
            font-size: 14px;
        }
        .discount-card .product-body .product-footer .btn-buy {
            padding: 4px 10px;
            font-size: 10px;
        }
        .discount-card .product-body .product-footer .btn-buy svg {
            width: 12px;
            height: 12px;
        }
        
        .newsletter-box h3 {
            font-size: 18px;
        }
        
        .feature-gaming .icon {
            width: 40px;
            height: 40px;
        }
        .feature-gaming .icon svg {
            width: 20px;
            height: 20px;
        }
    }