@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600&display=swap');

.reels-section {
    padding: 20px 0;
    background: #ffffff;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reels-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reels-header {
    text-align: center;
    margin-bottom: 60px;
}

.reels-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    letter-spacing: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.reels-subtitle {
    font-family: 'Inter', sans-serif;
    color: #C5A059;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

/* Container Logic */
.reels-container {
    display: flex;
    gap: 30px;
    padding: 40px 5% 80px 5%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.reels-container::-webkit-scrollbar {
    display: none;
}

/* Staggered Card Design */
.reel-card {
    flex: 0 0 320px;
    height: 560px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Every second card is pushed down for modern look */
.reel-card:nth-child(even) {
    margin-top: 60px;
}

.reel-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Glassmorphism Overlay */
.reel-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.reel-info h3 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.reel-shop-btn {
    width: 40px;
    height: 40px;
    background: #C5A059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.4s;
}

.reel-shop-btn:hover {
    background: #fff;
    color: #C5A059;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .reel-card {
        flex: 0 0 280px;
        height: 480px;
    }

    .reel-card:nth-child(even) {
        margin-top: 0;
    }

    .reels-title {
        font-size: 2rem;
    }

    .reels-container {
        gap: 20px;
    }
}