/* ============================================== */
/* ADDITIONAL RESPONSIVE STYLES */
/* Use this file only for styles that don't exist in style.css */
/* ============================================== */

/* Checkout modal specific responsive styles */
@media (max-width: 768px) {
    .checkout-modal .modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .checkout-steps::before {
        left: 5%;
        right: 5%;
    }
    
    .step-actions {
        flex-direction: column;
    }
    
    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
    }
}

/* Small checkout adjustments */
@media (max-width: 576px) {
    .checkout-modal .modal-body {
        padding: 15px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .checkout-step h4 {
        font-size: 1.1rem;
    }
}

/* Extra safety for mobile bottom buttons */
@media (max-height: 700px) {
    .cart-sidebar {
        height: calc(100vh - 40px);
    }
    
    .cart-items {
        max-height: calc(100vh - 250px);
    }
    
    .cart-footer {
        padding-top: 15px;
        padding-bottom: 30px !important;
    }
}

/* Landscape mode fixes */
@media (max-width: 768px) and (orientation: landscape) {
    #main-nav.active {
        max-height: 300px;
    }
    
    .cart-sidebar {
        height: 100vh;
    }
    
    .cart-items {
        max-height: 60vh;
    }
}