!-- ============================================ -->
<!-- FILE 1: shop-the-look.css -->
<!-- Save this as: shop-the-look.css -->
<!-- Upload to: /wp-content/themes/your-theme/ -->
<!-- ============================================ -->
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shop-the-look-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.video-gallery-container {
    position: relative;
    overflow: hidden;
}

.video-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.video-gallery::-webkit-scrollbar {
    display: none;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 9/16;
    min-width: 280px;
    flex-shrink: 0;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    color: white;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.shop-now-btn {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.shop-now-btn:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card:hover .play-indicator {
    opacity: 1;
}

.play-indicator::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

.auto-scroll-controls {
    text-align: center;
    margin-top: 20px;
}

.control-btn {
    background: #333;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: #555;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .video-card {
        min-width: 220px;
    }
    .product-title {
        font-size: 13px;
    }
    .shop-now-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .shop-the-look-section {
        padding: 30px 15px;
    }
    .video-gallery {
        gap: 12px;
    }
    .video-card {
        min-width: 180px;
    }
    .video-overlay {
        padding: 15px;
    }
}
*/
