/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */
.home-page {}


/* ═══════════════════════════════════════
   HERO CAROUSEL
═══════════════════════════════════════ */
.hero-carousel {
    position: relative;
    height: calc(100vh - var(--header-height, 64px));
    min-height: 480px;
    max-height: 1060px;
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    pointer-events: none;
    transition: transform 9s ease;
}

.hero-slide.active .hero-slide-img {
    transform: scale(1.06);
}

/* Cinematic gradient overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.30) 52%,
        rgba(0,0,0,.06) 100%
    );
    z-index: 1;
}

/* Bottom vignette for indicators */
.hero-slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: linear-gradient(to top, rgba(0,0,0,.52), transparent);
    z-index: 1;
}


/* ── HERO TEXT ── */
.hero-overlay {
    position: absolute;
    bottom: 15%;
    left: 8%;
    max-width: 600px;
    z-index: 2;
    animation: heroFadeIn 0.95s cubic-bezier(0.4,0,0.2,1) both;
}

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

/* Eyebrow: line + tag */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.hero-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
    font-family: 'DM Sans', sans-serif;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.hero-overlay h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5.4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.03;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    text-shadow: 0 4px 40px rgba(0,0,0,.18);
}

.hero-overlay p {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.7;
    margin-bottom: 38px;
    font-family: 'DM Sans', sans-serif;
    max-width: 400px;
    letter-spacing: 0.01em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* Ghost / outline CTA — editorial feel */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 38px;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.60);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.28s, color 0.28s, border-color 0.28s;
}

.hero-cta:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.hero-cta:active { opacity: 0.85; }
.hero-cta i { font-size: 10px; }

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    border-bottom: 0.5px solid rgba(255,255,255,0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.hero-cta-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.72);
}


/* ── SLIDE INDICATORS ── */
.hero-indicators {
    position: absolute;
    bottom: 5.5%;
    left: 8%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-counter {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.40);
    letter-spacing: 0.12em;
}

.hero-counter span { color: rgba(255,255,255,0.82); font-weight: 600; }

.hero-dots { display: flex; gap: 6px; align-items: center; }

.hero-dot {
    width: 28px;
    height: 1px;
    border-radius: 1px;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}

.hero-dot.active {
    background: #fff;
    width: 56px;
}


/* ── HERO NAV ARROWS ── */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
    border: 0.5px solid rgba(255,255,255,0.20);
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.42);
    transform: translateY(-50%) scale(1.07);
}

.hero-arrow:active { transform: translateY(-50%) scale(0.94); }
.hero-arrow-prev { left: 32px; }
.hero-arrow-next { right: 32px; }


/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip {
    background: #faf9f7;
    border-bottom: 0.5px solid #edeceb;
}

.trust-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    border-right: 0.5px solid #edeceb;
    font-family: 'DM Sans', sans-serif;
}

.trust-item:last-child { border-right: none; }

.trust-item i {
    font-size: 18px;
    color: #c4826a;
    flex-shrink: 0;
}

.trust-item strong {
    font-weight: 600;
    color: #111;
    font-size: 12px;
    display: block;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}

.trust-item span {
    color: #aaa;
    font-size: 11px;
    letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════
   CATEGORY SHOWCASE
═══════════════════════════════════════ */
.category-showcase-section {
    padding: 56px 24px 44px;
    text-align: center;
    background: #fff;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 24px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 12px 30px;
    border-radius: 0;
    border: 1px solid #e0dedd;
    background: transparent;
    color: #666;
    font-size: 11px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, color 0.22s;
}

.category-pill:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.category-pill:active { opacity: 0.85; }

.category-pill.featured {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* ═══════════════════════════════════════
   FEATURED PRODUCTS SECTION
═══════════════════════════════════════ */
.featured-section {
    padding: 56px 24px 64px;
    max-width: 1440px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 300px));
    gap: 20px;
    margin-top: 32px;
    justify-content: start;
}


