/* --- 1. ZONE PAGE HEADER - GAMING STYLE COMPACT --- */
.zone-header {
    margin-top: 80px !important; 
    text-align: center;
    padding: 0 !important;
    padding-bottom: 0.8rem !important;
    margin-bottom: 0.8rem !important;
    animation: slideInDown 0.8s ease-out;
    position: relative;
    border: none !important;
}

.zone-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red);
}

.zone-header h1 {
    font-size: 2.5rem;
    color: var(--neon-red);
    text-shadow: 0 0 15px var(--neon-red), 0 0 30px var(--neon-red);
    animation: textGlow 2s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 !important;
    padding: 0 !important;
}

/* Xbox Zone - GREEN */
body[data-zone="XBOX ZONE"] .zone-header h1 {
    color: #00ff88;
    text-shadow: 0 0 15px #00ff88, 0 0 30px #00ff88;
}

body[data-zone="XBOX ZONE"] .zone-header::before {
    background: #00ff88;
    box-shadow: 0 0 15px #00ff88;
}

body[data-zone="XBOX ZONE"] .zone-header {
    border-bottom-color: #00ff88;
}

/* PSN Zone - BLUE */
body[data-zone="PSN ZONE"] .zone-header h1 {
    color: #00d4ff;
    text-shadow: 0 0 15px #00d4ff, 0 0 30px #00d4ff;
}

body[data-zone="PSN ZONE"] .zone-header::before {
    background: #00d4ff;
    box-shadow: 0 0 15px #00d4ff;
}

body[data-zone="PSN ZONE"] .zone-header {
    border-bottom-color: #00d4ff;
}

/* Digital Zone - PURPLE */
body[data-zone="DIGITAL ZONE"] .zone-header h1 {
    color: #9b59b6;
    text-shadow: 0 0 15px #9b59b6, 0 0 30px #9b59b6;
}

body[data-zone="DIGITAL ZONE"] .zone-header::before {
    background: #9b59b6;
    box-shadow: 0 0 15px #9b59b6;
}

body[data-zone="DIGITAL ZONE"] .zone-header {
    border-bottom-color: #9b59b6;
}

/* PC Zone - RED */
body[data-zone="PC ZONE"] .zone-header h1 {
    color: var(--neon-red);
    text-shadow: 0 0 15px var(--neon-red), 0 0 30px var(--neon-red);
}

/* --- FILTER CONTAINER - GAMING STYLE --- */
.filters-container {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.95), rgba(20, 24, 36, 0.95)) !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 51, 51, 0.1) !important;
    border: 2px solid rgba(255, 51, 51, 0.3) !important;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.6s ease-out 0.2s backwards;
}

.filters-container label {
    color: #ff3333 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    margin-bottom: 6px !important;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.filters-container select,
.filters-container input {
    background: rgba(10, 10, 10, 0.8) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 51, 51, 0.4) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.filters-container select:focus,
.filters-container input:focus {
    outline: none !important;
    border-color: #ff3333 !important;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4) !important;
}

.filters-container #reset-filters {
    background: linear-gradient(135deg, #ff3333, #cc0000) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.filters-container #reset-filters:hover {
    background: linear-gradient(135deg, #cc0000, #ff3333) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(255, 51, 51, 0.6) !important;
}

/* --- 2. PRODUCT GRID LAYOUT --- */
.product-grid {
    display: grid;
    gap: 24px; /* Better spacing */
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* --- 3. PRODUCT CARD STYLING --- */
.product-card {
    background: linear-gradient(135deg, #1a1f2e 0%, #1e2435 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    animation: cardFadeIn 0.6s ease-out backwards;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05), rgba(155, 89, 182, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 51, 51, 0.4);
    border-color: rgba(255, 51, 51, 0.6);
}

.product-card:active {
    transform: translateY(-4px) scale(0.98);
}

/* Image section - FIXED 3:4 ratio */
.product-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #28304a 0%, #1f2534 100%);
}

.product-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .product-card-image::after {
    opacity: 0.5;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
}

.product-card:hover .product-card-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1);
}


/* Card body - ULTRA COMPACT */
.product-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

/* Title - BIGGER TEXT & ULTRA COMPACT */
.product-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 40px;
    max-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #fff;
    transition: color 0.3s ease;
    margin-bottom: 3px;
}

