:root {
    --dark: #0a0a0a;
    --accent: #e11d48;
    --text: #1f1f1f;
    --muted: #6b7280;
    --radius: 18px;
}

body {
    background:
        radial-gradient(circle at top, #141416 0%, #0a0a0c 60%, #050507 100%);
    color: #eaeaea;
}

h1,h2,h3 {
    font-family: 'Playfair Display', serif;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

/* ================= TOP BAR (DESKTOP) ================= */
.topbar {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 18px;
    align-items: center;
}

.topbar i {
    color: #e11d48;
    margin-right: 6px;
}

.topbar a {
    color: rgba(255,255,255,.65);
    transition: color .2s ease;
}

.topbar a:hover {
    color: #ffffff;
}


.main-header {
    position: absolute;
    top: 38px; /* sits below topbar */
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10,10,12,.65);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.logo {
    height: 52px;
    filter: drop-shadow(0 6px 14px rgba(255,200,90,.35));
}

.header-actions {
    display: none;
    gap: 14px;
}

.header-login {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
}

.header-login:hover {
    background: rgba(255,255,255,.08);
}

.header-cta {
    background: linear-gradient(135deg, #e11d48, #b11232);
    color: #fff;
    padding: 10px 26px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(225,29,72,.45);
}

.header-cta:hover {
    transform: translateY(-1px);
}
@media (max-width: 768px) {

    .topbar {
        display: none;
    }

    .main-header {
        top: 0;
    }

    @media (max-width: 768px) {
    .header-login {
        display: inline-flex;
    }
}
@media (max-width: 480px) {
    .header-login,
    .header-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
}


}

.nav a {
    margin: 0 18px;
    font-weight: 600;
    cursor: pointer;
}

.nav .active {
    color: var(--accent);
}

.cta-btn {
    background: var(--accent);
    color: #fff;
    padding: 10px 26px;
    border-radius: 999px;
    font-weight: bold;
}


/* Buttons */
.btn {
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: bold;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

/* Stats */
/* ================= STATS (BRAND PROOF CARD) ================= */

.stats-wrap {
    position: relative;
    margin-top: -60px;
    padding-bottom: 60px;
    z-index: 5;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    overflow: hidden;
}

.stats div {
    padding: 26px 20px;
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
}

.stats span {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Subtle separators */
.stats div:not(:last-child) {
    border-right: 1px solid #eee;
}

@media (max-width: 768px) {
    .stats-wrap {
        margin-top: -30px;
        padding-bottom: 40px;
    }

    .stats {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .stats div:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .stats strong {
        font-size: 1.6rem;
    }
}


/* About */
/* ================= ABOUT (EDITORIAL) ================= */

.about-wrap {
    position: relative;
    padding: 10px 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #fff1f2 50%,
        #ffffff 100%
    );
    overflow: hidden;
}
.about-wrap::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(225,29,72,0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 120px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    position: relative;
    z-index: 2;
}

/* Decorative frame */
.about-image::after {
    content: "";
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(225,29,72,0.25);
    border-radius: 26px;
    z-index: 1;
}
.about-text h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 26px;
}

.about-text ul li {
    margin-bottom: 12px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .about-wrap {
        padding: 20px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image::after {
        display: none;
    }
}


/* ================= CATEGORIES (EDITORIAL) ================= */

.categories-wrap {
    padding: 120px 0;
    background: #ffffff;
}

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

.category-tile {
    position: relative;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.category-tile:hover img {
    transform: scale(1.12);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.7)
    );
    display: flex;
    align-items: flex-end;
    padding: 26px;
}

.category-overlay h3 {
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
}
@media (max-width: 768px) {
    .categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-tile {
        height: 260px;
    }
}


/* ================= PRODUCTS (SENSORY / PREMIUM) ================= */

.products-wrap {
    padding: 40px 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #fdf2f8 100%
    );
}

.products h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    text-align: center;
}

/* Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Card */
.product-card {
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    transition: transform .5s ease, box-shadow .5s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(225,29,72,0.25);
}

/* Image */
.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Content */
.product-card h4 {
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
    margin: 18px 20px 6px;
}

.price {
    display: block;
    margin: 0 20px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--accent);
}

/* Commission badge */
.commission {
    display: inline-block;
    margin: 14px 20px 22px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #166534;
    background: rgba(34,197,94,0.12);
    border-radius: 999px;
}

/* Soft glow ring */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-card img {
        height: 260px;
    }

    .products h2 {
        font-size: 2rem;
    }
}


/* ================= JOIN (CINEMATIC CTA) ================= */

.join-wrap {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(
        to bottom,
        #0a0a0a,
        #111,
        #0a0a0a
    );
    overflow: hidden;
}

/* ambient glow */
.join-wrap::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(225,29,72,0.35), transparent 70%);
    filter: blur(80px);
}
.join {
    position: relative;
    text-align: center;
    max-width: 760px;
}

.join-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fda4af;
    margin-bottom: 16px;
}

.join h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.join p {
    color: #d1d5db;
    font-size: 1.05rem;
    margin-bottom: 36px;
}
.join .btn.primary {
    padding: 16px 46px;
    font-size: 1rem;
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(225,29,72,0.5);
}

.join .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 70px rgba(225,29,72,0.65);
}
@media (max-width: 768px) {
    .join-wrap {
        padding: 110px 0;
    }

    .join h2 {
        font-size: 2.3rem;
    }

    .join p {
        font-size: 1rem;
    }

    .join .btn.primary {
        width: 100%;
    }
}
/* ================= FOOTER (BRAND CLOSURE) ================= */

