/* ==================== LUXURY PREMIUM DESIGN ==================== */

/* Pulse Animation for Warning Icon */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Premium Colors */
    --gold: #d4af37;
    --gold-light: #f0d896;
    --gold-dark: #8b7500;
    --silver: #c0c0c0;
    --silver-light: #e8e8e8;
    --platinum: #e5e5e5;
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --dark-card-hover: #252525;
    --text-light: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --success: #10b981;
    --error: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

/* Custom Cursor */
#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5), inset 0 0 10px rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
}

#cursor::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Particles that follow cursor */
.particle {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
}

.particle-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--gold);
    opacity: 0.8;
}

/* ==================== VIP ULTIMATE LAUNCH BANNER ==================== */

.ultimate-launch-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(212, 175, 55, 0.3) 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
    animation: ultimate-glow 2.5s ease-in-out infinite;
}

@keyframes ultimate-glow {
    0%, 100% {
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 80px rgba(212, 175, 55, 0.7), inset 0 0 40px rgba(212, 175, 55, 0.3);
    }
}

.ultimate-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.ultimate-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f0d896);
    color: #0f0f0f;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    animation: badge-pulse 1.5s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.ultimate-banner-content h2 {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ultimate-pricing {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.price-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.original-price {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 800;
}

.original-price s {
    color: #ef4444;
    margin: 0 5px;
    text-decoration: line-through;
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
    font-weight: 900;
}

.launch-price {
    font-size: 16px;
    color: #10b981;
    font-weight: 700;
}

.launch-price strong {
    font-size: 38px;
    color: #d4af37;
    display: block;
    margin-top: 5px;
    font-weight: 900;
    animation: launch-price-pulse 1.2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
}

.launch-price strong s {
    color: #b0b0b0;
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
    font-weight: 900;
    animation: none !important;
    text-shadow: none !important;
    filter: none !important;
}

@keyframes launch-price-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 1));
    }
}

.countdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    font-size: 20px;
    font-weight: 800;
    color: #d4af37;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    animation: timer-glow 1s ease-in-out infinite;
}

.ultimate-countdown {
    font-size: 24px;
}

@keyframes timer-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

.ultimate-cta-btn {
    background: linear-gradient(135deg, #d4af37, #f0d896);
    color: #0f0f0f;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.ultimate-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.ultimate-cta-btn:active {
    transform: translateY(-1px);
}

/* Launch Deal Badges on Products */
.launch-deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8c8c);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    animation: deal-badge-pulse 1.2s ease-in-out infinite;
}

.launch-deal-badge.left {
    right: auto;
    left: 15px;
}

@keyframes deal-badge-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8);
    }
}

.price-old {
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-size: 14px;
    opacity: 0.7;
    margin-right: 10px;
}

.countdown-mini {
    display: block;
    font-size: 14px;
    color: #ff6b6b;
    font-weight: 700;
    margin-top: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    animation: mini-timer-pulse 1s ease-in-out infinite;
}

@keyframes mini-timer-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ==================== SPECIAL OFFER BANNER ==================== */

.special-offer-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(212, 175, 55, 0.25) 100%);
    border: 3px solid var(--gold);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.15);
    animation: banner-glow-special 2.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.special-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: banner-shine 2s infinite;
}

.special-offer-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.banner-emoji {
    font-size: 48px;
    animation: float-emoji 3s ease-in-out infinite;
    z-index: 2;
}

.banner-emoji:last-child {
    animation-delay: 1.5s;
}

.banner-content-special {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content-special h2 {
    color: var(--gold-light);
    font-size: 32px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    animation: text-pulse 2s ease-in-out infinite;
}

.banner-content-special p {
    color: var(--text-secondary);
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes float-emoji {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes text-pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.6), 0 0 40px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 0 35px rgba(212, 175, 55, 0.8), 0 0 60px rgba(255, 215, 0, 0.5);
    }
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    }
}

@keyframes banner-glow-special {
    0%, 100% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.4), inset 0 0 30px rgba(212, 175, 55, 0.15);
    }
    50% {
        box-shadow: 0 0 70px rgba(212, 175, 55, 0.6), inset 0 0 40px rgba(212, 175, 55, 0.25);
    }
}

