/*(c) Haxter Corporation | All rights reserved. */
:root {
    --bg: #fbf7f4;
    --text: #151515;
    --muted: #77706b;
    --soft: #efe5df;
    --card: #ffffff;
    --accent: #c98b73;
    --accent-dark: #9f604c;
    --border: rgba(21, 21, 21, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 244, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand strong {
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.brand span {
    margin-top: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.92rem;
    color: #332f2d;
}

.menu a:hover {
    color: var(--accent-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary {
    color: #fff;
    background: var(--text);
}

.btn-primary:hover {
    transform: translateY(-1px);
    background: var(--accent-dark);
}

.btn-light {
    background: #fff;
    color: var(--text);
    border-color: var(--border);
}

.btn-light:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.hero {
    padding: 72px 0 64px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 52px;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.65);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3rem, 8vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: -0.085em;
}

.hero h1 span {
    color: var(--accent-dark);
}

.hero p {
    max-width: 590px;
    margin-top: 26px;
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-media {
    position: relative;
}

.hero-photo {
    overflow: hidden;
    border-radius: 42px;
    background: var(--soft);
    box-shadow: 0 30px 80px rgba(70, 42, 32, 0.18);
}

.hero-photo img {
    height: 660px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    left: -28px;
    bottom: 38px;
    width: min(280px, 80%);
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.13);
}

.floating-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
}

.floating-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
}

.section {
    padding: 72px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-kicker {
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    letter-spacing: -0.06em;
}

.section-head p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.6;
}

.categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.category-card {
    min-height: 120px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    font-weight: 800;
    transition: 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 18px 44px rgba(60, 39, 31, 0.08);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--card);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--soft);
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.86);
    font-size: 0.75rem;
    font-weight: 800;
}

.product-info {
    padding: 18px;
}

.product-info small {
    color: var(--accent-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.product-info h3 {
    margin-top: 8px;
    font-size: 1.05rem;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.price {
    font-weight: 900;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.icon-btn:hover {
    background: var(--text);
    color: #fff;
}

.banner {
    overflow: hidden;
    border-radius: 38px;
    background: #151515;
    color: #fff;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 28px;
}

.banner-copy {
    padding: 52px;
}

.banner-copy h2 {
    color: #fff;
}

.banner-copy p {
    max-width: 580px;
    margin-top: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.banner-image img {
    height: 440px;
    object-fit: cover;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
}

.benefit-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--accent-dark);
    font-weight: 900;
}

.benefit h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.benefit p {
    color: var(--muted);
    line-height: 1.6;
}

.footer {
    padding: 44px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer strong {
    color: var(--text);
}

@media (max-width: 980px) {
    .menu,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu-open .menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 86px;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }

    .mobile-menu-open .menu a {
        padding: 16px;
        border-radius: 16px;
    }

    .mobile-menu-open .menu a:hover {
        background: var(--soft);
    }

    .hero-grid,
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo img {
        height: 520px;
    }

    .categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 48px;
    }

    .hero h1 {
        font-size: 3.35rem;
    }

    .hero-photo img {
        height: 440px;
    }

    .floating-card {
        left: 16px;
        bottom: 16px;
    }

    .section-head,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .categories,
    .product-grid,
    .benefits {
        grid-template-columns: 1fr;
    }

    .banner-copy {
        padding: 34px 24px;
    }
}
    