@charset "UTF-8";
@import url(../icons/feather/css/iconfont.css);

html {
    font-family: 'Yekan' !important;
}

/*font*/
@font-face {
    font-family: 'Yekan';
    src: url('../fonts/YekanBakhFaNum-Medium.eot');
    src: url('../fonts/YekanBakhFaNum-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/YekanBakhFaNum-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yekan';
    src: url('../fonts/YekanBakhFaNum-Regular.eot');
    src: url('../fonts/YekanBakhFaNum-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/YekanBakhFaNum-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Yekan';
    src: url('../fonts/YekanBakhFaNum-Boldot');
    src: url('../fonts/YekanBakhFaNum-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/YekanBakhFaNum-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
 
:root {
    --navy-950: #0B1B2C;
    --navy-900: #0F2338;
    --navy-800: #153455;
    --navy-700: #1E4A73;
    --brass-300: #E7CE86;
    --brass-500: #C9A227;
    --brass-600: #A9811E;
    --brass-700: #8A6816;
    --cream: #FBF7EE;
    --cream-2: #F3EAD4;
    --ink: #1D2733;
    --ink-soft: #4B5666;
    --white: #FFFFFF;
    --line: #E4DAC0;
    --radius: 14px;
    --shadow-soft: 0 10px 30px rgba(15,35,56,0.08);
    --shadow-card: 0 6px 18px rgba(15,35,56,0.07);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Yekan', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    position: relative;
}

/* ---------- utility: brass tag / nameplate motif (signature element) ---------- */
.tag {
    position: relative;
    background: linear-gradient(180deg, #FFFDF7 0%, var(--cream-2) 100%);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(201,162,39,0.15);
}

    .tag::before, .tag::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 30%, #FFF2C8, var(--brass-600));
        top: 8px;
    }

    .tag::before {
        right: 8px;
    }

    .tag::after {
        left: 8px;
    }

/* ---------- top announcement bar ---------- */
.topbar {
    background: var(--navy-900);
    color: var(--brass-300);
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    padding: 9px 12px;
    letter-spacing: .2px;
}

/* ---------- header (light, jeanswest-inspired) ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy-900);
    letter-spacing: .2px;
}

    .logo img {
        height: 38px;
        width: auto;
        display: block;
    }

.header-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-800);
    transition: background .2s, color .2s;
}

    .icon-btn:hover {
        background: var(--cream-2);
        color: var(--brass-700);
    }

.hamburger-btn {
    display: none;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 10px 18px;
    width: 320px;
    max-width: 38vw;
}

    .header-search svg {
        width: 17px;
        height: 17px;
        stroke: var(--ink-soft);
        flex: none;
    }

    .header-search input {
        border: none;
        background: transparent;
        outline: none;
        width: 100%;
        font-family: inherit;
        font-size: .86rem;
        color: var(--ink);
    }

        .header-search input::placeholder {
            color: #9AA6B4;
        }

/* ---------- category nav bar + dropdown submenus ---------- */
.cat-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: relative;
}

.cat-nav-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    padding: 14px 0;
}

.nav-item {
    position: relative;
    flex: none;
}

    .nav-item > a {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .88rem;
        font-weight: 600;
        color: var(--navy-900);
        transition: color .2s;
        padding: 4px 0;
    }

        .nav-item > a:hover {
            color: var(--brass-600);
        }

.nav-divider {
    flex: none;
    font-size: 8px;
    color: var(--brass-500);
    opacity: .6;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: -14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 10px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 60;
    margin-top: 14px;
}

.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 9px 12px;
    border-radius: 7px;
    font-size: .83rem;
    font-weight: 500;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: background .15s, color .15s;
}

    .dropdown a:hover {
        background: var(--cream-2);
        color: var(--brass-700);
    }

/* ---------- mobile nav drawer ---------- */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,27,44,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
    z-index: 199;
}

    .mobile-nav-overlay.open {
        opacity: 1;
        visibility: visible;
    }

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(84vw,340px);
    background: var(--white);
    z-index: 200;
    box-shadow: -14px 0 34px rgba(0,0,0,.22);
    transform: translateX(100%);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
}

    .mobile-nav.open {
        transform: translateX(0);
    }

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    color: var(--navy-900);
    flex: none;
}

    .mobile-nav-head button {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: var(--cream-2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-800);
    }