.product-card:hover .product-card-title {
    color: #ff3333;
}

/* Type badge - BIGGER & ULTRA COMPACT */
.product-card-type {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    color: #aaa;
    transition: all 0.3s ease;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-card:hover .product-card-type {
    opacity: 1;
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

/* Price - BIGGER & ULTRA COMPACT - GREEN (NORMAL) */
.product-card-price {
    font-size: 24px;
    font-weight: 800;
    color: #00ff88;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-card-price {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

/* Button - BIGGER RED THEME */
.product-card-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-card-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-card-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.6);
}

.product-card-btn:active {
    transform: translateY(0);
}

/* ✅ MISSING STYLES - Match zones.js class names */
.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #28304a 0%, #1f2534 100%);
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .product-image::after {
    opacity: 0.5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1);
}

.product-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.product-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 3px 0;
    min-height: 40px;
    max-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #ff3333;
}

.product-type {
    font-size: 13px;
    opacity: 0.8;
    color: #aaa;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-card:hover .product-type {
    opacity: 1;
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.5);
}

.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #00ff88;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

.product-price .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 17px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.product-price .discount-price {
    color: #00d4ff !important;
    font-size: 24px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    font-weight: 900;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.6);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .product-grid {
        gap: 16px;
    }
    
    .product-card-body,
    .product-info {
        padding: 10px;
        gap: 4px;
    }
    
    .product-card-title,
    .product-title {
        font-size: 14px;
        min-height: 34px;
        max-height: 34px;
    }
    
    .product-card-type,
    .product-type {
        font-size: 11px;
    }
    
    .product-card-price,
    .product-price {
        font-size: 18px;
    }
    
    .product-card-btn,
    .add-to-cart-btn {
        padding: 8px;
        font-size: 12px;
    }
}

/* --- 4. PROMOTION FLAGS & TIMERS --- */
.promotion-flag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--neon-red);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
    animation: pulse-red 1.5s infinite;
}

.countdown-timer {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 8, 68, 0.95), rgba(255, 51, 102, 0.9));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    z-index: 2;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(255, 8, 68, 0.4);
    letter-spacing: 0.5px;
}

/* --- 5. LOADING SKELETONS --- */
.product-card-skeleton {
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark-gray);
}

.skeleton-img {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.skeleton-text {
    height: 20px;
    width: 80%;
    margin: 1rem 1rem 0.5rem 1rem;
}

.skeleton-text-short {
    height: 16px;
    width: 50%;
    margin: 0 1rem 1rem 1rem;
}

.skeleton-price {
    height: 24px;
    width: 30%;
    margin: 0.5rem 1rem 1rem 1rem;
}

/* --- 6. COUPON MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-dark-gray);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

#coupon-code-input {
    flex-grow: 1;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #555;
    background: #333;
    color: var(--text-primary);
    font-size: 1rem;
}

#coupon-message {
    margin-top: 1rem;
    font-weight: 600;
    min-height: 1.2em;
}

#coupon-message.success { color: var(--green); }
#coupon-message.error { color: var(--neon-red); }

#coupon-checkout-btn {
    margin-top: 1rem;
    width: 100%;
}

/* --- 7. ANIMATIONS --- */
@keyframes pulse-green {
    0% { text-shadow: 0 0 3px var(--green); }
    50% { text-shadow: 0 0 10px var(--green); }
    100% { text-shadow: 0 0 3px var(--green); }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 5px var(--neon-red); }
    50% { box-shadow: 0 0 15px var(--neon-red); }
    100% { box-shadow: 0 0 5px var(--neon-red); }
}

