/* Checkout Page Styles */

/* Card Styling */
.border-custom {
    border: 1px solid #eee;
    border-radius: 8px;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.3rem;
}

.form-control {
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.15);
}

/* Order Summary Item */
.item-img-sm img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 1px solid #eee;
}

.small-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

.checkout-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Sticky Summary on Desktop */
@media (min-width: 992px) {
    .sticky-top {
        top: 100px;
        z-index: 100;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .sticky-top {
        position: static;
        z-index: auto;
    }
    
    /* Reorder columns if needed, though col-lg-7 first is standard */
}
