/* ------------------------------
   Quantity Buttons
-------------------------------*/
.quantity-buttons {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0rem;
    border: 3px solid var(--btnBgColor);
    border-radius: 3rem;
    z-index: 3;
}

.quantity-buttons button {
    background: var(--cardBgColor);
    color: var(--textColor);
    border: none;
    background: none;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

.quantity-buttons .increase,
.quantity-buttons .decrease {
    margin: -0.3rem 0rem;
    font-size: 1rem;
}

.quantity-buttons .quantity {
    min-width: 1.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

#wishlist-section {
    margin-bottom: 5rem;
}

.checkout-summary-container {
    position: absolute;
}