/* LIGHTBOX STYLES */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    color: #fff;
    cursor: pointer;
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    transition: .2s;
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
    color: #ddd;
}


.local-product-videos video {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #000;
}

.video-box {
    width: 100%;
    overflow: hidden;
}

.bundle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.cart-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== Bundle Section Font Size Adjustments ===== */

.bundle-box h5 {
    font-size: 16px !important;
}

.bundle-item strong {
    font-size: 14px !important;
}

.bundle-item .badge {
    font-size: 10px !important;
    padding: 4px 7px;
}

.bundle-item .text-decoration-line-through,
.bundle-item .text-success,
.bundle-item .text-primary {
    font-size: 13px !important;
}

.bundle-item .price-highlight {
    font-size: 13px !important;
}

.add-bundle-btn {
    font-size: 13px !important;
    padding: 8px 10px;
}

.bundle-item {
    padding: 10px 14px !important;
}