.mobile-nav-body {
    padding: 8px 20px 24px;
    overflow-y: auto;
    flex: 1;
}

.mnav-group summary {
    padding: 14px 2px;
    font-weight: 700;
    font-size: .94rem;
    color: var(--navy-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

    .mnav-group summary::-webkit-details-marker {
        display: none;
    }

    .mnav-group summary::after {
        content: '+';
        color: var(--brass-600);
        font-weight: 700;
        font-size: 1.1rem;
    }

.mnav-group[open] summary::after {
    content: '\2212';
}

.mnav-group .sub-links {
    padding: 6px 4px 8px;
}

    .mnav-group .sub-links a {
        display: block;
        padding: 9px 10px;
        font-size: .85rem;
        color: var(--ink-soft);
        border-radius: 7px;
    }

        .mnav-group .sub-links a:hover {
            background: var(--cream-2);
            color: var(--brass-700);
        }

.mnav-link {
    display: block;
    padding: 14px 2px;
    font-weight: 700;
    font-size: .94rem;
    color: var(--navy-900);
    border-bottom: 1px solid var(--line);
}

.cta-btn {
    background: linear-gradient(145deg, var(--brass-300), var(--brass-600));
    color: var(--navy-950);
    font-weight: 700;
    font-size: .9rem;
    padding: 11px 22px;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(201,162,39,.28);
    transition: transform .2s, box-shadow .2s;
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(201,162,39,.35);
    }

    .cta-btn.ghost {
        background: transparent;
        color: var(--white);
        border: 1.5px solid rgba(255,255,255,.35);
        box-shadow: none;
    }

        .cta-btn.ghost:hover {
            border-color: var(--brass-300);
            color: var(--brass-300);
            transform: none;
        }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--brass-300);
    letter-spacing: .5px;
    margin-bottom: 20px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1.5px;
        background: var(--brass-300);
    }

/* ---------- scroll story: bathroom / faucet assembly narrative ---------- */
.story {
    position: relative;
    height: 600vh;
    background: var(--navy-900);
}

.story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 20%, rgba(201,162,39,.10), transparent 55%), var(--navy-900);
}

.story-scene-wrap {
    position: relative;
    width: min(92vw,760px);
    aspect-ratio: 800/500;
}

    .story-scene-wrap svg {
        width: 100%;
        height: 100%;
        overflow: visible;
        filter: drop-shadow(0 24px 40px rgba(0,0,0,.35));
    }

.story-part {
    opacity: 0;
    transform: translateY(20px);
    transform-box: fill-box;
    transform-origin: center;
}

.story-caption {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    width: min(88vw,420px);
}

    .story-caption .num {
        display: inline-block;
        font-size: .72rem;
        font-weight: 700;
        color: var(--brass-300);
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .story-caption h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .story-caption p {
        font-size: .85rem;
        color: #B9C6D6;
    }

    .story-caption.active {
        opacity: 1;
    }

.story-final {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
    padding: 0 24px;
}

    .story-final.active {
        opacity: 1;
        pointer-events: auto;
    }

    .story-final h1 {
        color: var(--white);
        font-size: clamp(1.9rem,3.6vw,2.9rem);
        font-weight: 800;
        line-height: 1.4;
        margin-bottom: 16px;
        max-width: 640px;
    }

        .story-final h1 span {
            color: var(--brass-300);
        }

    .story-final p {
        color: #C7D3E0;
        max-width: 480px;
        margin-bottom: 26px;
        font-size: 1rem;
    }

.story-dots {
    position: absolute;
    top: 50%;
    left: 26px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

    .story-dots span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255,255,255,.25);
        transition: background .3s, transform .3s;
    }

        .story-dots span.active {
            background: var(--brass-300);
            transform: scale(1.3);
        }

