﻿.cart-item-card {
    border: 1px solid #f1f1f1;
    transition: 0.2s ease;
}

    .cart-item-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

.cart-product-image {
    max-height: 90px;
    object-fit: contain;
}

.quantity-box-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 8px 10px;
    width: 64px;
    margin: 0 auto;
}

.qty-triangle-btn {
    border: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
    padding: 0;
}

    .qty-triangle-btn:hover {
        color: #198754;
        transform: scale(1.12);
    }

.qty-number-modern {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    min-width: 24px;
    text-align: center;
}

.remove-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff0f0;
    color: #dc3545;
    border: none;
    font-size: 24px;
    line-height: 1;
    transition: 0.2s ease;
}

    .remove-btn:hover {
        background-color: #dc3545;
        color: #fff;
    }

.summary-card {
    border: 1px solid #f1f1f1;
    position: sticky;
    top: 20px;
}

.cart-empty-box {
    background: #fff;
    border: 1px solid #f1f1f1;
}

.address-select-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    background: #fff;
}

    .address-select-card:hover {
        border-color: #198754;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .address-select-card input {
        margin-top: 5px;
    }