:root {
    --brand: #0f0d0a;
    --accent: #c9a24d;
    --ink: #17130d;
    --muted: #6d6253;
    --line: #e7d9bd;
    --paper: #fffaf2;
    --warm: #f6efe2;
    --soft: #f0dfbd;
    --gold: #c9a24d;
    --shadow: 0 18px 54px rgba(17, 13, 8, .14);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.announcement {
    background: #0f0d0a;
    color: #f4d68b;
    text-align: center;
    font-size: .86rem;
    padding: 8px 12px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,250,242,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
.header-grid {
    min-height: 70px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
}
.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f0d0a, #2b2115);
    color: #f4d68b;
    border: 1px solid rgba(201, 162, 77, .5);
    font-size: .82rem;
}
.header-search {
    display: grid;
    grid-template-columns: minmax(120px, 156px) 1fr 46px;
    min-height: 40px;
    border: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #eee7da;
}
.header-search-category {
    position: relative;
    display: block;
    border-right: 1px solid #fff;
    color: var(--ink);
    font-weight: 500;
}
.header-search select,
.header-search input,
.header-search button {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 0;
    min-height: 40px;
    padding: 9px 16px;
}
.header-search select {
    height: 100%;
    color: #6d5421;
    cursor: pointer;
}
.header-search input {
    min-width: 0;
}
.header-search button {
    display: grid;
    place-items: center;
    color: #17130d;
    padding: 0;
    cursor: pointer;
}
.header-search button span {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.header-search button span::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.link-button,
.icon-link,
.menu-toggle,
.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    background: var(--brand);
    color: #fff;
    padding: 11px 17px;
    font-weight: 760;
    cursor: pointer;
}
.icon-link,
.menu-toggle {
    background: #f2e8d7;
    color: var(--ink);
}
.inquiry-count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    margin-left: 6px;
    border-radius: 50%;
    background: var(--accent);
    color: #17130d;
    font-size: .78rem;
}
.menu-toggle { display: none; }
.main-nav {
    border-top: 1px solid var(--line);
}
.nav-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}
.nav-scroll a {
    padding: 13px 0;
    color: #33291d;
    white-space: nowrap;
    font-weight: 650;
    font-size: .95rem;
}
.hero {
    min-height: min(76vh, 700px);
    background-size: cover;
    background-position: center;
    display: grid;
    align-items: center;
    color: #fff;
}
.hero-inner {
    padding: 76px 0 96px;
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: .78rem;
}
.hero .eyebrow { color: #f4d68b; }
.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.25rem, 6vw, 4.9rem);
    line-height: 1.02;
}
.hero p {
    max-width: 650px;
    margin: 18px 0 0;
    font-size: 1.08rem;
    color: rgba(255,255,255,.9);
}
.promo-banner {
    background: var(--promo-bg);
    color: var(--promo-text);
    overflow: hidden;
}
.promo-banner-inner {
    min-height: 104px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.promo-banner img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: var(--radius);
    background: rgba(255,255,255,.16);
}
.promo-banner p,
.promo-banner h2,
.promo-banner span {
    margin: 0;
}
.promo-banner p {
    color: var(--promo-accent);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}
