:root {
    --navy-950: #04182b;
    --navy-900: #07233e;
    --navy-800: #0b3156;
    --navy-700: #124775;
    --gold-500: #d8ad3c;
    --gold-400: #e6c05f;
    --gold-100: #fff5d6;
    --white: #ffffff;
    --slate-50: #f7f9fc;
    --slate-100: #eef2f7;
    --slate-200: #dfe6ee;
    --slate-500: #667085;
    --slate-700: #344054;
    --text: #14202b;
    --success: #18794e;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 14px rgba(4, 24, 43, 0.07);
    --shadow-md: 0 18px 45px rgba(4, 24, 43, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--slate-50);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;
}

.site-shell {
    width: 100%;
    padding-inline: clamp(20px, 4vw, 72px);
}

.utility-bar {
    background: var(--navy-950);
    color: var(--white);
}

.utility-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.82rem;
}

.utility-inner p {
    margin: 0;
}

.utility-inner nav {
    display: flex;
    gap: 20px;
    color: #c7d5e1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 var(--slate-200);
}

.masthead {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto minmax(300px, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}


.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name strong {
    color: var(--navy-950);
    font-size: 1.02rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.brand-name small {
    margin-top: 6px;
    color: #9a7010;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.market-search {
    height: 50px;
    display: grid;
    grid-template-columns: auto 1fr 54px;
    overflow: hidden;
    border: 1px solid #cfd8e3;
    border-radius: 999px;
    background: var(--white);
    transition: box-shadow .2s ease, border-color .2s ease;
}

.market-search:focus-within {
    border-color: var(--navy-700);
    box-shadow: 0 0 0 4px rgba(18, 71, 117, 0.12);
}

.market-search select {
    border: 0;
    border-right: 1px solid var(--slate-200);
    background: var(--slate-50);
    padding: 0 36px 0 16px;
    color: var(--slate-700);
    outline: none;
}

.market-search input {
    width: 100%;
    border: 0;
    padding: 0 18px;
    color: var(--text);
    outline: none;
}

.market-search button {
    border: 0;
    background: var(--navy-800);
    color: var(--white);
}

.market-search button svg {
    width: 21px;
    margin: auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.masthead-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.account-action,
.cart-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.account-action svg,
.cart-action svg {
    width: 25px;
    fill: none;
    stroke: var(--navy-800);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.account-action span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.account-action small {
    color: var(--slate-500);
    font-size: 0.68rem;
}

.account-action strong {
    color: var(--navy-950);
    font-size: 0.88rem;
}

.cart-action {
    min-height: 44px;
    padding: 0 13px;
    border: 1px solid var(--slate-200);
    border-radius: 11px;
    background: var(--white);
    color: var(--navy-950);
    font-weight: 800;
}

.cart-action strong {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gold-500);
    font-size: 0.72rem;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: var(--white);
}

.mobile-menu-toggle > span:not(.screen-reader-text) {
    width: 19px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: var(--navy-950);
}

.main-navigation {
    border-top: 1px solid var(--slate-200);
}

.nav-layout {
    position: relative;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-menu-wrap {
    position: relative;
    align-self: stretch;
}

.shop-menu-toggle {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: var(--navy-800);
    color: var(--white);
    padding: 0 20px;
    font-weight: 900;
}

.shop-menu-icon span {
    width: 16px;
    height: 2px;
    display: block;
    margin: 3px 0;
    background: currentColor;
}

.chevron {
    margin-left: 4px;
}

.shop-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1200;
    width: 290px;
    padding: 12px;
    border: 1px solid var(--slate-200);
    border-radius: 0 0 16px 16px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.shop-menu-panel a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 9px;
    color: var(--navy-950);
    font-weight: 800;
}

.shop-menu-panel a:hover {
    background: var(--slate-100);
}

.shop-menu-panel a span {
    color: #a9780f;
    font-size: 0.75rem;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    display: block;
    padding: 15px 14px;
    border-radius: 8px;
    color: var(--slate-700);
    font-size: 0.88rem;
    font-weight: 800;
}

.primary-menu a:hover {
    background: var(--slate-100);
    color: var(--navy-800);
}

.portal-nav {
    display: flex;
    gap: 17px;
    margin-left: auto;
    color: var(--navy-700);
    font-size: 0.8rem;
    font-weight: 850;
}

.market-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 15%, rgba(216, 173, 60, 0.24), transparent 24%),
        linear-gradient(125deg, var(--navy-950), var(--navy-800) 68%, #1c5a8b);
    color: var(--white);
}

.market-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
    align-items: center;
    gap: clamp(42px, 6vw, 90px);
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-400);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 24px;
    height: 2px;
    background: currentColor;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 20px 0 0;
    font-size: clamp(3.3rem, 6.5vw, 6.3rem);
    line-height: .92;
    letter-spacing: -.055em;
}