@keyframes pulse-purple {
    0% { box-shadow: 0 0 15px var(--purple); }
    50% { box-shadow: 0 0 30px var(--purple); }
    100% { box-shadow: 0 0 15px var(--purple); }
}

/* --- 8. PRODUCT DETAIL PAGE - CYBER STYLE --- */
.product-detail-layout {
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.product-image-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.product-image-col img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 3px solid rgba(255, 51, 51, 0.3);
    box-shadow: 0 0 40px rgba(255, 51, 51, 0.4), 
                inset 0 0 50px rgba(255, 51, 51, 0.1);
    animation: cyberPulseImage 3s ease-in-out infinite;
    transition: all 0.5s ease;
}

@keyframes cyberPulseImage {
    0%, 100% { 
        box-shadow: 0 0 40px rgba(255, 51, 51, 0.4), 
                    inset 0 0 50px rgba(255, 51, 51, 0.1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(255, 51, 51, 0.7), 
                    inset 0 0 70px rgba(255, 51, 51, 0.2);
    }
}

.product-image-col:hover img {
    transform: scale(1.02);
    border-color: rgba(255, 51, 51, 0.6);
}

.product-info-col h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    line-height: 1.2;
}

.product-info-col .product-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2), rgba(155, 89, 182, 0.2));
    border: 2px solid rgba(255, 51, 51, 0.5);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tag:hover {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.4), rgba(155, 89, 182, 0.4));
    border-color: rgba(255, 51, 51, 0.8);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.product-info-col .pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(0, 0, 0, 0.3));
    border-radius: 12px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-info-col .pricing:hover {
    border-color: rgba(0, 255, 136, 0.5);
}

.product-info-col .pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 🎯 REFINED PRICING STYLES */
.product-info-col .pricing .original-price {
    font-size: 1.3rem;
    color: #666;
    text-decoration: line-through;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.product-info-col .pricing .discount-price {
    font-size: 2.4rem;
    color: #00ff88;
    font-weight: 800;
    display: block;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    line-height: 1.1;
}

.product-info-col .pricing .discount-price:hover {
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

/* Legacy support for old class names */
.product-info-col .price {
    font-size: 2.4rem;
    color: #00ff88;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    display: inline-block;
}

.product-info-col .price-old {
    font-size: 1.3rem;
    color: #666;
    text-decoration: line-through;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

/* Mobile responsive pricing */
@media (max-width: 768px) {
    .product-info-col .pricing .discount-price {
        font-size: 2rem;
    }
    
    .product-info-col .pricing .original-price {
        font-size: 1.1rem;
    }
    
    .product-info-col .price {
        font-size: 2rem;
    }
    
    .product-info-col .price-old {
        font-size: 1.1rem;
    }
}

.product-info-col .description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    white-space: pre-wrap;
    font-size: 16px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid #ff3333;
}

.product-info-col .btn {
    width: 100%;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.4);
    position: relative;
    overflow: hidden;
}

.product-info-col .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-info-col .btn:hover::before {
    width: 400px;
    height: 400px;
}

.product-info-col .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.7);
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
}

.recommendations {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid rgba(255, 51, 51, 0.3);
}

.recommendations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

.skeleton-img-large { width: 100%; aspect-ratio: 1/1; }
.skeleton-title { height: 50px; width: 80%; margin-bottom: 1.5rem; }
.skeleton-price-large { height: 60px; width: 40%; margin-bottom: 2rem; }
.skeleton-btn { height: 60px; width: 100%; border-radius: 12px; }

/* --- 9. ZONE-SPECIFIC HEADER COLORS --- */
body[data-zone="XBOX ZONE"] .zone-header {
    border-bottom-color: var(--green);
}

body[data-zone="XBOX ZONE"] .zone-header h1 {
    color: var(--green);
    text-shadow: 0 0 10px var(--green);
}