.promo-banner h2 {
    margin-top: 2px;
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    line-height: 1.1;
}
.promo-banner span {
    display: block;
    max-width: 680px;
    color: var(--promo-text);
    opacity: .86;
}
.promo-banner .btn {
    white-space: nowrap;
}
.promo-animate-soft .promo-banner-inner {
    animation: promoSoft 8s ease-in-out infinite;
}
.promo-animate-fade {
    animation: promoFade 7s ease-in-out infinite;
}
.promo-animate-pulse {
    animation: promoPulse 3.8s ease-in-out infinite;
}
@keyframes promoSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}
@keyframes promoFade {
    0%, 100% { opacity: 1; }
    50% { opacity: .88; }
}
@keyframes promoPulse {
    0%, 100% { box-shadow: inset 0 0 0 rgba(255,255,255,0); }
    50% { box-shadow: inset 0 0 42px rgba(255,255,255,.12); }
}
@media (prefers-reduced-motion: reduce) {
    .order-now-btn::after,
    .promo-animate-soft .promo-banner-inner,
    .promo-animate-fade,
    .promo-animate-pulse {
        animation: none;
    }
}
.hero-actions,
.detail-actions,
.product-actions,
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.btn-light { background: #fffaf2; color: var(--ink); border: 1px solid var(--line); }
.btn-muted { background: var(--warm); color: var(--ink); }
.btn-outline-light { background: transparent; border: 1px solid rgba(255,255,255,.7); color: #fff; }
.btn-small { min-height: 38px; padding: 8px 12px; font-size: .88rem; }
.section {
    padding: 58px 0;
}
.section.slim { padding-top: 32px; }
.section-tint { background: var(--warm); }
.section-accent { background: #14100b; color: #fffaf2; }
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.section-head h2,
.value-grid h2,
.page-hero h1 {
    margin: 0;
    line-height: 1.12;
    font-size: clamp(1.65rem, 3vw, 2.65rem);
}
.section-head a { color: var(--accent); font-weight: 800; }
.section-accent .eyebrow,
.section-accent .section-head a { color: #f4d68b; }
.category-grid,
.room-grid,
.product-grid,
.guide-grid,
.testimonial-grid,
.value-grid {
    display: grid;
    gap: 18px;
}
.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-grid.small { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.room-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: stretch; }
.category-card,
.room-card,
.product-card,
.guide-card,
.value-card,
blockquote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(17, 13, 8, .07);
}
.category-card img,
.room-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--soft);
}
.category-card span,
.room-card span {
    display: block;
    padding: 13px 14px;
    font-weight: 800;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.compare-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: flex-start;
    min-height: 34px;
    padding: 8px 12px 0;
    font-weight: 700;
    font-size: .88rem;
    color: #4f4434;
    cursor: pointer;
}
.compare-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--ink);
}
.product-image {
    position: relative;
    background: #17130d;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}
.product-card:hover .product-image img { transform: scale(1.035); }
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: var(--accent);
    color: #17130d;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
}
.product-body {
    padding: 14px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.product-body h3 {
    min-height: 48px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}
.price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}
.old-price {
    color: var(--muted);
    text-decoration: line-through;
}
.product-actions { margin-top: auto; padding-top: 14px; }
.page-hero {
    background: linear-gradient(135deg, #17130d, #3c2d17);
    color: #fffaf2;
}
.page-hero.compact {
    padding: 44px 0;
}
.page-hero p {
    max-width: 720px;
    color: rgba(255,250,242,.78);
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: .92rem;
}
.breadcrumbs a { color: #8c6a24; font-weight: 700; }
.breadcrumbs a::after { content: "/"; margin-left: 8px; color: var(--muted); }
.page-hero .breadcrumbs { color: rgba(255,250,242,.72); }
.page-hero .breadcrumbs a { color: #f4d68b; }
.page-hero .breadcrumbs a::after { color: rgba(255,250,242,.56); }
.catalogue-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
}
.filters {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    align-self: start;
    background: #fff;
}
.filters form,
.inquiry-form,
.search-large {
    display: grid;
    gap: 13px;
}
label { display: grid; gap: 6px; font-weight: 750; color: #313832; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 13px;
    background: #fff;
    color: var(--ink);
}
.result-line {
    color: var(--muted);
    margin-bottom: 16px;
}
.catalogue-widget {
    display: grid;
    gap: 18px;
}
.catalogue-toolbar {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #050706;
}
.catalogue-toolbar-left,
.catalogue-toolbar-right,
.catalogue-sort-form,
.sort-select,
.compare-mode-control,
.view-control {
    display: flex;
    align-items: center;
}
.catalogue-toolbar-left,
.catalogue-toolbar-right {
    gap: 16px;
}
.catalogue-tool-button,
.filter-section-toggle,
.compare-switch,
.view-button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}
.catalogue-tool-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    font-weight: 800;
}
.filter-sliders-icon {
    position: relative;
    width: 18px;
    height: 16px;
    background:
        linear-gradient(currentColor 0 0) 0 4px / 18px 1px no-repeat,
        linear-gradient(currentColor 0 0) 0 11px / 18px 1px no-repeat;
}
.filter-sliders-icon::before,
.filter-sliders-icon::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: #fff;
}
.filter-sliders-icon::before {
    top: 1px;
    left: 4px;
}
.filter-sliders-icon::after {
    top: 8px;
    right: 4px;
}
.catalogue-divider {
    width: 1px;
    min-height: 30px;
    background: var(--line);
}
.sort-select {
    grid-template-columns: none;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}