/* ═══════════════════════════════════════
   EDITORIAL BANNER
═══════════════════════════════════════ */
.editorial-banner {
    background: #0f0d0c;
    padding: 72px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.editorial-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%,
        rgba(196,130,106,.16) 0%, transparent 65%);
    pointer-events: none;
}

.editorial-banner.has-bg-image {
    background-size: cover;
    background-position: center;
}

.editorial-banner.has-bg-image::before {
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
                radial-gradient(ellipse 80% 60% at 50% 0%,
                    rgba(196,130,106,.18) 0%, transparent 65%);
}

.editorial-banner-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.editorial-banner .section-label {
    color: #c4826a;
    display: block;
    margin-bottom: 28px;
}

.editorial-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.10;
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.editorial-banner p {
    font-size: 15px;
    color: rgba(255,255,255,0.48);
    line-height: 1.75;
    margin-bottom: 44px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 44px;
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.28s, border-color 0.28s, color 0.28s;
    border-radius: 0;
}

.btn-editorial:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-overlay h1 { font-size: 4.4rem; }
    .editorial-banner h2 { font-size: 3.4rem; }
}

@media (max-width: 1024px) {
    .trust-item { padding: 20px 18px; gap: 10px; }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 62dvh;
        min-height: 300px;
    }

    /* Touch users swipe — arrows are redundant on mobile */
    .hero-arrow { display: none; }

    .hero-slide-img {
        object-position: center center;
    }

    .hero-overlay {
        left: 5%;
        right: 5%;
        bottom: 12%;
        max-width: none;
    }

    .hero-overlay h1 { font-size: 2.9rem; margin-bottom: 14px; }

    .hero-overlay p {
        font-size: 0.9rem;
        margin-bottom: 26px;
        max-width: none;
    }

    .hero-cta { padding: 13px 28px; font-size: 10px; }
    .hero-cta-group { gap: 14px; }
    .hero-eyebrow { margin-bottom: 16px; }

    .hero-arrow { width: 36px; height: 36px; font-size: 12px; }
    .hero-arrow-prev { left: 14px; }
    .hero-arrow-next { right: 14px; }
    .hero-indicators { bottom: 4%; left: 5%; }

    /* Trust strip: 2×2 grid */
    .trust-strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        padding: 18px 14px;
        border-right: 0.5px solid #edeceb;
        border-bottom: 0.5px solid #edeceb;
    }

    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(3) { border-bottom: none; }
    .trust-item:nth-child(4) { border-right: none; border-bottom: none; }

    /* Category showcase */
    .category-showcase-section { padding: 36px 0 28px; }

    .category-showcase-section .section-header { padding: 0 16px; }

    .category-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 16px 14px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: 16px;
    }

    .category-pills::-webkit-scrollbar { display: none; }

    .category-pill { flex-shrink: 0; padding: 10px 22px; font-size: 10px; }

    /* Sections */
    .featured-section { padding: 36px 14px 44px; }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 24px;
    }

    .editorial-banner { padding: 52px 20px; }
    .editorial-banner h2 { font-size: 2.6rem; }
    .editorial-banner p { margin-bottom: 28px; }

}


@media (max-width: 480px) {
    .hero-carousel { height: 58vh; min-height: 260px; }

    .hero-overlay h1 { font-size: 2.1rem; }
    .hero-overlay p { display: none; }
    .hero-cta { padding: 12px 24px; }
    .hero-cta-secondary { display: none; }

    .featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .editorial-banner { padding: 40px 16px; }
    .editorial-banner h2 { font-size: 1.9rem; }

    .trust-item { padding: 14px 10px; gap: 8px; }
    .trust-item i { font-size: 16px; }
    .trust-item strong { font-size: 11px; }
    .trust-item span { font-size: 10px; }
}

@media (max-width: 360px) {
    .hero-overlay h1 { font-size: 1.6rem; }
    .editorial-banner h2 { font-size: 1.45rem; }
    .hero-cta { padding: 10px 18px; font-size: 10px; }
    .hero-cta-group { flex-direction: column; gap: 10px; }
}
