/* Cart Loading Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cart-spinner {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    border-width: 0.2em;
}

/* Cart Table Styling */
.cart-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0a892;
    padding-bottom: 1.2rem;
    border: none;
}

.cart-row td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.qty-input-group {
    background: #fdfdfd;
    border-radius: 50px;
    padding: 0.25rem;
    border: 1px solid #709d2d33;
    display: inline-flex;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.qty-input {
    background: transparent;
    border: none;
    font-weight: 700;
    color: var(--dark-text);
    width: 45px;
    text-align: center;
}

.remove-btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    background: #fdf2f2;
    transition: all 0.3s ease;
}

.remove-btn-icon:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(15deg);
}