.sort-select span,
.view-control > span,
.compare-mode-control > span {
    white-space: nowrap;
}
.sort-select select {
    width: auto;
    min-width: 128px;
    border: 0;
    background: transparent;
    padding: 6px 28px 6px 0;
    color: #303832;
    cursor: pointer;
}
.catalogue-count {
    color: var(--muted);
    font-size: .9rem;
}
.compare-mode-control {
    gap: 9px;
    font-weight: 800;
}
.compare-switch {
    position: relative;
    width: 38px;
    height: 22px;
    border-radius: 999px;
    background: #7c715f;
    padding: 2px;
    transition: background .2s ease;
}
.compare-switch span {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.24);
    transition: transform .2s ease;
}
.compare-switch[aria-pressed="true"] {
    background: var(--accent);
}
.compare-switch[aria-pressed="true"] span {
    transform: translateX(16px);
}
.view-control {
    gap: 8px;
    font-weight: 800;
}
.view-button {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    opacity: .58;
}
.view-button.active,
.view-button:hover {
    opacity: 1;
}
.view-icon-list,
.view-icon-grid {
    display: block;
    width: 15px;
    height: 15px;
}
.view-icon-list {
    background:
        linear-gradient(currentColor 0 0) 0 2px / 15px 1px no-repeat,
        linear-gradient(currentColor 0 0) 0 7px / 15px 1px no-repeat,
        linear-gradient(currentColor 0 0) 0 12px / 15px 1px no-repeat;
}
.view-icon-grid {
    background:
        linear-gradient(currentColor 0 0) 0 0 / 5px 5px no-repeat,
        linear-gradient(currentColor 0 0) 10px 0 / 5px 5px no-repeat,
        linear-gradient(currentColor 0 0) 0 10px / 5px 5px no-repeat,
        linear-gradient(currentColor 0 0) 10px 10px / 5px 5px no-repeat;
}
.catalogue-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}
.catalogue-widget.filters-collapsed .catalogue-shell {
    grid-template-columns: minmax(0, 1fr);
}
.catalogue-widget.filters-collapsed .catalogue-filter-panel {
    display: none;
}
.catalogue-filter-panel {
    border-right: 1px solid var(--line);
    padding-right: 28px;
}
.catalogue-filter-form {
    display: grid;
}
.filter-section {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}
.filter-section:first-of-type {
    padding-top: 8px;
}
.filter-section-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    font-weight: 800;
    text-align: left;
}
.filter-section-toggle > span:last-child {
    width: 9px;
    height: 9px;
    border-top: 1.5px solid currentColor;
    border-left: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.filter-section.collapsed .filter-section-toggle > span:last-child {
    transform: rotate(225deg);
}
.filter-section.collapsed .filter-section-body {
    display: none;
}
.filter-section-body {
    display: grid;
    gap: 11px;
    margin-top: 16px;
}
.filter-check {
    position: relative;
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr) auto;
    align-items: start;
    gap: 9px;
    color: #59615b;
    font-weight: 500;
    line-height: 1.25;
    cursor: pointer;
}
.filter-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid #111;
    background: #fff;
}
.filter-check input:checked + .checkmark {
    background:
        linear-gradient(45deg, transparent 45%, #fff 45% 55%, transparent 55%) center / 9px 9px no-repeat,
        var(--brand);
    border-color: var(--brand);
}
.filter-check input:focus-visible + .checkmark {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}
.filter-check small {
    color: #59615b;
    font-size: .82rem;
}
.price-inputs {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}
.price-inputs label {
    display: block;
    font-weight: 500;
}
.price-inputs label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.price-inputs input {
    border-radius: 4px;
    padding: 9px 10px;
    font-size: .84rem;
}
.price-range {
    position: relative;
    height: 36px;
}
.price-range::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    height: 2px;
    background: #111;
}
.price-range input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 36px;
    margin: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
}
.price-range input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid #111;
    border-radius: 50%;
    background: #fff;
    appearance: none;
    pointer-events: auto;
    cursor: pointer;
}
.price-range input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 2px solid #111;
    border-radius: 50%;
    background: #fff;
    pointer-events: auto;
    cursor: pointer;
}
.filter-muted {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}
.filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
}
.filter-actions .btn {
    width: auto;
}
.catalogue-results {
    min-width: 0;
}
.catalogue-products .compare-check {
    display: none;
}
body.compare-mode-enabled .catalogue-products .compare-check {
    display: inline-flex;
}
.product-grid-list {
    grid-template-columns: 1fr;
}
.product-grid-list .product-card {
    display: grid;
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
    align-items: stretch;
}
.product-grid-list .compare-check {
    grid-column: 1 / -1;
    padding-bottom: 8px;
}
.product-grid-list .product-image {
    min-height: 100%;
    aspect-ratio: 4 / 3;
}
.product-grid-list .product-body h3 {
    min-height: 0;
    font-size: 1.12rem;
}
.product-grid-list .product-actions {
    justify-content: flex-start;
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.pagination a {
    min-width: 40px;
    min-height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.pagination .active { background: var(--brand); color: #fff; }
.empty-state {
    margin-top: 18px;
    padding: 20px;
    background: var(--warm);
    border-radius: var(--radius);
    color: var(--muted);
}
.product-detail { padding: 36px 0 10px; }
.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 40px;
    align-items: start;
}
.gallery-main {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.thumbs button {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}
.thumbs img { aspect-ratio: 1 / 1; object-fit: cover; }
.product-info h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}
.product-price {
    margin-top: 18px;
    font-size: 1.55rem;
    color: var(--accent);
    font-weight: 900;
}
.stock-line,
.delivery-note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #f7edd8;
}
.delivery-note {
    display: grid;
    gap: 4px;
    margin-top: 16px;
}
.purchase-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(30, 33, 30, .06);
}
.product-purchase-panel {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}
.quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.quantity-row strong {
    font-size: 1rem;
}
.quantity-stepper {
    width: 150px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.quantity-stepper button,
.quantity-stepper input {
    min-height: 44px;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    text-align: center;
    font-weight: 900;
}
.quantity-stepper button {
    cursor: pointer;
    font-size: 1.1rem;
}
.quantity-stepper input {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 0;
    appearance: textfield;
}
.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}
.order-now-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 52px;
    border-radius: var(--radius);
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 28px rgba(17, 13, 8, .28);
}
.order-now-btn::after {
    content: "";
    position: absolute;
    top: -45%;
    bottom: -45%;
    left: -70%;
    width: 52%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
    transform: skewX(-18deg);
    animation: orderShine 3.2s ease-in-out infinite;
}
@keyframes orderShine {
    0%, 58% { left: -70%; }
    100% { left: 130%; }
}
.purchase-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.purchase-secondary .btn {
    width: 100%;
}
.detail-compare {
    justify-self: start;
    margin-top: 12px;
}
.sticky-order-bar {
    display: none;
}
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 38px;
}
.narrow { max-width: 840px; }
.rich-text h2, .rich-text h3 { line-height: 1.2; }
.rich-text a { color: var(--brand); font-weight: 800; }
.article-image {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 22px;
}
.feature-list {
    padding-left: 18px;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--line);
}
.spec-table th,
.spec-table td {
    padding: 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.spec-table th { width: 38%; background: var(--warm); }
.inquiry-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: start;
}
.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 28px;
    align-items: start;
}
.checkout-form {
    display: grid;
    gap: 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}
