/*your custom css goes here*/

.max-w-xxl {
    max-width: 1200px;
    margin-bottom: 50px;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 14px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 15px;
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    padding: 0 18px;
    white-space: nowrap;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 1;
    line-height: 2;
}

.label {
    color: #888;
    font-size: 14px;
}

.step.active .circle {
    background-color: #5b0fff;
    color: white;
}

.step.active .label {
    color: #000;
    font-weight: 500;
}

.line {
    position: absolute;
    top: 16px;
    left: 100%;
    width: 60px;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.step.active + .step .line {
    background-color: #ddd;
}

.step:last-child .line {
    display: none;
}

@media (max-width: 767px) {
    .stepper {
        gap: 30px;
    }

    .stepper .step {
        padding: 0 10px;
        flex-flow: column;
        justify-content: center;
    }

    .stepper .line {
        display: none;
    }
}

.card-payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--soft-primary);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    background: var(--dark);
}

.card-payment-method-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Premium Design System Tokens */
:root {
    --premium-navy: #0F172A;
    --premium-gold: #D4AF37;
    --premium-orange: #FF4D00;
    --premium-bg: #F8FAFC;
    --premium-surface: rgba(255, 255, 255, 0.82);
    --premium-border: rgba(255, 255, 255, 0.12);
}

/* Glassmorphism Utilities */
.glass {
    background: var(--premium-surface);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--premium-border);
}

/* Modern Card Utilities */
.premium-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Refined Product Grid */
.modern-product-card {
    border: 0;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s ease;
}

.modern-product-card .img-container {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
}

.modern-product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover img {
    transform: scale(1.08);
}
