.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.collage-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.collage-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.75) 100%);
    z-index: 10;
    pointer-events: none;
}

.collage-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 200%;
}

.collage-row {
    display: flex;
    gap: 1.5rem;
    width: 200%;
    padding: 0.5rem 0;
}

.collage-row-1 {
    animation: collageScrollLeft 60s linear infinite;
    transform: translateY(-10px);
}

.collage-row-2 {
    animation: collageScrollLeft 50s linear infinite;
}

.collage-row-3 {
    animation: collageScrollLeft 70s linear infinite;
    transform: translateY(10px);
}

.collage-row img {
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.collage-row img.tall {
    width: 300px;
    height: 450px;
}

.collage-row img:not(.tall):not(.wide) {
    width: 340px;
    height: 340px;
}

.collage-row img.wide {
    width: 420px;
    height: 300px;
}

@keyframes collageScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 600px;
    padding: 0 4rem;
    text-align: left;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(139, 92, 246, 0.4);
    line-height: 1.1;
}

.hero h1 a {
    color: inherit;
    text-decoration: none;
}

.hero .tagline {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-text {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

.product-reel {
    margin-top: 3rem;
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    min-height: 400px;
    border: 2px solid var(--color-primary);
}

.product-reel.loaded .reel-skeleton {
    display: none;
}

.reel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.reel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
}

.reel-slide img {
    width: 350px;
    height: 350px;
    object-fit: contain;
    flex-shrink: 0;
}

.reel-info {
    text-align: left;
    margin-top: 0;
    max-width: 400px;
}

.reel-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    background: var(--color-primary);
    color: var(--color-text);
}

.reel-info h3 {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.reel-info p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.reel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 25px;
}

.reel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border-light);
    cursor: pointer;
    transition: background-color 0.3s;
}

.reel-dot:hover {
    background-color: var(--color-primary);
}

.reel-dot.active {
    background-color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .tagline {
        font-size: 1.4rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .collage-row img.tall {
        width: 160px;
        height: 240px;
    }
    
    .collage-row img:not(.tall):not(.wide) {
        width: 180px;
        height: 180px;
    }
    
    .collage-row img.wide {
        width: 220px;
        height: 160px;
    }
}

@media (max-width: 1200px) {
    .collage-row img.tall {
        width: 240px;
        height: 360px;
    }
    
    .collage-row img:not(.tall):not(.wide) {
        width: 280px;
        height: 280px;
    }
    
    .collage-row img.wide {
        width: 340px;
        height: 240px;
    }
}