.checkout-form h2,
.checkout-form h3 {
    margin: 0;
}
.checkout-form h3 {
    margin-top: 4px;
    font-size: 1.05rem;
}
.cart-row {
    display: grid;
    grid-template-columns: 88px 1fr 92px auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
}
.cart-row img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.cart-row div { display: grid; gap: 4px; }
.cart-row span { color: #8c6a24; font-weight: 850; }
.cart-row button {
    border: 0;
    border-radius: var(--radius);
    padding: 9px 12px;
    background: var(--warm);
    cursor: pointer;
}
.cart-row label {
    font-size: .82rem;
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}
.payment-methods {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    display: grid;
    gap: 8px;
}
.payment-methods legend {
    padding: 0 6px;
    font-weight: 850;
}
.payment-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
    cursor: pointer;
}
.payment-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--brand);
}
.payment-option span {
    display: grid;
    gap: 2px;
}
.payment-option small {
    color: var(--muted);
    font-weight: 500;
}
.payment-option:has(input:checked) {
    border-color: var(--brand);
    background: #f7edd8;
}
.mpesa-phone-field {
    display: grid;
    gap: 6px;
    border: 1px solid #d6e2d9;
    border-radius: var(--radius);
    padding: 12px;
    background: var(--soft);
}
.mpesa-guide {
    margin: 0;
    color: #3f4742;
    font-size: .88rem;
    line-height: 1.45;
}
.mpesa-guide strong {
    color: var(--ink);
}
.checkout-submit {
    width: 100%;
}
.secure-note {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}
.error-state {
    background: #fff0ec;
    color: #8a2f17;
}
.order-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0;
}
.order-summary div {
    display: grid;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: #fff;
}
.order-summary span { color: var(--muted); }
.order-items {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}
.order-items article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: #fff;
}
.order-items img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: var(--radius);
}
.inquiry-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}
.inquiry-row {
    display: grid;
    grid-template-columns: 86px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: #fff;
}
.inquiry-row img {
    width: 86px;
    height: 86px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.inquiry-row div { display: grid; gap: 4px; }
.inquiry-row span { color: #8c6a24; font-weight: 800; }
.inquiry-row button {
    border: 0;
    border-radius: var(--radius);
    padding: 9px 12px;
    background: var(--warm);
    cursor: pointer;
}
.guide-card a { display: grid; gap: 10px; }
.guide-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--soft); }
.guide-card h2, .guide-card h3, .guide-card p { margin: 0; padding: 0 16px; }
.guide-card p { color: var(--muted); padding-bottom: 16px; }
.value-card, blockquote {
    padding: 18px;
    display: grid;
    gap: 8px;
}
.value-card span,
blockquote p { color: var(--muted); margin: 0; }
blockquote cite { font-weight: 850; font-style: normal; }
.social-band {
    background: #14100b;
    color: #fff;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.social-links a {
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius);
    padding: 10px 14px;
}
.site-footer {
    background: #0f0d0a;
    color: #f3f2ee;
    padding: 48px 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
}
.site-footer h2 {
    margin-top: 0;
    font-size: 1rem;
}
.site-footer p,
.site-footer a,
.footer-bottom {
    color: rgba(255,255,255,.76);
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.footer-whatsapp {
    display: inline-flex;
    margin-top: 12px;
    color: #fff !important;
    font-weight: 850;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 28px;
    padding-top: 18px;
    font-size: .9rem;
}
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #1f8f56;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(31,143,86,.28);
}
.compare-tab {
    position: fixed;
    top: 52%;
    right: 0;
    z-index: 31;
    width: 56px;
    min-height: 142px;
    border: 1px solid var(--line);
    border-right: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(25, 30, 28, .16);
    cursor: pointer;
}
.compare-tab span {
    display: inline-block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 850;
    letter-spacing: 0;
}
.compare-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(17, 21, 18, .58);
}
.compare-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 41;
    width: min(520px, 100%);
    height: 100vh;
    background: #fff;
    box-shadow: -24px 0 48px rgba(20, 25, 22, .18);
    transform: translateX(105%);
    transition: transform .2s ease;
    display: grid;
    grid-template-rows: auto 1fr auto;
}
.compare-drawer.open {
    transform: translateX(0);
}
.compare-drawer-head,
.compare-drawer-foot {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.compare-drawer-foot {
    border-top: 1px solid var(--line);
    border-bottom: 0;
    flex-direction: column;
    align-items: stretch;
}
.compare-drawer-head h2 {
    margin: 0;
    font-size: 1.65rem;
}
.compare-drawer-head button,
.link-reset {
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 850;
    cursor: pointer;
}
.compare-drawer-list {
    overflow: auto;
    padding: 20px 22px;
    display: grid;
    align-content: start;
    gap: 14px;
}
.compare-row {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 12px;
    align-items: start;
    background: var(--warm);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
}
.compare-row img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
}
.compare-row-copy {
    display: grid;
    gap: 4px;
}
.compare-row-copy strong {
    line-height: 1.3;
}
.compare-row-copy span {
    color: #8c6a24;
    font-weight: 850;
}
.compare-row-copy small {
    color: var(--muted);
}
.compare-row button {
    border: 0;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--ink);
}
.compare-empty {
    padding: 20px 22px;
    color: var(--muted);
}
.compare-now.disabled {
    opacity: .55;
    pointer-events: none;
}
.compare-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}
.compare-table th,
.compare-table td {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 14px;
    text-align: left;
    vertical-align: top;
}
.compare-table th:first-child {
    width: 150px;
    background: var(--warm);
}
.compare-table img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--soft);
    margin-bottom: 10px;
}
.compare-table span {
    display: block;
    font-weight: 850;
    line-height: 1.25;
}

