/* ============================================
   CHECKOUT - STYLES
   ============================================ */

/* ============================================
   1. STEPS
   ============================================ */

.checkout-steps {
    padding: 0 1rem;
}

.checkout-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.checkout-steps .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.checkout-steps .step.active .step-number {
    background: #1a3b8a;
    color: white;
}

.checkout-steps .step.completed .step-number {
    background: #28a745;
    color: white;
}

.checkout-steps .step-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

.checkout-steps .step.active .step-label {
    color: #1a3b8a;
    font-weight: 600;
}

.checkout-steps .step-line {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   2. SHIPPING METHOD
   ============================================ */

.shipping-method {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.shipping-method:hover {
    border-color: #1a3b8a;
}

.shipping-method.active {
    border-color: #1a3b8a;
    background: #f8f9fa;
}

.shipping-method input {
    display: none;
}

.shipping-method label {
    cursor: pointer;
    margin-bottom: 0;
}

.shipping-method i {
    color: #1a3b8a;
}

/* ============================================
   3. PAYMENT METHOD
   ============================================ */

.payment-method {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #1a3b8a;
}

.payment-method.active {
    border-color: #1a3b8a;
    background: #f8f9fa;
}

.payment-method input {
    display: none;
}

.payment-method label {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method i {
    color: #1a3b8a;
    font-size: 1.5rem;
    width: 30px;
}

/* ============================================
   4. SUCCESS PAGE
   ============================================ */

.success-icon i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ============================================
   5. RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .checkout-steps .step-label {
        font-size: 0.65rem;
    }
    
    .checkout-steps .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .payment-method label {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .checkout-steps {
        padding: 0;
    }
    
    .checkout-steps .step-label {
        display: none;
    }
    
    .checkout-steps .step-line {
        margin-bottom: 0.5rem;
    }
    
    .shipping-method {
        padding: 0.5rem;
    }
}