body[data-zone="PSN ZONE"] .zone-header {
    border-bottom-color: var(--blue);
}

body[data-zone="PSN ZONE"] .zone-header h1 {
    color: var(--blue);
    text-shadow: 0 0 10px var(--blue);
}

body[data-zone="DIGITAL ZONE"] .zone-header {
    border-bottom-color: var(--purple);
}

body[data-zone="DIGITAL ZONE"] .zone-header h1 {
    color: var(--purple);
    text-shadow: 0 0 10px var(--purple);
}

/* --- 10. BUNDLE CARD STYLING - ORANGE THEME --- */
.bundle-card {
    background: linear-gradient(135deg, #2a1e1e 0%, #2e2520 100%) !important;
    border: 2px solid rgba(255, 140, 0, 0.3) !important;
}

.bundle-card::before {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(255, 165, 0, 0.05)) !important;
}

.bundle-card:hover {
    border-color: rgba(255, 140, 0, 0.7) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.4) !important;
}

.bundle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff8c00, #ffb347);
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.5);
    animation: bounceIn 0.6s ease-out;
}

.bundle-card:hover .bundle-badge {
    animation: pulseOrange 1.5s ease-in-out infinite;
}

/* BUNDLE IMAGES - Split view showing both games */
.split-image-grid {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #2a1e1e 0%, #2e2520 100%);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.split-image-grid .split-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.split-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.bundle-card:hover .split-image-grid img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.bundle-card:hover .split-image-grid img:nth-child(1) {
    transform: scale(1.15) translateX(-2px);
}

.bundle-card:hover .split-image-grid img:nth-child(2) {
    transform: scale(1.15) translateX(2px);
}

.bundle-card:hover .bundle-badge ~ .product-image::after {
    opacity: 0.3;
}

/* Bundle info orange theme */
.bundle-card .product-title {
    color: #ffaa44;
    transition: color 0.3s ease;
}

.bundle-card:hover .product-title {
    color: #ff8c00;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.bundle-card .product-type {
    color: #ffaa44;
    opacity: 0.8;
}

.bundle-card:hover .product-type {
    color: #ff8c00;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.bundle-card .product-price {
    color: #ff8c00;
}

.bundle-card:hover .product-price {
    color: #ffaa44;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
}

.bundle-card .add-to-cart-btn {
    background: linear-gradient(135deg, #ff8c00 0%, #ffaa44 100%);
}

.bundle-card .add-to-cart-btn:hover {
    background: linear-gradient(135deg, #ffaa44 0%, #ff8c00 100%);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
}

.bundle-savings {
    color: #ff8c00;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    text-align: center;
    animation: pulseOrange 2s ease-in-out infinite;
}

/* Bundle button bigger */
.bundle-card .add-to-cart-btn {
    font-size: 13px;
}

/* Bundle type bigger */
.bundle-card .product-type {
    font-size: 12px;
    margin: 0;
}

.bundle-card-image-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
}

.bundle-card-image-mosaic.count-2 .bundle-image-wrapper:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.bundle-card-image-mosaic.count-3 .bundle-image-wrapper:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.bundle-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.bundle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9);
}

.bundle-card:hover .bundle-image-wrapper img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* --- 11. BUNDLE DETAIL PAGE - CREATIVE MODERN STYLE --- */
.bundle-container {
    margin-top: 85px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem 2rem 1.5rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.bundle-container::before {
    display: none;
}

.back-btn {
    display: none;
}

.bundle-details {
    animation: slideInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes slideInUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.bundle-header {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: none;
    overflow: visible;
}

.bundle-header::before {
    display: none;
}

.bundle-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(103, 126, 234, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bundle-header h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: textShine 3s infinite;
}

@keyframes textShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.bundle-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.bundle-original-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 700;
}

.bundle-price {
    font-size: 4rem;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: priceFloat 3s infinite ease-in-out;
    letter-spacing: -2px;
}

@keyframes priceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bundle-savings-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.add-bundle-btn {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(103, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.add-bundle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-bundle-btn:hover::before {
    width: 500px;
    height: 500px;
}

.add-bundle-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(103, 126, 234, 0.6);
}

.bundle-games-section {
    margin-top: 3rem;
}

.bundle-games-section h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.bundle-games-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
}

.bundle-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Enhanced Detailed Game Cards */
.bundle-game-card-detailed {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), rgba(0, 0, 0, 0.4));
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    animation: cardSlideIn 0.6s ease-out backwards;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bundle-game-card-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.bundle-game-card-detailed:hover::before {
    left: 100%;
}

