/* Cart Item Actions */
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .cart-item-actions {
        gap: 1.5rem;
    }
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.quantity-btn {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F7;
    border: none;
    border-radius: 0.5rem;
    color: #131313;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #2A5291;
    color: #fff;
}

.item-quantity {
    font-size: 1.125rem;
    font-weight: 700;
    color: #131313;
    min-width: 1.5rem;
    text-align: center;
}

/* Remove Button */
.btn-remove-item {
    padding: 0.25rem;
    color: #D1D5DB;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-remove-item:hover {
    color: #EF4444;
}

.btn-remove-item svg {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 1024px) {
    .btn-remove-item svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Update Cart Button */
.btn-update-cart {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #131313;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-update-cart:hover {
    border-color: #2A5291;
    color: #2A5291;
}

.btn-update-cart.updated {
    background: #ECFDF5;
    border-color: #10B981;
    color: #10B981;
}

/* Cart Decoration (plus sign between items) */
.cart-decoration-plus {
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 20;
}

@media (max-width: 1023px) {
    .cart-decoration-plus {
        display: none;
    }
}

/* Form Message */
#form-message.success {
    background-color: #ECFDF5;
    color: #10B981;
    border: 1px solid #10B981;
}

#form-message.error {
    background-color: #FEF2F2;
    color: #EF4444;
    border: 1px solid #EF4444;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: #2A5291;
    color: #fff;
    border-radius: 1rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(42, 82, 145, 0.3);
    z-index: 100;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-notification.success {
    background: #10B981;
}

.toast-notification.error {
    background: #EF4444;
}


.glass-nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Unique Styling specific to footer only */
.g-footer-nav-underline {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.g-footer-nav-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 0.3;
}