@media (max-width: 768px) {
    .special-offer-banner {
        padding: 25px 20px;
        margin-bottom: 30px;
        gap: 15px;
        flex-direction: column;
    }
    
    .banner-content-special h2 {
        font-size: 24px;
    }
    
    .banner-content-special p {
        font-size: 14px;
    }
    
    .banner-emoji {
        font-size: 36px;
    }
}

/* ==================== NEW YEAR BANNER ==================== */

.newyear-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 215, 0, 0.15) 50%, rgba(212, 175, 55, 0.2) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
    animation: banner-glow 3s ease-in-out infinite;
}

.newyear-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: banner-shine 3s infinite;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.banner-icon {
    font-size: 36px;
    animation: bounce-icon 2s ease-in-out infinite;
}

.banner-text h2 {
    color: var(--gold-light);
    font-size: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.banner-text p {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes banner-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.2);
    }
}

@keyframes banner-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .newyear-banner {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .banner-content {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .banner-text h2 {
        font-size: 20px;
    }
    
    .banner-text p {
        font-size: 13px;
    }
    
    .banner-icon {
        font-size: 28px;
    }
}

/* ==================== HEADER ==================== */

header {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border-bottom: 2px solid var(--gold);
    padding: 20px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--silver) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glow-text 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.header-tagline {
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes glow-text {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
}

.logo-icon {
    font-size: 28px;
    margin-right: 10px;
}

/* ==================== MAIN CONTAINER ==================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro h2 {
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== PRODUCTS SECTION ==================== */

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    align-items: flex-start;
}

@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid;
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: visible;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Product Card Variants */
.product-card.silver {
    border-color: var(--silver);
    transform: scale(1) !important;
    padding: 30px !important;
}

.product-card.gold {
    border-color: #f59e0b;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2), 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: scale(1) !important;
    padding: 30px !important;
}

.product-card.platinum {
    border-color: #60a5fa;
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.3), 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: scale(1) !important;
    padding: 30px !important;
}

.product-card.ultimate {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transform: scale(1) !important;
    border-width: 3px;
    position: relative;
    padding: 30px !important;
    z-index: 10;
}

.ultimate-crown-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    z-index: 15;
}

.newcomer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 11;
    animation: newcomer-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

@keyframes newcomer-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(251, 191, 36, 0.9);
        transform: scale(1.05);
    }
}

.glow-ultimate {
    color: var(--gold) !important;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.badge-ultimate {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--dark-bg) !important;
    border: 2px solid var(--gold) !important;
}

.ultimate-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--dark-bg) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4) !important;
}

.ultimate-btn:hover {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.6) !important;
}

.product-card.silver {
    order: 1;
}

.product-card.gold {
    order: 2;
}

.product-card.platinum {
    order: 3;
}

.product-card.ultimate {
    order: 4;
}

/* Discount Label */
.discount-label {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 900;
    z-index: 25;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: discount-bounce 2s ease-in-out infinite;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.discount-label.gold-discount {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.discount-label.platinum-discount {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(167, 139, 250, 0.5);
}

@keyframes discount-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

/* Crown Badge */
.crown-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    z-index: 30;
    animation: crown-bob 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

@keyframes crown-bob {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* Hover Effects - ALLE DISABLED */
.product-card:hover {
    /* NO CHANGES */
}

/* Glow Effect on Hover */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                                rgba(212, 175, 55, 0.1) 0%, 
                                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.product-card:hover::after {
    opacity: 1;
}

/* Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-silver {
    background: rgba(192, 192, 192, 0.2);
    color: var(--silver);
    border: 1px solid var(--silver);
}

.badge-gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    animation: pulse-gold 2s infinite;
}

.badge-platinum {
    background: rgba(229, 229, 229, 0.2);
    color: var(--platinum);
    border: 1px solid var(--platinum);
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

/* Product Info */
.product-info h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card.silver h3 {
    color: var(--silver);
}

.product-card.gold h3 {
    color: var(--gold-light);
}

.product-card.platinum h3 {
    color: var(--platinum);
}

/* Glow Effects for Product Names */
.glow-silver {
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5), 
                 0 0 20px rgba(192, 192, 192, 0.3);
}

.glow-gold {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6), 
                 0 0 20px rgba(212, 175, 55, 0.4);
}

.glow-platinum {
    text-shadow: 0 0 10px rgba(229, 229, 229, 0.5), 
                 0 0 20px rgba(229, 229, 229, 0.3);
}

.product-price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-old {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--text-tertiary);
    opacity: 0.6;
    font-weight: 500;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.price-new {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: price-pulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.5);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    position: relative;
}