.bundle-game-card-detailed:hover {
    border-color: rgba(255, 140, 0, 0.7);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(0, 0, 0, 0.5));
}

/* Game Number Badge */
.bundle-game-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff8c00, #ffaa44);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #000;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.6);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.6);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(255, 140, 0, 0.8);
    }
}

/* Game Image Section */
.bundle-game-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f2e, #0f1419);
}

.bundle-game-image-detailed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9);
}

.bundle-game-card-detailed:hover .bundle-game-image-detailed {
    transform: scale(1.15);
    filter: brightness(1);
}

.bundle-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bundle-game-overlay i {
    font-size: 48px;
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.bundle-game-card-detailed:hover .bundle-game-overlay {
    opacity: 1;
}

.bundle-game-card-detailed:hover .bundle-game-overlay i {
    transform: scale(1);
}

/* Game Content Section */
.bundle-game-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.bundle-game-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.bundle-game-card-detailed:hover .bundle-game-title {
    color: #ffaa44;
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.bundle-game-zone,
.bundle-game-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ffaa44;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    width: fit-content;
    transition: all 0.3s ease;
}

.bundle-game-zone i,
.bundle-game-type i {
    font-size: 10px;
}

.bundle-game-card-detailed:hover .bundle-game-zone,
.bundle-game-card-detailed:hover .bundle-game-type {
    background: rgba(255, 140, 0, 0.25);
    border-color: rgba(255, 140, 0, 0.5);
}

.bundle-game-description {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    flex-grow: 1;
}

/* Game Footer */
.bundle-game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    flex-wrap: wrap;
}

.bundle-game-price-tag {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bundle-game-price-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.bundle-game-price-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.bundle-game-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 8px;
    color: #ffaa44;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bundle-game-view-btn:hover {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.4), rgba(0, 0, 0, 0.5));
    border-color: rgba(255, 140, 0, 0.7);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    color: #fff;
}

.bundle-game-view-btn i {
    transition: transform 0.3s ease;
}

.bundle-game-view-btn:hover i {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .bundle-games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bundle-game-title {
        font-size: 1.1rem;
    }
    
    .bundle-game-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bundle-game-view-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== CREATIVE BUNDLE GAME CARDS ===== */
.bundle-game-minimal {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1a1f2e 0%, #1e2435 100%);
    border-radius: 25px;
    overflow: hidden;
    padding: 0;
    position: relative;
    animation: cardPopIn 0.6s ease-out backwards;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bundle-game-minimal:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(-10px) rotate(2deg);
    border-color: rgba(103, 126, 234, 0.5);
}

@keyframes cardPopIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Number Badge - Creative Gradient */
.bundle-game-number-minimal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.5);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Image Section - Dynamic */
.bundle-game-image-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bundle-game-img-minimal {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: brightness(0.95);
}

.bundle-game-minimal:hover .bundle-game-img-minimal {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1);
}

.bundle-game-image-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bundle-game-minimal:hover .bundle-game-image-section::after {
    opacity: 1;
}

/* Info Section - Spacious & Colorful */
.bundle-game-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

.bundle-game-name-minimal {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Tags - Colorful Badges */
.bundle-game-tags-minimal {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.bundle-tag-minimal {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(103, 126, 234, 0.3);
}

.bundle-tag-minimal i {
    font-size: 10px;
}

.bundle-tag-minimal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 126, 234, 0.5);
}

