/* Hero Block */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
}

/* Content */
.hero__content {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
    padding: var(--space-xl) 0;
}

.hero__text {
    text-align: center;
}

.hero__subtitle {
    margin-bottom: var(--space-sm);
}

.hero__title {
    margin-bottom: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    margin-top: var(--space-lg);
}

/* Featured Product */
.hero__featured {
    text-align: center;
}

.hero__featured-label {
    margin-bottom: var(--space-md);
}

.hero__featured-product {
    max-width: 300px;
    margin: 0 auto;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: var(--border-width) solid var(--color-text);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.hero__scroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero__scroll-icon {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(-3px);
    }

    60% {
        transform: rotate(45deg) translateY(-1px);
    }
}

/* Desktop Layout */
@media (min-width: 769px) {
    .hero__content {
        grid-template-columns: 1fr auto;
        text-align: left;
    }

    .hero__text {
        text-align: left;
    }

    .hero__title {
        margin-left: 0;
        margin-right: 0;
    }

    .hero__featured {
        text-align: center;
    }
}

/* Large Desktop */
@media (min-width: 1025px) {
    .hero__content {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-xxl);
    }

    .hero__featured-product {
        max-width: 350px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .hero__content {
        gap: var(--space-lg);
    }

    .hero__title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero__featured-product {
        max-width: 250px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero__scroll-icon {
        animation: none;
    }

    .hero__scroll-btn:hover {
        transform: none;
    }
}