.hero {
    min-height: auto;
    padding: 8rem 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('../../assets/images/backgrounds/mountainbg.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 600px;
    padding: 0 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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.6), 0 0 40px rgba(0, 0, 0, 0.);
    line-height: 1.1;
    transition: all 0.2s;
}

.hero h1:hover {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(139, 92, 246, 0.9);
}

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

.hero-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .tagline {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    animation: fadeIn 1.5s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-text {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    animation: fadeIn 1.5s ease-out 0.6s forwards;
    opacity: 0;
}

.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: 1.25rem;
}

.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;
    }
}