.hero-copy h1 span {
    display: block;
    color: var(--gold-400);
}

.hero-copy p {
    max-width: 650px;
    margin: 24px 0 0;
    color: #d8e4ef;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 10px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: var(--gold-500);
    color: var(--navy-950);
    box-shadow: 0 12px 26px rgba(0,0,0,.2);
}

.button-outline {
    border: 1px solid rgba(255,255,255,.4);
    color: var(--white);
}

.button-navy {
    background: var(--navy-800);
    color: var(--white);
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 30px;
    color: #d7e5f0;
    font-size: 0.84rem;
}

.hero-notes span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--gold-400);
    font-weight: 900;
}

.hero-showcase {
    position: relative;
    min-height: 460px;
}

.showcase-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(255,255,255,.1);
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
    backdrop-filter: blur(10px);
}

.showcase-main {
    inset: 0 70px 25px 0;
    padding: 22px;
}

.showcase-label {
    color: #f9d878;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.room-scene {
    position: relative;
    height: 310px;
    margin-top: 16px;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(to bottom, #f0eee8 0 65%, #d9c7a9 65% 100%);
}

.room-window {
    position: absolute;
    top: 24px;
    left: 30px;
    width: 150px;
    height: 125px;
    border: 8px solid #fff;
    background: linear-gradient(145deg, #c5d9e6, #87a9bd);
    box-shadow: 0 7px 15px rgba(0,0,0,.12);
}

.room-window::before,
.room-window::after {
    content: "";
    position: absolute;
    background: #fff;
}

.room-window::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 5px;
}

.room-window::after {
    top: 0;
    left: 50%;
    width: 5px;
    height: 100%;
}

.room-sofa {
    position: absolute;
    right: 38px;
    bottom: 55px;
    width: 240px;
    height: 105px;
    border-radius: 24px 24px 16px 16px;
    background: #536f82;
    box-shadow: inset 0 -18px rgba(0,0,0,.08);
}

.room-sofa::before,
.room-sofa::after {
    content: "";
    position: absolute;
    bottom: -18px;
    width: 14px;
    height: 24px;
    background: #3a2d25;
}

.room-sofa::before { left: 24px; }
.room-sofa::after { right: 24px; }

.room-table {
    position: absolute;
    left: 185px;
    bottom: 35px;
    width: 130px;
    height: 42px;
    border-radius: 50%;
    background: #d0a55d;
    box-shadow: 0 16px 0 -10px #6b4d32;
}

.room-lamp {
    position: absolute;
    right: 18px;
    top: 45px;
    width: 12px;
    height: 155px;
    background: #273845;
}

.room-lamp::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -29px;
    width: 70px;
    height: 45px;
    border-radius: 50% 50% 10px 10px;
    background: #d8ad3c;
}

.room-plant {
    position: absolute;
    left: 35px;
    bottom: 30px;
    width: 52px;
    height: 70px;
    border-radius: 50% 50% 16px 16px;
    background: #476c4c;
    box-shadow:
        22px -18px 0 -6px #567f5c,
        -20px -12px 0 -9px #5e895f;
}

.room-rug {
    position: absolute;
    right: 70px;
    bottom: 18px;
    width: 280px;
    height: 70px;
    border-radius: 50%;
    background: rgba(238,226,204,.78);
}

.showcase-main > strong {
    display: block;
    margin-top: 14px;
    font-size: 1.02rem;
}

.showcase-small {
    width: 160px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: var(--navy-950);
    background: var(--white);
}

.showcase-small::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
}

.showcase-small span,
.showcase-small strong {
    position: relative;
}

.showcase-small span {
    font-size: .8rem;
    font-weight: 900;
}

.showcase-small strong {
    margin-top: 3px;
    color: var(--navy-700);
    font-size: .72rem;
}

.showcase-one {
    top: 35px;
    right: 0;
}

