.location-box {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-inner.flipped {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    width: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid rgba(139, 157, 131, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: rotateY(180deg);
    min-height: 100%;
}

.artistic-frame {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gallery-card {
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(139, 157, 131, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.photo-number {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #8b9d83;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.fade-edges {
    position: relative;
}

.fade-edges::before,
.fade-edges::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 10;
}

.fade-edges::before {
    left: 0;
    background: linear-gradient(to right, rgb(254, 252, 232), transparent);
}

.fade-edges::after {
    right: 0;
    background: linear-gradient(to left, rgb(254, 252, 232), transparent);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.scroll-hint {
    animation: float 2.5s ease-in-out infinite;
}

.parallax-wrapper {
    scroll-padding: 24px;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 12px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(139, 157, 131, 0.3);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #8b9d83;
    width: 24px;
    border-radius: 4px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}