.scroll-cue {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: #B9C6D6;
    font-size: .75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: opacity .4s ease;
}

    .scroll-cue svg {
        width: 16px;
        height: 16px;
        animation: bob 1.6s ease-in-out infinite;
    }

@keyframes bob {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@media (max-width:768px) {
    .story {
        height: 480vh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .drop, .ripple {
        animation: none !important;
    }

    .scroll-cue svg {
        animation: none !important;
    }
}

/* ---------- trust bar (circle badges, jeanswest-inspired) ---------- */
.trust-bar {
    background: var(--white);
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 6px 12px;
}

.trust-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--brass-400, var(--brass-500));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-circle svg {
        width: 24px;
        height: 24px;
        stroke: var(--brass-600);
    }

.trust-item strong {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy-900);
}

.trust-item small {
    font-size: .8rem;
    color: var(--ink-soft);
    font-weight: 500;
}

/* ---------- section heading ---------- */
.section-head {
    max-width: 620px;
    margin: 0 auto 46px;
    text-align: center;
}

    .section-head .eyebrow {
        color: var(--brass-600);
    }

        .section-head .eyebrow::before {
            background: var(--brass-600);
        }

    .section-head h2 {
        font-size: clamp(1.6rem,2.4vw,2.1rem);
        font-weight: 800;
        color: var(--navy-900);
        margin-bottom: 12px;
    }

    .section-head p {
        color: var(--ink-soft);
        font-size: 1rem;
    }

.section-pad {
    padding: 88px 0;
}

.section-alt {
    background: var(--white);
}

/* ---------- categories ---------- */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.cat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-card);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .cat-card:hover {
        transform: translateY(-6px);
        border-color: var(--brass-500);
        box-shadow: 0 16px 30px rgba(169,129,30,.15);
    }

.cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cat-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--brass-300);
    }

.cat-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy-900);
}

.cat-card p {
    font-size: .88rem;
    color: var(--ink-soft);
}

.cat-card .go {
    margin-top: auto;
    font-size: .85rem;
    font-weight: 700;
    color: var(--brass-600);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- products ---------- */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.prod-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

    .prod-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-soft);
    }

.prod-media {
    aspect-ratio: 1/0.9;
    background: radial-gradient(circle at 60% 30%, #FFFFFF, var(--cream-2) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .prod-media svg {
        width: 58%;
        height: 58%;
    }

    .prod-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s ease;
    }

.prod-card:hover .prod-media img {
    transform: scale(1.06);
}

.prod-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy-900);
    color: var(--brass-300);
    font-size: .68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.prod-body {
    padding: 18px 18px 20px;
}

    .prod-body .brand {
        font-size: .74rem;
        color: var(--brass-600);
        font-weight: 700;
        margin-bottom: 4px;
    }

    .prod-body h4 {
        font-size: .96rem;
        font-weight: 700;
        color: var(--navy-900);
        margin-bottom: 10px;
    }

.prod-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-weight: 800;
    color: var(--navy-900);
    font-size: .95rem;
}

    .price small {
        font-weight: 500;
        font-size: .72rem;
        color: var(--ink-soft);
    }

.add-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--navy-900);
    color: var(--brass-300);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

    .add-btn:hover {
        background: var(--brass-600);
        color: var(--navy-950);
    }

/* ---------- product carousel (6 per page, rotates through all) ---------- */
.prod-carousel {
    position: relative;
    padding: 0 30px;
}

.prod-viewport {
    overflow: hidden;
    border-radius: 6px;
}

.prod-track {
    display: flex;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}

.prod-page {
    flex: 0 0 100%;
    min-width: 0;
}

.prod-nav {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    z-index: 10;
    transition: background .2s, color .2s;
}

    .prod-nav:hover {
        background: var(--navy-900);
        color: var(--brass-300);
    }

    .prod-nav svg {
        width: 18px;
        height: 18px;
    }

    .prod-nav.prev {
        right: -6px;
    }

    .prod-nav.next {
        left: -6px;
    }

