.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-image-faded {
    position: relative;
    overflow: hidden;
}

.bg-image-faded .bg-img {
    position: absolute;
    opacity: 0.25;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero .tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--color-text-muted);
}

.hero-text {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
    color: var(--color-text-medium);
}

.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(0, 0, 0, 0.15);
    min-height: 400px;
}

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

.reel-skeleton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 4rem;
}

.reel-skeleton .skeleton-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

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