/* Checkout Card Styles */
.checkout-card {
    background: linear-gradient(145deg, #0a0a0a, #050505);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 30px auto 0;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logo/Title Area */
.checkout-header {
    margin-bottom: 30px;
    position: relative;
}

.checkout-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.checkout-logo span {
    color: #ff0000;
}

.checkout-badge {
    display: inline-block;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ffcccc;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Price Area */
.checkout-price-container {
    margin: 30px 0;
}

.old-price-card {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    /* White text */
    text-decoration: line-through;
    margin-bottom: 5px;
    font-weight: 500;
    opacity: 0.9;
}

.old-val {
    color: #ff0000;
    /* Hot Red */
    font-weight: 700;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.price-label {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
}

.price-value {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #00ff00;
    /* Light Green */
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
    /* Green glow */
}

.price-sub {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Area */
.checkout-btn {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #12b400 0%, #0e9100 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 10px 30px rgba(0, 255, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 40px rgba(0, 255, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.checkout-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .checkout-card {
        padding: 30px 20px;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .checkout-logo {
        font-size: 2rem;
    }
}