@media (max-width: 980px) {
    .header-grid { grid-template-columns: 1fr auto; }
    .header-search { grid-column: 1 / -1; }
    .hide-sm { display: none; }
    .menu-toggle { display: inline-flex; }
    .main-nav { display: none; }
    .main-nav.open { display: block; }
    .nav-scroll {
        display: grid;
        gap: 0;
        padding-bottom: 8px;
    }
    .nav-scroll a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .category-grid,
    .category-grid.small { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-grid.product-grid-list { grid-template-columns: 1fr; }
    .guide-grid,
    .testimonial-grid,
    .value-grid,
    .footer-grid,
    .product-layout,
    .content-grid,
    .inquiry-layout,
    .cart-layout,
    .catalogue-layout { grid-template-columns: 1fr; }
    .catalogue-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }
    .catalogue-toolbar-left,
    .catalogue-toolbar-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
    .catalogue-toolbar-right {
        border-top: 1px solid var(--line);
        padding-top: 8px;
    }
    .catalogue-count {
        order: 3;
        width: 100%;
    }
    .catalogue-shell,
    .catalogue-widget.filters-collapsed .catalogue-shell {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .catalogue-filter-panel,
    .catalogue-widget.filters-collapsed .catalogue-filter-panel {
        display: none;
    }
    .catalogue-widget.filters-open .catalogue-filter-panel {
        display: block;
    }
    .catalogue-filter-panel {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 16px;
    }
    .promo-banner-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .promo-banner img {
        display: none;
    }
    .filters { position: static; }
    .social-band,
    .section-head,
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
    .container { width: min(100% - 24px, 1180px); }
    .header-search {
        grid-template-columns: minmax(0, 1fr) 44px;
        grid-template-areas:
            "category submit"
            "query query";
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #f3f3f3;
        overflow: hidden;
    }
    .header-search-category {
        grid-area: category;
        border-right: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    .header-search input {
        grid-area: query;
        border-top: 0;
        background: #fff;
        min-height: 46px;
    }
    .header-search button {
        grid-area: submit;
        min-height: 46px;
        border-bottom: 1px solid #fff;
    }
    .header-search select,
    .header-search input {
        padding-left: 12px;
        padding-right: 10px;
        font-size: 16px;
    }
    .header-search select {
        min-height: 46px;
    }
    .header-actions { gap: 6px; }
    .icon-link,
    .menu-toggle { padding: 9px 10px; font-size: .88rem; }
    .hero { min-height: 70vh; }
    .hero-inner { padding: 54px 0 70px; }
    .section { padding: 42px 0; }
    .promo-banner-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .promo-banner h2 {
        font-size: 1.45rem;
    }
    .promo-banner .btn {
        width: 100%;
    }
    .product-grid { gap: 12px; }
    .catalogue-toolbar-left,
    .catalogue-toolbar-right {
        align-items: center;
    }
    .sort-select select {
        min-width: 112px;
    }
    .catalogue-divider {
        display: none;
    }
    .view-control {
        margin-left: auto;
    }
    .price-inputs {
        grid-template-columns: 1fr;
    }
    .price-inputs > span {
        display: none;
    }
    .product-grid-list .product-card {
        grid-template-columns: 1fr;
    }
    .product-grid-list .product-image {
        aspect-ratio: 1 / 1;
    }
    .product-body { padding: 11px; }
    .product-body h3 { min-height: 58px; font-size: .94rem; }
    .product-actions { display: grid; }
    .product-actions .btn-small {
        min-height: 42px;
        white-space: normal;
    }
    .quantity-row {
        align-items: stretch;
        flex-direction: column;
    }
    .quantity-stepper {
        width: 100%;
        grid-template-columns: 52px minmax(0, 1fr) 52px;
    }
    .quantity-stepper button,
    .quantity-stepper input {
        min-height: 48px;
        font-size: 1.05rem;
    }
    .purchase-secondary {
        grid-template-columns: 1fr;
    }
    .sticky-order-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 34;
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        padding: 10px 14px 14px;
        background: rgba(255,255,255,.96);
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 30px rgba(25, 30, 28, .12);
    }
    .sticky-order-qty {
        display: grid;
        place-items: center;
        height: 48px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        font-weight: 900;
    }
    body.has-sticky-order .floating-whatsapp {
        bottom: 90px;
    }
    .btn, .link-button { width: 100%; }
    .detail-actions .btn { width: auto; }
    .thumbs { grid-template-columns: repeat(4, 1fr); }
    .inquiry-row { grid-template-columns: 70px 1fr; }
    .inquiry-row button { grid-column: 1 / -1; }
    .cart-row { grid-template-columns: 70px 1fr; }
    .cart-row img { width: 70px; height: 70px; }
    .cart-row label,
    .cart-row button { grid-column: 1 / -1; }
    .payment-option {
        align-items: start;
    }
    .order-summary { grid-template-columns: 1fr; }
    .compare-tab {
        top: auto;
        right: 12px;
        bottom: 78px;
        width: auto;
        min-height: 44px;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 0 14px;
    }
    .compare-tab span {
        writing-mode: horizontal-tb;
        transform: none;
    }
    .compare-drawer-head,
    .compare-drawer-list,
    .compare-drawer-foot,
    .compare-empty {
        padding-left: 16px;
        padding-right: 16px;
    }
    .compare-row {
        grid-template-columns: 74px 1fr auto;
    }
    .compare-row img {
        width: 74px;
        height: 74px;
    }
}
