/* Gallery Slider Shared Styles */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 6px solid #fff;
    background: #fff;
}
.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.gallery-slider::-webkit-scrollbar {
    display: none;
}
.gallery-slide {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}
.gallery-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0,0,0,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: none;
}
.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-dot:hover, .gallery-dot.active {
    background: #fff;
    transform: scale(1.2);
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: #D31789;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 11;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-slider-wrapper:hover .gallery-arrow {
    opacity: 1;
}
.gallery-arrow:hover {
    background: #D31789;
    color: #fff;
}
.gallery-arrow.prev { left: 20px; }
.gallery-arrow.next { right: 20px; }

@media (max-width: 768px) {
    .gallery-arrow { display: none; }
    .gallery-dots { display: none; }
    /* Mobile visual cue */
    .gallery-slider-wrapper::after {
        content: 'Swipe to see Studio Tour ➔';
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(255,107,157,0.9);
        color: white;
        padding: 5px 12px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        pointer-events: none;
        animation: fadeInOut 3s infinite;
        z-index: 10;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}
