/* 🔥 STUNNING BUY NOW TILE - PREMIUM WOW FACTOR DESIGN */

/* Ultra Premium Buy Now Price Item */
.buy-now-price-item {
    grid-column: 1 / -1 !important;
    margin: 2rem 0 !important;
    order: -1 !important;
    position: relative !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, #000000 0%, #1a1a1a 50%, #000000 100%) !important;
    border: none !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    padding: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.buy-now-price-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 100px rgba(255, 107, 53, 0.2) !important;
}

/* Animated Border Gradient */
.buy-now-price-item::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 3px !important;
    background: linear-gradient(45deg, #ff0844, #ffb199, #ff6b35, #ff0844, #ffb199) !important;
    background-size: 400% 400% !important;
    border-radius: 24px !important;
    z-index: -1 !important;
    animation: borderGlow 4s ease-in-out infinite !important;
}

@keyframes borderGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
    50% { 
        background-position: 100% 100%;
        filter: brightness(1.4);
    }
    75% { 
        background-position: 0% 100%;
        filter: brightness(1.2);
    }
}

/* Premium Inner Content */
.buy-now-price-value {
    position: relative !important;
    background: linear-gradient(135deg, 
        rgba(255, 8, 68, 0.9) 0%, 
        rgba(255, 107, 53, 0.95) 25%,
        rgba(255, 177, 153, 0.9) 50%,
        rgba(255, 107, 53, 0.95) 75%,
        rgba(255, 8, 68, 0.9) 100%) !important;
    background-size: 300% 300% !important;
    animation: premiumGradient 5s ease-in-out infinite !important;
    padding: 2.5rem 3rem !important;
    border-radius: 21px !important;
    margin: 3px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

@keyframes premiumGradient {
    0%, 100% { background-position: 0% 50%; }
    33% { background-position: 100% 50%; }
    66% { background-position: 50% 100%; }
}

/* Floating Particles Effect */
.buy-now-price-value::after {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 1px) !important;
    background-size: 50px 50px, 80px 80px, 60px 60px, 70px 70px !important;
    animation: floatingParticles 8s linear infinite !important;
    pointer-events: none !important;
}

@keyframes floatingParticles {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { opacity: 1; }
    100% { transform: translateY(-20px) rotate(360deg); opacity: 0.7; }
}

/* Stunning Typography */
.buy-now-amount {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 3.5rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 1rem !important;
    letter-spacing: -0.03em !important;
    position: relative !important;
    z-index: 2 !important;
    animation: priceGlow 3s ease-in-out infinite !important;
    background: linear-gradient(45deg, #ffffff, #ffe5d9, #ffffff) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

@keyframes priceGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    }
    50% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
    }
}

/* Epic Badge Design */
.buy-now-badge {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3) !important;
    animation: badgeFloat 4s ease-in-out infinite !important;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.buy-now-badge::before {
    content: "💎" !important;
    font-size: 2rem !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6)) !important;
    animation: diamondSpin 6s linear infinite !important;
}

.buy-now-badge::after {
    content: "⚡" !important;
    font-size: 1.5rem !important;
    animation: lightningPulse 2s ease-in-out infinite !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.8)) !important;
}

@keyframes diamondSpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes lightningPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.8));
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2);
        filter: drop-shadow(0 0 15px rgba(255, 255, 0, 1));
    }
}

/* Override Label Styling */
.buy-now-price-item .label {
    position: absolute !important;
    top: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(135deg, #ff0844 0%, #ff6b35 100%) !important;
    color: white !important;
    font-weight: 900 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px !important;
    margin: 0 !important;
    z-index: 3 !important;
    box-shadow: 
        0 8px 25px rgba(255, 8, 68, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    animation: labelPulse 3s ease-in-out infinite !important;
}

@keyframes labelPulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 8, 68, 0.4),
            0 0 0 2px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translateX(-50%) scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 8, 68, 0.6),
            0 0 0 3px rgba(255, 255, 255, 0.2);
    }
}

.buy-now-price-item .label::before {
    content: "🚀" !important;
    font-size: 1rem !important;
    margin-right: 0.5rem !important;
    animation: rocketBounce 2s ease-in-out infinite !important;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-2px) rotate(5deg); }
    75% { transform: translateY(-1px) rotate(-3deg); }
}

/* Premium Hover Effects */
.buy-now-price-item:hover .buy-now-amount {
    animation-duration: 1.5s !important;
    transform: scale(1.05) !important;
}

.buy-now-price-item:hover .buy-now-badge::before {
    animation-duration: 3s !important;
}

.buy-now-price-item:hover .buy-now-badge::after {
    animation-duration: 1s !important;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .buy-now-amount {
        font-size: 2.5rem !important;
    }
    
    .buy-now-badge {
        font-size: 1rem !important;
        gap: 0.75rem !important;
    }
    
    .buy-now-badge::before {
        font-size: 1.5rem !important;
    }
    
    .buy-now-badge::after {
        font-size: 1.2rem !important;
    }
    
    .buy-now-price-value {
        padding: 2rem 2rem !important;
    }
}

@media (max-width: 480px) {
    .buy-now-amount {
        font-size: 2rem !important;
    }
    
    .buy-now-price-value {
        padding: 1.5rem 1.5rem !important;
    }
    
    .buy-now-price-item .label {
        font-size: 0.7rem !important;
        padding: 0.4rem 1rem !important;
    }
}

/* Performance Optimization */
.buy-now-price-item,
.buy-now-price-value,
.buy-now-amount,
.buy-now-badge {
    will-change: transform !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .buy-now-price-item,
    .buy-now-price-value,
    .buy-now-amount,
    .buy-now-badge,
    .buy-now-price-item .label,
    .buy-now-badge::before,
    .buy-now-badge::after {
        animation: none !important;
        transition: none !important;
    }
}
