
.faux-panorama-container {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    background: #000;
    margin: 40px 0;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.faux-panorama-container:active {
    cursor: grabbing;
}

.faux-panorama-track {
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
}

.faux-panorama-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    pointer-events: none;
    border-right: 2px solid rgba(255,255,255,0.1);
}

.faux-panorama-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: var(--fs-sm);
    font-weight: 500;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
    z-index: 2;
}

.faux-panorama-container:hover .faux-panorama-overlay {
    opacity: 0; /* Fade out when user interacts */
}

@media (max-width: 768px) {
    .faux-panorama-container {
        height: 400px;
    }
}
