/**
 * NF-Digital Shop - Cart Page Styles
 * Versteckt WooCommerce Notices auf der Cart-Seite
 */

/* Hide all WooCommerce notices on cart page */
body.woocommerce-cart .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-error,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce .woocommerce-message,
body.woocommerce-cart .woocommerce .woocommerce-error,
body.woocommerce-cart .woocommerce .woocommerce-info {
    display: none !important;
}

/* Cart Notification Styles */
.nfds-cart-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: #4caf50;
    color: white;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    transition: right 0.3s ease;
    max-width: 300px;
}

.nfds-cart-notification.show {
    right: 20px;
}

/* Lightbox Styles */
.nfds-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nfds-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.nfds-lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
}

.nfds-lightbox .close:hover {
    color: #f0f0f0;
}

/* Sticky Add to Cart for Mobile */
.sticky-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.sticky-add-to-cart .single_add_to_cart_button {
    width: 100%;
    max-width: 400px;
}