.showcase-one::before {
    background:
        radial-gradient(circle at 70% 25%, #d8ad3c 0 12px, transparent 13px),
        linear-gradient(145deg, #fff8e2, #ffffff);
}

.showcase-two {
    right: 12px;
    bottom: 65px;
}

.showcase-two::before {
    background:
        radial-gradient(circle at 70% 28%, #124775 0 16px, transparent 17px),
        linear-gradient(145deg, #e8f1f7, #ffffff);
}

.hero-deal {
    position: absolute;
    right: 35px;
    bottom: 6px;
    max-width: 235px;
    padding: 13px 16px;
    border-radius: 12px;
    background: var(--gold-500);
    color: var(--navy-950);
    box-shadow: var(--shadow-md);
    transform: rotate(-3deg);
}

.hero-deal small,
.hero-deal strong {
    display: block;
}

.hero-deal small {
    font-size: .66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-deal strong {
    margin-top: 3px;
    line-height: 1.2;
}

.trust-strip {
    border-bottom: 1px solid var(--slate-200);
    background: var(--white);
}

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

.trust-item {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 18px;
    border-right: 1px solid var(--slate-200);
}

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

.trust-icon {
    width: 44px;
    height: 44px;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: #e8f1f7;
    color: var(--navy-700);
}

.trust-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item > span:last-child {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    color: var(--navy-950);
    font-size: .88rem;
}

.trust-item small {
    color: var(--slate-500);
    font-size: .72rem;
}

.market-section {
    padding: 72px 0;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.section-heading-row h2 {
    margin: 8px 0 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.03em;
}

.section-heading-row p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--slate-500);
}

.section-link {
    flex-shrink: 0;
    color: var(--navy-700);
    font-weight: 900;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    position: relative;
    min-height: 205px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-art {
    position: absolute;
    inset: 0;
    opacity: .95;
}

.category-art::before,
.category-art::after {
    content: "";
    position: absolute;
}

.category-furniture .category-art {
    background: linear-gradient(145deg, #f6eee7, #fff);
}

.category-furniture .category-art::before {
    left: 24px;
    right: 24px;
    top: 42px;
    height: 72px;
    border-radius: 18px 18px 12px 12px;
    background: #a87555;
    box-shadow: inset 0 -16px rgba(0,0,0,.08);
}

.category-lighting .category-art {
    background: linear-gradient(145deg, #fff6d8, #fff);
}

.category-lighting .category-art::before {
    left: 50%;
    top: 30px;
    width: 10px;
    height: 90px;
    background: #273845;
    transform: translateX(-50%);
}

.category-lighting .category-art::after {
    left: 50%;
    top: 20px;
    width: 70px;
    height: 48px;
    border-radius: 50% 50% 12px 12px;
    background: var(--gold-500);
    transform: translateX(-50%);
}

.category-smart .category-art {
    background: linear-gradient(145deg, #e8f2f7, #fff);
}

.category-smart .category-art::before {
    left: 50%;
    top: 34px;
    width: 60px;
    height: 90px;
    border: 7px solid var(--navy-700);
    border-radius: 16px;
    transform: translateX(-50%);
}

.category-smart .category-art::after {
    left: 50%;
    top: 70px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold-500);
    transform: translateX(-50%);
}

.category-appliances .category-art {
    background: linear-gradient(145deg, #f2f5f7, #fff);
}

.category-appliances .category-art::before {
    left: 50%;
    top: 32px;
    width: 82px;
    height: 100px;
    border-radius: 18px;
    background: #cfd7de;
    box-shadow: inset 0 -34px #9eabb5;
    transform: translateX(-50%);
}

.category-home .category-art {
    background: linear-gradient(145deg, #eef7ef, #fff);
}

.category-home .category-art::before {
    left: 50%;
    top: 40px;
    width: 92px;
    height: 78px;
    background: #709274;
    clip-path: polygon(50% 0, 100% 42%, 88% 42%, 88% 100%, 12% 100%, 12% 42%, 0 42%);
    transform: translateX(-50%);
}

.category-maintenance .category-art {
    background: linear-gradient(145deg, #f8efe5, #fff);
}

.category-maintenance .category-art::before {
    left: 50%;
    top: 42px;
    width: 95px;
    height: 68px;
    border-radius: 12px;
    background: #d27b34;
    box-shadow: inset 0 12px rgba(255,255,255,.25);
    transform: translateX(-50%);
}

.category-copy,
.category-arrow {
    position: relative;
}

.category-copy {
    display: flex;
    flex-direction: column;
}

.category-copy strong {
    color: var(--navy-950);
}

.category-copy small {
    margin-top: 3px;
    color: var(--slate-500);
    font-size: .72rem;
}

.category-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: var(--navy-700);
    font-weight: 900;
}

.deal-section {
    padding: 0 0 72px;
}

.deal-banner {
    min-height: 250px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: clamp(28px, 5vw, 58px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 82% 20%, rgba(216,173,60,.3), transparent 24%),
        linear-gradient(120deg, var(--gold-100), var(--white));
    box-shadow: var(--shadow-sm);
}

.deal-banner h2 {
    max-width: 780px;
    margin: 8px 0 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.deal-banner p {
    max-width: 720px;
    margin: 14px 0 0;
    color: var(--slate-500);
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.favorite-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    background: rgba(255,255,255,.94);
    color: var(--slate-500);
    font-size: 1.15rem;
}

.favorite-button.is-saved {
    color: #b42318;
}

.product-art {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: var(--slate-100);
}

.product-art span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-art-lamp {
    background: linear-gradient(145deg, #fff5d6, #f8fafc);
}

.product-art-lamp span {
    width: 14px;
    height: 120px;
    background: #2a3b47;
}

.product-art-lamp span::before {
    content: "";
    position: absolute;
    left: -38px;
    top: -25px;
    width: 90px;
    height: 58px;
    border-radius: 50% 50% 12px 12px;
    background: var(--gold-500);
}

.product-art-doorbell {
    background: linear-gradient(145deg, #e7f0f6, #f8fafc);
}

.product-art-doorbell span {
    width: 70px;
    height: 130px;
    border-radius: 20px;
    background: var(--navy-800);
    box-shadow: inset 0 0 0 7px #173e63;
}

.product-art-doorbell span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7ea7c3;
    transform: translateX(-50%);
}

.product-art-chair {
    background: linear-gradient(145deg, #f4ece7, #f8fafc);
}

.product-art-chair span {
    width: 120px;
    height: 90px;
    border-radius: 24px 24px 14px 14px;
    background: #9f6e50;
    box-shadow: inset 0 -20px rgba(0,0,0,.08);
}

.product-art-chair span::before,
.product-art-chair span::after {
    content: "";
    position: absolute;
    bottom: -26px;
    width: 12px;
    height: 28px;
    background: #513b2e;
}

.product-art-chair span::before { left: 18px; }
.product-art-chair span::after { right: 18px; }

.product-art-fryer {
    background: linear-gradient(145deg, #edf1f4, #f8fafc);
}

.product-art-fryer span {
    width: 105px;
    height: 128px;
    border-radius: 24px;
    background: #aab4bc;
    box-shadow: inset 0 -42px #7d8992;
}

.product-art-fryer span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 22px;
    width: 50px;
    height: 18px;
    border-radius: 9px;
    background: var(--navy-800);
    transform: translateX(-50%);
}

.product-content {
    padding: 18px;
}

.product-content small {
    color: var(--navy-700);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.product-content h3 {
    min-height: 48px;
    margin: 7px 0 0;
    color: var(--navy-950);
    font-size: 1rem;
}

.product-rating {
    margin-top: 8px;
    color: #e0a20f;
    font-size: .8rem;
}

.product-rating span {
    color: var(--slate-500);
}

.product-price {
    display: block;
    margin-top: 12px;
    color: var(--navy-950);
    font-size: 1.3rem;
}

.add-to-cart {
    width: 100%;
    min-height: 44px;
    margin-top: 16px;
    border: 0;
    border-radius: 9px;
    background: var(--navy-800);
    color: var(--white);
    font-weight: 900;
}

.add-to-cart.is-added {
    background: var(--success);
}

.property-section {
    padding: 76px 0;
    background: var(--navy-950);
    color: var(--white);
}

.property-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .65fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
}

.property-copy h2 {
    max-width: 800px;
    margin: 10px 0 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}

.property-copy p {
    max-width: 720px;
    color: #cedce7;
}

.property-copy ul {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.property-copy li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--gold-400);
    font-weight: 900;
}

.property-card {
    padding: 32px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.08);
    box-shadow: 0 24px 55px rgba(0,0,0,.22);
}

.property-card > span {
    color: var(--gold-400);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.property-card h3 {
    margin: 9px 0 0;
    font-size: 1.65rem;
    line-height: 1.1;
}

.property-card p {
    color: #cedce7;
}

.site-footer {
    background: #03111e;
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 42px;
    padding-top: 56px;
    padding-bottom: 44px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}


.footer-brand h2,
.footer-brand p {
    margin: 0;
}

.footer-brand h2 {
    font-size: 1.05rem;
    text-transform: uppercase;
}

.footer-brand p {
    margin-top: 4px;
    color: var(--gold-400);
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin: 0 0 5px;
    font-size: .92rem;
}

.footer-column a {
    color: #aebfcd;
    font-size: .84rem;
}

.footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #91a5b5;
    font-size: .78rem;
}

.content-area {
    padding-top: 60px;
    padding-bottom: 60px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 980px) {
    .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "move move"
            "living lighting"
            "kitchen bathroom"
            "smart smart";
    }

    .collection-move-in,
    .collection-card-large {
        min-height: 420px;
    }

    .collection-smart-home {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .collections-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "move"
            "living"
            "lighting"
            "kitchen"
            "bathroom"
            "smart";
    }

    .collection-card,
    .collection-card-large,
    .collection-move-in,
    .collection-smart-home {
        min-height: 300px;
    }
}

    .market-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .account-action {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: 430px;
    }

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

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--slate-200);
    }

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

    .property-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 720px) {
    .utility-inner {
        justify-content: center;
    }

    .utility-inner nav {
        display: none;
    }

    .brand-name small {
        display: none;
    }

    .cart-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .market-search {
        grid-template-columns: 1fr 52px;
    }

    .market-search select {
        display: none;
    }

    .main-navigation {
        display: none;
    }

    .main-navigation.is-open {
        display: block;
    }

    .nav-layout {
        align-items: stretch;
        flex-direction: column;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .shop-menu-wrap {
        align-self: auto;
    }

    .shop-menu-toggle {
        width: 100%;
        min-height: 46px;
        justify-content: center;
        border-radius: 9px;
    }

    .shop-menu-panel {
        position: static;
        width: 100%;
        margin-top: 8px;
        border-radius: 12px;
        box-shadow: none;
    }

    .primary-menu {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-menu a {
        background: var(--slate-50);
    }

    .hero-layout {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-copy h1 {
        font-size: 3.3rem;
    }

    .showcase-main {
        inset: 0 25px 40px 0;
    }

    .showcase-small {
        width: 135px;
    }

    .showcase-one {
        right: -4px;
    }

    .showcase-two {
        right: 4px;
    }

    .hero-deal {
        right: 12px;
    }

    .trust-grid,
    .category-grid,
    .product-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--slate-200);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section-heading-row,
    .deal-banner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .deal-banner {
        display: flex;
    }

    .footer-bottom {
        justify-content: center;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

/* Version 2.1: text-only brand */
.brand {
    gap: 0;
}

.brand-name strong {
    font-size: 1.12rem;
}

.footer-brand {
    gap: 0;
}
/* =========================================================
   COLLECTIONS
   ========================================================= */

.market-collections {
    padding: 80px 0;
    background: var(--slate-100);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 36px;
}

.section-heading > div {
    max-width: 720px;
}

.section-eyebrow {
    margin: 0 0 8px;
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0 0 12px;
    color: var(--navy-950);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
}

.section-heading p {
    margin: 0;
    color: var(--slate-500);
    font-size: 1rem;
    line-height: 1.7;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--navy-900);
    font-weight: 800;
    transition: color 0.2s ease;
}

.section-link:hover {
    color: var(--gold-500);
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: repeat(2, 300px);
    grid-template-areas:
        "move living lighting"
        "move kitchen bathroom";
    gap: 18px;
}

.collection-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 240px;
    padding: 28px;
    overflow: hidden;
    border-radius: var(--radius-md);
    color: var(--white);
    isolation: isolate;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.collection-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(
            180deg,
            rgba(4, 24, 43, 0.04) 10%,
            rgba(4, 24, 43, 0.88) 100%
        );
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-size: cover;
    transition: transform 0.45s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.collection-card:hover::after {
    transform: scale(1.05);
}

.collection-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.collection-content {
    position: relative;
    z-index: 2;
}

.collection-content p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.collection-content h3 {
    margin: 0 0 15px;
    color: var(--white);
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    line-height: 1.08;
}

.collection-action {
    display: inline-flex;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold-400);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 800;
}

.collection-label {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Temporary backgrounds until lifestyle images are added */

.collection-move-in::after{
    background-image:
        linear-gradient(rgba(4,24,43,.10),rgba(4,24,43,.88)),
        url("../images/collections/move-in-essentials.png");
}

.collection-living::after{
    background-image:
        linear-gradient(rgba(4,24,43,.10),rgba(4,24,43,.88)),
        url("../images/collections/living-room-refresh.png");
}

.collection-lighting::after{
    background-image:
        linear-gradient(rgba(4,24,43,.10),rgba(4,24,43,.88)),
        url("../images/collections/modern-lighting.png");
}

.collection-kitchen::after{
    background-image:
        linear-gradient(rgba(4,24,43,.10),rgba(4,24,43,.88)),
        url("../images/collections/kitchen-upgrades.png");
}

.collection-bathroom::after{
    background-image:
        linear-gradient(rgba(4,24,43,.10),rgba(4,24,43,.88)),
        url("../images/collections/bathroom-refresh.png");
}

.collection-smart-home::after{
    background-image:
        linear-gradient(rgba(4,24,43,.10),rgba(4,24,43,.88)),
        url("../images/collections/smart-home.png");
}

.collection-card::after{
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

@media (max-width: 980px) {
    .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-card-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .market-collections {
        padding: 56px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .collections-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-areas:
        "move living lighting"
        "move bathroom smart"
        "kitchen kitchen kitchen";
    gap: 18px;
}

.collection-move-in {
    grid-area: move;
    min-height: 618px;
}

.collection-living {
    grid-area: living;
}

.collection-lighting {
    grid-area: lighting;
}

.collection-kitchen {
    grid-area: kitchen;
    min-height: 300px;
}

.collection-bathroom {
    grid-area: bathroom;
}

.collection-smart-home {
    grid-area: smart;
}

.collection-card {
    min-height: 300px;
}

.collection-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 618px;
}
}
/* =========================================================
   COLLECTIONS GRID OVERRIDE
   ========================================================= */

/* =========================================================
   COLLECTIONS GRID - BALANCED LAYOUT
   ========================================================= */

.collections-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(3, 260px);
    grid-template-areas:
        "move living lighting"
        "move kitchen bathroom"
        "smart favorites favorites";
    gap: 18px;
}

.collection-move-in {
    grid-area: move;
}

.collection-living {
    grid-area: living;
}

.collection-lighting {
    grid-area: lighting;
}

.collection-kitchen {
    grid-area: kitchen;
}

.collection-bathroom {
    grid-area: bathroom;
}

.collection-smart-home {
    grid-area: smart;
}

.collection-featured-deal {
    grid-area: favorites;
}

.collection-card,
.collection-card-large,
.collection-move-in,
.collection-smart-home,
.collection-featured-deal {
    min-height: 260px;
}

.collection-move-in {
    min-height: 538px;
}

.collection-card-large {
    grid-column: auto;
    grid-row: auto;
}

.collection-smart-home::after {
    background-position: center;
}

.collection-featured-deal {
    background:
        linear-gradient(
            135deg,
            var(--navy-900),
            var(--navy-700)
        );
}

@media (max-width: 980px) {
    .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        grid-template-areas:
            "move move"
            "living lighting"
            "kitchen bathroom"
            "smart favorites";
    }

    .collection-move-in,
    .collection-card-large {
        min-height: 400px;
    }

    .collection-card,
    .collection-smart-home,
    .collection-featured-deal {
        min-height: 280px;
    }
}

@media (max-width: 680px) {
    .collections-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "move"
            "living"
            "lighting"
            "kitchen"
            "bathroom"
            "smart"
            "favorites";
    }

    .collection-card,
    .collection-card-large,
    .collection-move-in,
    .collection-smart-home,
    .collection-featured-deal {
        min-height: 300px;
    }
}
.collection-featured-deal::after {
    background-image:
        linear-gradient(
            180deg,
            rgba(4, 24, 43, 0.08) 20%,
            rgba(4, 24, 43, 0.90) 100%
        ),
        url("../images/collections/resident-favorites.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}