/* Description - Modern Typography */
.bundle-game-desc-minimal {
    border-top: 2px solid #f0f0f0;
    border-bottom: none;
    padding: 1rem 0 0 0;
    margin-top: 0.5rem;
}

.bundle-desc-title {
    font-size: 10px;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 0.7rem 0;
}

.bundle-game-desc-minimal p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
    margin: 0;
}

/* Price Section - Eye-Catching */
.bundle-game-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.3);
}

.bundle-price-label-minimal {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bundle-price-value-minimal {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* View Details Button - Modern CTA */
.bundle-view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(103, 126, 234, 0.4);
}

.bundle-view-details-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(103, 126, 234, 0.6);
}

.bundle-view-details-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.bundle-view-details-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsive - Compact & Minimalist */
@media (max-width: 768px) {
    /* Container */
    .bundle-container {
        padding: 1rem 0.8rem;
        margin-top: 70px;
    }
    
    .bundle-container::before {
        display: none; /* Remove floating animation on mobile */
    }
    
    /* Back button */
    .back-btn {
        padding: 6px 14px;
        font-size: 12px;
        margin-bottom: 1rem;
    }
    
    /* Header */
    .bundle-header {
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .bundle-badge-large {
        padding: 4px 12px;
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .bundle-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }
    
    /* Pricing */
    .bundle-pricing {
        padding: 1rem;
        gap: 10px;
        margin-bottom: 1rem;
        border-radius: 12px;
    }
    
    .bundle-original-price {
        font-size: 1rem;
    }
    
    .bundle-price {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .bundle-savings-badge {
        padding: 4px 12px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    /* Add to cart button */
    .add-bundle-btn {
        padding: 14px;
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    /* Section title */
    .bundle-games-section {
        margin-top: 1.5rem;
    }
    
    .bundle-games-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .bundle-games-section h2::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    /* Game cards grid */
    .bundle-games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Game cards */
    .bundle-game-minimal {
        border-radius: 15px;
    }
    
    .bundle-game-number-minimal {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 10px;
        right: 10px;
        animation: none; /* Stop spinning on mobile */
    }
    
    /* Image */
    .bundle-game-image-section {
        border-radius: 15px 15px 0 0;
    }
    
    .bundle-game-img-minimal {
        aspect-ratio: 16 / 9;
    }
    
    /* Info section */
    .bundle-game-info-section {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .bundle-game-name-minimal {
        font-size: 1.1rem;
        letter-spacing: -0.3px;
    }
    
    /* Tags */
    .bundle-game-tags-minimal {
        gap: 0.4rem;
    }
    
    .bundle-tag-minimal {
        padding: 4px 10px;
        font-size: 9px;
        letter-spacing: 0.3px;
    }
    
    .bundle-tag-minimal i {
        font-size: 8px;
    }
    
    /* Description */
    .bundle-game-desc-minimal {
        padding: 0.8rem 0 0 0;
        margin-top: 0.4rem;
    }
    
    .bundle-desc-title {
        font-size: 9px;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
    
    .bundle-game-desc-minimal p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    /* Price section */
    .bundle-game-price-section {
        padding: 0.8rem;
        margin-top: 0.8rem;
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .bundle-price-label-minimal {
        font-size: 9px;
    }
    
    .bundle-price-value-minimal {
        font-size: 1.3rem;
    }
    
    /* View button */
    .bundle-view-details-btn {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 0.5px;
        margin-top: 0.8rem;
        border-radius: 30px;
    }
    
    .bundle-view-details-btn i {
        font-size: 10px;
    }
}


/* Legacy styles for backward compatibility */
.bundle-game-card {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05), rgba(0, 0, 0, 0.3));
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bundle-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.bundle-game-card:hover::before {
    left: 100%;
}

.bundle-game-card:hover {
    border-color: rgba(255, 140, 0, 0.6);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.bundle-game-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 140, 0, 0.4);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.bundle-game-card:hover .bundle-game-image {
    border-color: rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}

.bundle-game-name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-game-description {
    color: #aaa;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.bundle-game-price {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.5);
    margin-top: auto;
}

.skeleton-game-card {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(255, 140, 0, 0.2);
}

/* --- 12. CREATIVE ANIMATIONS --- */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px var(--neon-red);
    }
    50% {
        text-shadow: 0 0 20px var(--neon-red), 0 0 30px var(--neon-red);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseOrange {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 140, 0, 0.8);
    }
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.5);
    }
}

.product-card:hover .product-card-price,
.product-card:hover .product-price {
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger animation for product grid */
.product-grid .product-card {
    animation-delay: calc(var(--index) * 0.1s);
}

.product-grid .product-card:nth-child(1) { --index: 0; }
.product-grid .product-card:nth-child(2) { --index: 1; }
.product-grid .product-card:nth-child(3) { --index: 2; }
.product-grid .product-card:nth-child(4) { --index: 3; }
.product-grid .product-card:nth-child(5) { --index: 4; }
.product-grid .product-card:nth-child(n+6) { --index: 5; }

/* Scroll-triggered animation */
@media (prefers-reduced-motion: no-preference) {
    .product-card {
        animation: cardFadeIn 0.6s ease-out backwards;
    }
}

/* Enhanced promotion animation - CREATIVE RIBBON BADGE */
.promo-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 25%, #ff0844 50%, #8a2be2 75%, #ff0844 100%);
    background-size: 400% 400%;
    color: #fff;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 900;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    transform: rotate(-3deg);
    transform-origin: top left;
    box-shadow: 
        0 8px 25px rgba(255, 8, 68, 0.6),
        0 0 40px rgba(138, 43, 226, 0.4),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3),
        inset 0 2px 5px rgba(255, 255, 255, 0.3);
    animation: wildBadgeGradient 8s ease infinite, ribbonWave 4s ease-in-out infinite;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    border-top: 3px solid rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

@keyframes wildBadgeGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.promo-badge::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 15px 0 0;
    border-color: #990022 transparent transparent transparent;
    filter: brightness(0.6);
    animation: foldPulse 4s ease-in-out infinite;
}

@keyframes foldPulse {
    0%, 100% { filter: brightness(0.6); }
    50% { filter: brightness(0.8); }
}

.promo-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
    animation: badgeShine 2.5s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

@keyframes shakeBadge {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10%, 30% { transform: translateX(-2px) rotate(-1deg); }
    20%, 40% { transform: translateX(2px) rotate(1deg); }
}

@keyframes ribbonWave {
    0%, 100% { 
        transform: rotate(-3deg) translateY(0); 
        box-shadow: 
            0 8px 25px rgba(255, 8, 68, 0.6),
            0 0 40px rgba(138, 43, 226, 0.4),
            inset 0 -2px 5px rgba(0, 0, 0, 0.3),
            inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: rotate(-2deg) translateY(-3px); 
        box-shadow: 
            0 12px 30px rgba(255, 8, 68, 0.7),
            0 0 50px rgba(138, 43, 226, 0.6),
            inset 0 -2px 5px rgba(0, 0, 0, 0.3),
            inset 0 2px 5px rgba(255, 255, 255, 0.4);
    }
}

@keyframes badgeShine {
    0% { 
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        transform: translateX(200%);
        opacity: 0;
    }
}

.promo-label {
    font-size: 13px;
    font-weight: 900;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(255, 8, 68, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    line-height: 1;
    animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { 
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.8),
            0 0 15px rgba(255, 8, 68, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% { 
        text-shadow: 
            0 0 12px rgba(255, 255, 255, 1),
            0 0 25px rgba(138, 43, 226, 0.8),
            0 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.promo-countdown {
    font-size: 10px;
    opacity: 0.95;
    font-weight: 700;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    line-height: 1;
}
