/* === TRUST SECTIONS (MARQUEE) === */

/* Marquee Container */
.marquee-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x pan-y;
}

.marquee-container::-webkit-scrollbar {
    display: none;
}

.marquee-container:active {
    cursor: grabbing;
}

/* Auto-scroll Track */
.marquee-track,
.auto-scroll-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

/* Marquee Items (Tall for screenshots) */
.marquee-item {
    flex: 0 0 240px;
    height: 420px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.marquee-item:active {
    transform: scale(0.98);
}

.marquee-item img,
.marquee-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Play Overlay */
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    pointer-events: none;
}

.play-icon-overlay svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

/* Trust Sections Container */
.trust-sections {
    margin: 40px 0;
}

.trust-section {
    margin-bottom: 40px;
}

/* Deliveries Slider */
#deliveries-slider,
#reviews-slider,
#payments-slider {
    margin-bottom: 40px;
}

/* Modal for Zoomed Images */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-zoomed-img {
    max-width: 95%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid var(--gold);
    background: #000;
}

.modal-zoomed-video {
    width: 100%;
    max-height: 80vh;
    border: 2px solid var(--gold);
    border-radius: 8px;
    background: #000;
}

/* Modal Navigation */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2010;
    transition: 0.2s;
}

.nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.nav-arrow:hover {
    background: var(--gold);
    color: #000;
}

.nav-prev {
    left: 15px;
}

.nav-next {
    right: 15px;
}

.close-zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2010;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-zoom-btn:active {
    transform: scale(0.95);
}
