/* ============================================
   HERO SECTION — Homepage
   ============================================ */

.hero-section {
    min-height: 100svh;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 125, 0.1);
    background:
        radial-gradient(ellipse 100% 50% at 50% 100%, rgba(212, 175, 125, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 20% 20%, rgba(212, 175, 125, 0.05) 0%, transparent 60%),
        var(--primary-color);
}

.hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 25px 80px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 62px;
    font-weight: 400;
    color: white;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 260px;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.hero-btn--primary {
    background-color: var(--gold);
    color: var(--primary-color);
    border: 1px solid var(--gold);
}

.hero-btn--primary:active {
    background-color: var(--gold-light);
}

.hero-btn--secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-btn--secondary img {
    width: 15px;
    height: 15px;
    opacity: 0.85;
}

.hero-btn--secondary:active {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(212, 175, 125, 0.3);
    border-radius: 14px;
}

.hero-scroll-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gold);
    animation: heroScrollDot 2s ease-in-out infinite;
}

body:has(.cart-bar.active) .hero-scroll-indicator {
    bottom: 90px;
}

@keyframes heroScrollDot {
    0% { transform: translateY(-6px); opacity: 0.8; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(-6px); opacity: 0.8; }
}

/* ---- Responsive: Hero ---- */

@media (min-width: 600px) {
    .hero-title {
        font-size: 80px;
    }

    .hero-subtitle {
        font-size: 20px;
        max-width: 380px;
    }

    .hero-cta {
        flex-direction: row;
        max-width: none;
    }
}

@media (min-width: 900px) {
    .hero-section {
        padding-top: 88px;
    }

    .hero-title {
        font-size: 110px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 22px;
        max-width: 480px;
    }

    .hero-btn:hover {
        opacity: 0.9;
    }

    .hero-btn--primary:hover {
        background-color: var(--gold-light);
    }

    .hero-btn--secondary:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background-color: rgba(255, 255, 255, 0.05);
    }
}