@keyframes price-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    }
    50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 40px rgba(212, 175, 55, 1));
    }
}

.product-card.silver .product-price {
    color: var(--silver);
}

.product-card.silver .price-new {
    color: var(--silver);
}

.product-card.gold .product-price {
    color: var(--gold);
}

.product-card.gold .price-new {
    color: var(--gold);
}

.product-card.platinum .product-price {
    color: var(--platinum);
}

.product-card.platinum .price-new {
    color: var(--platinum);
}

.product-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 60px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
    font-size: 14px;
}

.product-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.buy-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card.silver .buy-btn {
    background: var(--silver);
    color: var(--dark-bg);
}

.product-card.gold .buy-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.product-card.platinum .buy-btn {
    background: var(--platinum);
    color: var(--dark-bg);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Best Value Badge for Gold */
.best-value {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 24px;
    letter-spacing: 4px;
    animation: stars-bob 3s ease-in-out infinite;
    z-index: 30;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

@keyframes twinkle-stars {
    0%, 100% {
        opacity: 0.6;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(212, 175, 55, 1), 0 0 30px rgba(212, 175, 55, 0.8);
    }
}

@keyframes stars-bob {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ==================== BUY FORM ==================== */

.buy-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.buy-section h2 {
    color: var(--gold-light);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#buyForm {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

input, select, textarea {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid var(--gold);
    color: var(--text-light);
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(35, 35, 35, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border-color: var(--gold-light);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 36px;
}

select option {
    background: #1a1a1a;
    color: var(--text-light);
}

select option:hover {
    background: #2a2a2a;
}

input::placeholder {
    color: var(--text-tertiary);
}

.form-group small {
    color: var(--text-tertiary);
    font-size: 12px;
    margin-top: 5px;
}

.info-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--dark-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: help;
    margin-left: 8px;
}

.info-icon:hover .tooltip {
    display: block;
}

.tooltip {
    display: none;
    position: absolute;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 12px;
    width: 200px;
    z-index: 1000;
    margin-top: 5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 0.6s ease-in-out;
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn:active {
    transform: translateY(0px);
}

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

/* ==================== MODAL ==================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 20px;
}

.modal-header h2 {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
}

.close-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: rotate(90deg);
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body strong {
    color: var(--gold);
}

/* ==================== REVIEWS SECTION ==================== */

.reviews-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.reviews-section h2 {
    color: var(--gold-light);
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.review-author {
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
}

.review-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.review-date {
    color: var(--text-tertiary);
    font-size: 12px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== MESSAGES ==================== */

#messageBox {
    margin-bottom: 30px;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.success-message .emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.order-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.order-id {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px;
    border-radius: 6px;
    font-family: monospace;
    color: var(--gold);
    font-weight: bold;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%);
    border-left: 4px solid var(--gold);
    color: var(--text-light);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    animation: slideInRight 0.3s ease;
    z-index: 2000;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.error {
    border-left-color: var(--error);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .product-card.gold {
        transform: scale(1);
    }


    .buy-section {
        padding: 25px;
    }

    .modal-content {
        padding: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    h1 {
        font-size: 20px;
    }

    .buy-section {
        padding: 20px;
    }

    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

/* ==================== CONFIRMATION MODAL ==================== */

.confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
}

.confirmation-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.confirmation-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3), 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: slideDown 0.4s ease;
    pointer-events: auto;
}

.confirmation-content h3 {
    color: var(--gold-light);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.confirmation-details {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.confirmation-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.confirmation-item .label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.confirmation-item .value {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
}

.confirmation-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-confirm {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-confirm:active {
    transform: translateY(0);
}

.btn-cancel {
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cancel:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-2px);
}

.btn-cancel:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .confirmation-content {
        padding: 30px 20px;
    }

    .confirmation-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .confirmation-details {
        padding: 15px;
        margin-bottom: 20px;
    }

    .confirmation-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .confirmation-buttons {
        grid-template-columns: 1fr;
    }
}
