/* ======================================================
   HOME / HERO
   ====================================================== */

.luxe-home-hero {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 70px 0 70px;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.97) 100%),
        radial-gradient(circle at right center, rgba(200,161,90,0.14), transparent 32%),
        #0b0b0b;
    border-bottom: 1px solid var(--luxe-border);
}

.luxe-home-hero .luxe-container {
    position: relative;
    z-index: 2;
}

.luxe-home-hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 36px;
    align-items: center;
}

.luxe-home-hero__content {
    max-width: 620px;
}

.luxe-home-hero__content h1 {
    margin: 0 0 18px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.luxe-home-hero__content p {
    max-width: 520px;
    margin: 0 0 28px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #e6dfd2;
}

.luxe-home-hero__media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxe-home-hero__media img {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,0.42));
}

/* ======================================================
   HOME / BENEFITS
   ====================================================== */

.luxe-benefits {
    border-top: 1px solid var(--luxe-border);
    border-bottom: 1px solid var(--luxe-border);
    background: #121212;
}

.luxe-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 0;
}

.luxe-benefit {
    text-align: center;
    padding: 10px 14px;
}

.luxe-benefit__title {
    margin-bottom: 8px;
    color: var(--luxe-gold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.luxe-benefit__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--luxe-text-soft);
}

/* ======================================================
   HOME / FEATURED GENETICS
   ====================================================== */

.luxe-featured-products {
    padding: 90px 0;
    background:
        radial-gradient(circle at top center, rgba(200, 161, 90, 0.12), transparent 28%),
        linear-gradient(180deg, #111 0%, #0b0b0b 100%);
}

.luxe-featured-products .luxe-section-title {
    margin-bottom: 42px;
}

.luxe-featured-products .luxe-section-title h2 {
    color: #e3b867;
}

.luxe-featured-products .luxe-section-title p {
    color: #e8dcc5;
    opacity: 0.9;
}

/* ======================================================
   HOME / PACK SELECTION
   ====================================================== */

.luxe-special-offers {
    padding: 90px 0;
    background:
        radial-gradient(circle at top center, rgba(200,161,90,0.12), transparent 28%),
        linear-gradient(180deg,#0f0f0f 0%,#0b0b0b 100%);
}

.luxe-offers-box {
    border: 1px solid rgba(200,161,90,0.35);
    padding: 50px;
    text-align: center;
    background: linear-gradient(180deg,rgba(255,255,255,0.02),rgba(255,255,255,0));
    border-radius: 12px;
}

.luxe-offers-box .luxe-btn {
    margin-top: 20px;
}

/* ======================================================
   HOME / CATEGORY SHOWCASE
   ====================================================== */

.luxe-category-showcase {
    padding: 90px 0;
    background:
        radial-gradient(circle at top center, rgba(200,161,90,0.08), transparent 26%),
        #0b0b0b;
}

.luxe-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.luxe-category-card {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    border: 1px solid rgba(200,161,90,0.35);
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.luxe-category-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(200,161,90,0.7);
    box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

.luxe-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.08) 100%);
    opacity: 1;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.luxe-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212,170,91,0.22), transparent 30%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.luxe-category-card:hover::after {
    opacity: 1;
}

.luxe-category-card__inner {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    transition: transform 0.45s ease;
}

.luxe-category-card:hover .luxe-category-card__inner {
    transform: translateY(-4px);
}

.luxe-category-card__title {
    display: block;
    margin-bottom: 10px;
    color: #f0d59a;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
}

.luxe-category-card__text {
    display: block;
    margin-bottom: 16px;
    color: #f3eee4;
    line-height: 1.6;
}

.luxe-category-card__cta {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: #f0d59a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.luxe-category-card__cta::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #ffd98a;
    transition: width 0.35s ease;
}

.luxe-category-card:hover .luxe-category-card__cta::after {
    width: 100%;
}

/* ======================================================
   HOME / TABLET
   ====================================================== */

@media (max-width: 1100px) {
    .luxe-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .luxe-home-hero {
        margin-top: 0;
        padding: 60px 0 70px;
    }

    .luxe-home-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .luxe-home-hero__content {
        max-width: 100%;
    }

    .luxe-home-hero__content h1 {
        font-size: clamp(2.4rem, 8vw, 4.2rem);
        max-width: 100%;
    }

    .luxe-home-hero__media {
        order: 2;
    }

    .luxe-benefits__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .luxe-benefit {
        padding: 6px 0;
    }
}

/* ======================================================
   HOME / MOBILE
   ====================================================== */

@media (max-width: 640px) {
    .luxe-home-hero {
        padding: 50px 0 56px;
    }

    .luxe-home-hero__content h1 {
        font-size: clamp(2rem, 10vw, 3.1rem);
        line-height: 0.96;
    }

    .luxe-home-hero__content p {
        font-size: 0.98rem;
    }

    .luxe-category-grid {
        grid-template-columns: 1fr;
    }

    .luxe-category-card {
        min-height: 320px;
    }

    .luxe-offers-box {
        padding: 34px 22px;
    }
}