.footer-wrap {
    background: #050505;
    color: #9ca3af;
    padding-top: 90px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand */
.footer-brand {
    max-width: 360px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 18px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #a1a1aa;
}

/* Nav */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
    transition: color .3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        margin: auto;
    }

    .footer-nav {
        align-items: center;
    }
}
/* ================= MOBILE APP NAV (POLISHED) ================= */

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 78px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 200;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
}

/* hide on desktop */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }
}

/* nav items */
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10.5px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: all .25s ease;
    position: relative;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 3px;
}

/* tap feedback */
.nav-item:active {
    transform: scale(0.92);
}

/* hover (for android chrome / tablets) */
.nav-item:hover {
    color: var(--accent);
}

/* active state */
.nav-item.active {
    color: var(--accent);
}

/* subtle active dot */
.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* center button */
.nav-center {
    transform: translateY(-22px);
}

.center-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e11d48, #fb7185);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 14px 30px rgba(225,29,72,.45),
        inset 0 0 0 2px rgba(255,255,255,.25);
    margin-bottom: 4px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.center-btn i {
    color: #fff;
    font-size: 26px;
}

/* center button press */
.nav-center:active .center-btn {
    transform: scale(0.92);
    box-shadow: 0 8px 20px rgba(225,29,72,.4);
}

.nav-center span {
    font-weight: 700;
    color: var(--accent);
}


@supports (padding: max(0px)) {
    .mobile-nav {
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(78px + env(safe-area-inset-bottom));
    }
}

/* ================= SECTION SEPARATOR ================= */

.section-separator {
    position: relative;
    height: 10px;
     display: flex;
    justify-content: center;
    align-items: center;
}

.section-separator span {
    width: 80%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(225,29,72,0.6),
        transparent
    );
}

/* subtle glow */
.section-separator::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 180px;
    background: radial-gradient(circle, rgba(225,29,72,0.12), transparent 70%);
    filter: blur(40px);
    opacity: 0.7;
}

.testimonials-wrap {
    padding: 90px 0;
    text-align: center;
}

.testimonial {
    display: none;
    font-size: 18px;
    color: #ddd;
}

.testimonial.active {
    display: block;
}

/* ================= HERO SLIDER ================= */

.hero-slider {
    position: relative;
    height: 100svh;
    min-height: 520px;
    overflow: hidden;
}

/* Slides Layer */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out, transform 10s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

/* Overlay Layer */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.55) 40%,
        rgba(0,0,0,.15) 75%,
        rgba(0,0,0,.05) 100%
    );
}

/* Content Layer */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding-top: 90px;      /* header space */
    padding-bottom: 90px;  /* mobile nav space */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    text-shadow: 0 10px 40px rgba(0,0,0,.6);
    color: azure;
}

.hero-content p {
    max-width: 520px;
    color: rgba(255,255,255,.78);
}

/* Buttons spacing */
.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 16px;
}

/* Mobile tuning */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 80px;
        line-height: 1.05;
    }

    .hero-content p {
        font-size: 20px;
        
    }

    .hero-actions {
        flex-direction: column;
    }
}
.hero-content h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: #d81b3f;
    text-shadow: 
        0 0 12px rgba(216,27,63,.45),
        0 0 32px rgba(216,27,63,.25);
}
.hero-content p {
    max-width: 480px;
    line-height: 1;
}
.btn.primary {
    background: linear-gradient(135deg, #e11d48, #b11232);
    border-radius: 999px;
    padding: 4px 28px;
    font-weight: 600;
    box-shadow:
        0 10px 30px rgba(225,29,72,.45),
        inset 0 1px 0 rgba(255,255,255,.25);
    transition: transform .2s ease, box-shadow .2s ease;
    text-align: center;
    font-size: 20px;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 40px rgba(225,29,72,.6),
        inset 0 1px 0 rgba(255,255,255,.35);
}

.btn.outline {
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 999px;
    padding: 14px 28px;
    backdrop-filter: blur(4px);
}
.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 50%, rgba(216,27,63,.12), transparent 60%);
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
.hero-content p {
    color: rgba(255,255,255,0.88);
}
.hero-content h1 span {
    text-shadow:
        0 0 10px rgba(216,27,63,.35),
        0 0 22px rgba(216,27,63,.2);
}
.hero-actions {
    gap: 20px;
}
.hero-overlay {
    background: linear-gradient(
        to right,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.65) 45%,
        rgba(0,0,0,.20) 75%,
        rgba(0,0,0,.05) 100%
    );
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fda4af;
    font-weight: bold;
    font-size: 30px;
}

/* Reduce excessive vertical spacing */
section {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    section {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
section:not(.hero)::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    margin-bottom: 10px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0,0,0,.08),
        transparent
    );
}

.about-wrap,
.how-wrap,
.testimonials-wrap,
.faq-wrap,
.products-wrap,
.categories-wrap {
    background: linear-gradient(
        180deg,
        rgba(20,20,24,.88),
        rgba(10,10,12,.92)
    );
    border-radius: 28px;
    margin: 10px 0;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 40px 120px rgba(0,0,0,.6);
}
p {
    color: rgba(255,255,255,.72);
}

h2, h3 {
    color: #ffffff;
}

.category-overlay h3,
.price {
    color: #f4d27a;
}
.hero-slider::after {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0),
        #0a0a0c
    );
}
.product-card,
.category-tile {
    background: #0f0f13;
    box-shadow:
        0 20px 60px rgba(0,0,0,.8),
        inset 0 1px 0 rgba(255,255,255,.04);
}
body::after {
    content:"";
    position: fixed;
    inset:0;
    /* background-image: url("/assets/images/noise.png");*/
    opacity:.025;
    pointer-events:none;
}
