/* Watch & Shop CSS */
.watch-shop-header {
    text-align: center;
    margin-bottom: 40px;
}
.watch-shop-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-charcoal);
    margin-bottom: 10px;
}
.watch-shop-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--color-maroon) var(--color-soft-sand);
}
.watch-shop-rail::-webkit-scrollbar {
    height: 6px;
}
.watch-shop-rail::-webkit-scrollbar-track {
    background: var(--color-soft-sand);
}
.watch-shop-rail::-webkit-scrollbar-thumb {
    background-color: var(--color-maroon);
    border-radius: 10px;
}
.vuv-reel-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: transparent;
}
.vuv-reel-poster {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--color-charcoal);
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}
.vuv-reel-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.5s ease;
}
.vuv-reel-card:hover .vuv-reel-poster img {
    opacity: 1;
    transform: scale(1.02);
}
.vuv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}
.vuv-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-white);
}
.vuv-play-icon {
    color: var(--color-maroon);
    font-size: 24px;
    margin-left: 4px;
}
.vuv-reel-card-info {
    padding: 15px 0;
}
.vuv-reel-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vuv-reel-card-price {
    font-family: var(--font-inter);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-charcoal);
}
.watch-shop-footer {
    text-align: center;
}

@media (min-width: 768px) {
    .watch-shop-rail {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        overflow-x: visible;
        gap: 30px;
    }
    .vuv-reel-card {
        flex: auto;
    }
}

/* Dedicated Page Overrides */
.watch-shop-page-header {
    text-align: center;
    padding: 60px 0 40px;
}
.watch-shop-page-header .page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-maroon);
    margin-bottom: 15px;
}
.watch-shop-rail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    overflow-x: visible;
}
.watch-shop-empty {
    text-align: center;
    padding: 60px 20px;
}

/* Video Error State */
.vuv-video-error {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-charcoal);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-inter);
    padding: 20px;
}
