/* ==========================================
    LUXURY ROUNDED HERO (Padded Outer Wrapper)
========================================== */
.hero-wrapper {
    padding: 20px;
    height: 100vh;
    min-height: 800px;
    background: var(--bg-main);
}

.hero-banner {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary-red);
    color: var(--text-light);
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #fdf6ec 0%, #f5e8d0 50%, #ede0c4 100%);
    z-index: 1;
}

.hero-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #1e1008;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(30, 16, 8, 0.65);
    line-height: 1.7;
    font-weight: 300;
}

/* Carousel inside Hero */
.home-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--text-dark);
}

.home-carousel-track {
    display: flex;
    width: 200%;
    height: 100%;
    animation: scrollLTR 50s linear infinite;
    will-change: transform;
}

.carousel-slide {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

@keyframes scrollLTR {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Trust Card (Overlapping Hero) */
.trust-card-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 20px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(199, 175, 107, 0.3);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(255, 58, 34, 0.08);
}

.trust-number {
    font-family: var(--font-accent);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.trust-text {
    text-align: left;
}

.trust-text h3 {
    font-size: 1.2rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-text p {
    font-size: 1rem;
    color: var(--text-grey);
    margin: 0;
    line-height: 1.6;
}

/* Home Category Sections */
.home-category-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(199, 175, 107, 0.3);
    padding-bottom: 20px;
}

.section-header-row h2 {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    color: var(--primary-red);
}

.view-all-link {
    font-weight: 600;
    color: var(--dark-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.view-all-link:hover {
    color: var(--primary-red);
}

/* FIX: Removed extra mobile vertical space below navbar —
   min-height:800px was forcing the hero taller than the viewport on short screens,
   creating a blank area between the hero card and the next section on mobile */
@media (max-width: 768px) {
    .hero-wrapper {
        min-height: unset;
        height: 100svh; /* svh = small viewport height, excludes browser chrome bar */
    }
}