.prod-dots {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 32px;
}

    .prod-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--line);
        cursor: pointer;
        transition: background .2s, transform .2s;
    }

        .prod-dots span:hover {
            background: var(--brass-300);
        }

        .prod-dots span.active {
            background: var(--brass-600);
            transform: scale(1.3);
        }

@media (max-width:640px) {
    .prod-nav {
        display: none;
    }
}

/* ---------- why us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.why-card {
    text-align: center;
    padding: 14px;
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--cream-2);
    border: 1.5px solid var(--brass-300);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--brass-700);
    }

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.why-card p {
    font-size: .86rem;
    color: var(--ink-soft);
}

/* ---------- brands ---------- */
.brand-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.medallion {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    opacity: .9;
}

    .medallion span {
        font-weight: 800;
        color: var(--navy-800);
        font-size: .95rem;
    }

    .medallion small {
        font-size: .62rem;
        color: var(--ink-soft);
    }

/* ---------- cta banner ---------- */
.cta-banner {
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
    color: var(--white);
    border-radius: 22px;
    padding: 56px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

    .cta-banner::after {
        content: "";
        position: absolute;
        left: -60px;
        top: -60px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,162,39,.25), transparent 70%);
    }

    .cta-banner h2 {
        font-size: 1.55rem;
        font-weight: 800;
        margin-bottom: 10px;
        max-width: 420px;
    }

    .cta-banner p {
        color: #C7D3E0;
        max-width: 420px;
        font-size: .95rem;
    }

    .cta-banner .actions {
        display: flex;
        gap: 14px;
        position: relative;
        z-index: 2;
    }

/* ---------- footer (light, multi-column, jeanswest-inspired) ---------- */
footer {
    background: var(--white);
    color: var(--ink-soft);
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

    .contact-row .c-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        flex: none;
        background: var(--cream-2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .contact-row .c-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--brass-700);
        }

    .contact-row strong {
        display: block;
        font-size: .95rem;
        font-weight: 700;
        color: var(--navy-900);
    }

    .contact-row span {
        font-size: .8rem;
        color: var(--ink-soft);
    }

.footer-grid h4 {
    color: var(--navy-900);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-grid li {
    margin-bottom: 10px;
    font-size: .86rem;
}

.footer-grid a:hover {
    color: var(--brass-700);
}

.newsletter-label {
    font-size: .86rem;
    color: var(--ink-soft);
    margin-bottom: 12px;
}

.newsletter {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
}

    .newsletter input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 11px 14px;
        color: var(--ink);
        font-family: inherit;
        font-size: .85rem;
    }

        .newsletter input::placeholder {
            color: #9AA6B4;
        }

    .newsletter button {
        background: var(--brass-600);
        color: var(--white);
        font-weight: 700;
        padding: 0 18px;
        font-size: .85rem;
    }

.footer-story {
    border-top: 1px solid var(--line);
    padding: 28px 0;
    font-size: .84rem;
    line-height: 2;
    color: var(--ink-soft);
}

    .footer-story a {
        color: var(--brass-700);
        font-weight: 700;
    }

.trust-seals {
    display: flex;
    gap: 14px;
    padding-bottom: 26px;
}

.seal {
    width: 74px;
    height: 74px;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .6rem;
    color: var(--ink-soft);
    padding: 6px;
    line-height: 1.4;
}

.bottom-bar {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .8rem;
    color: var(--ink-soft);
}

.bottom-social {
    display: flex;
    gap: 10px;
}

    .bottom-social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-800);
        transition: background .2s, color .2s;
    }

        .bottom-social a:hover {
            background: var(--navy-900);
            color: var(--brass-300);
            border-color: var(--navy-900);
        }

@media (max-width:1024px) {
    .header-search {
        display: none;
    }

    .cat-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .cat-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .prod-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .cat-grid, .prod-grid, .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 36px 24px;
        flex-direction: column;
        text-align: center;
    }

        .cta-banner .actions {
            justify-content: center;
        }
}

:focus-visible {
    outline: 2.5px solid var(--brass-500);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
 