/* Shopping Cart & Checkout Styles */

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.checkout-item-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.quantity-control {
    width: 150px;
}

.quantity-input {
    width: 40px;
    pointer-events: none;
    text-align: center;
}

.sticky-checkout {
    top: 100px;
    z-index: 10;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cart-item-img {
        width: 50px;
        height: 50px;
    }
}
