:root {
  --ink: #1f2520;
  --muted: #70756e;
  --line: #dfe1d9;
  --paper: #f6f6f1;
  --cream: #ebe8dd;
  --green: #dce5ce;
  --green-deep: #5d7353;
  --orange: #c2683d;
  --white: #fff;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.announcement {
  padding: 10px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .02em;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 38px;
  background: rgba(246, 246, 241, .94);
  border-bottom: 1px solid rgba(31, 37, 32, .09);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 230px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-copy { display: grid; gap: 0; }
.brand-copy strong { font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .03em; text-transform: uppercase; }
.primary-nav { display: flex; gap: 24px; margin-left: auto; margin-right: 30px; }
.primary-nav a { color: #4d534e; font-size: 13px; transition: color .2s; }
.primary-nav a:hover { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-button, .language-switch, .menu-toggle, .close-button {
  border: 0;
  background: transparent;
  color: var(--ink);
}
.icon-button { font-size: 25px; line-height: 1; }
.language-switch { font-size: 12px; font-weight: 700; }
.menu-toggle { display: none; font-size: 22px; }

.hero {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) 1.22fr;
  min-height: 650px;
  background: var(--cream);
}
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 75px clamp(28px, 7vw, 110px); }
.eyebrow { margin: 0 0 18px; color: var(--green-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -.04em; }
h1 { max-width: 520px; margin-bottom: 22px; font-size: clamp(52px, 6vw, 92px); line-height: .98; }
h2 { margin-bottom: 14px; font-size: clamp(37px, 4.2vw, 62px); line-height: 1.02; }
h3 { margin-bottom: 20px; font-size: 24px; line-height: 1.2; }
.hero-description { max-width: 390px; color: #61665f; font-size: 15px; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--orange); }
.button-light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; }
.text-link span { color: var(--orange); font-size: 17px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.hero-image-wrap { position: relative; min-height: 460px; overflow: hidden; }
.hero-image-wrap img { height: 100%; min-height: 460px; object-fit: cover; }
.hero-caption { position: absolute; right: 24px; bottom: 24px; left: 24px; display: flex; justify-content: space-between; color: var(--white); font-size: 11px; text-shadow: 0 1px 7px rgba(0,0,0,.45); }

.category-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.category-item { display: grid; grid-template-columns: 38px 1fr 20px; align-items: center; gap: 8px; min-height: 94px; padding: 20px 28px; border-right: 1px solid var(--line); transition: background .2s; }
.category-item:last-child { border-right: 0; }
.category-item:hover, .category-item.active { background: var(--green); }
.category-number { align-self: start; color: var(--green-deep); font-size: 11px; font-weight: 700; }
.category-item strong { font-size: 14px; }
.category-arrow { justify-self: end; color: var(--orange); font-size: 17px; }

.section { max-width: var(--max); margin: 0 auto; padding: 115px 32px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-heading h2 { max-width: 700px; margin-bottom: 0; }
.products-section { max-width: 1380px; }
.product-breadcrumb { display: flex; gap: 9px; margin-bottom: 45px; color: var(--muted); font-size: 10px; }
.product-breadcrumb strong { color: var(--ink); }
.product-center-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 65px; }
.product-center-heading h2 { margin-bottom: 18px; font-size: clamp(52px, 7vw, 94px); }
.product-center-intro { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 15px; }
.product-center-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 54px; align-items: start; }
.filter-sidebar { position: sticky; top: 105px; border-top: 1px solid var(--ink); }
.filter-sidebar-head { display: flex; align-items: center; justify-content: space-between; min-height: 60px; border-bottom: 1px solid var(--line); }
.filter-sidebar-head strong { font-size: 13px; text-transform: uppercase; }
.filter-sidebar-head button { padding: 5px 0; border: 0; color: var(--muted); background: transparent; font-size: 10px; text-decoration: underline; }
.catalog-search { display: flex; align-items: center; gap: 9px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.catalog-search > span { color: var(--orange); font-size: 22px; line-height: 1; }
.catalog-search input { padding: 4px 0; border: 0; font-size: 12px; }
.toggle-row { display: flex; align-items: center; gap: 10px; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 11px; font-weight: 700; }
.toggle-row input { width: 16px; height: 16px; margin: 0; accent-color: var(--orange); }
.filter-group { border-bottom: 1px solid var(--line); }
.filter-group-title { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 58px; padding: 0; border: 0; color: var(--ink); background: transparent; font-size: 12px; font-weight: 700; }
.filter-group-title > span:last-child { color: var(--orange); font-size: 17px; font-weight: 400; }
.filter-options { display: grid; gap: 12px; padding: 0 0 20px; }
.filter-options[hidden] { display: none; }
.filter-options label { display: flex; align-items: center; gap: 10px; color: #5f655f; font-size: 11px; cursor: pointer; }
.filter-options input { width: 14px; height: 14px; margin: 0; accent-color: var(--orange); }
.colour-options i { width: 17px; height: 17px; border: 1px solid rgba(31,37,32,.15); border-radius: 50%; background: var(--filter-color); }
.catalog-results { min-width: 0; }
.catalog-result-bar { display: flex; align-items: center; justify-content: space-between; min-height: 61px; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.catalog-result-bar > strong { font-size: 12px; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; min-height: 24px; margin: 14px 0 18px; }
.active-filter { display: inline-flex; align-items: center; gap: 8px; padding: 6px 9px; border: 1px solid var(--line); background: var(--white); font-size: 10px; }
.active-filter button { padding: 0; border: 0; color: var(--orange); background: transparent; font-size: 14px; line-height: 1; }
.filter-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-tab { padding: 8px 0; margin-right: 24px; border: 0; border-bottom: 1px solid transparent; color: var(--muted); background: transparent; font-size: 12px; }
.filter-tab.active { color: var(--ink); border-bottom-color: var(--orange); font-weight: 700; }
.select-wrap { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; }
.select-wrap select { padding: 7px 0; border: 0; color: var(--ink); background: transparent; font-size: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 17px; }
.product-card { min-width: 0; }
.product-image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f2f0ec; }
.product-image img { width: 100%; height: 100%; transition: transform .5s; }
.product-image--product img { object-fit: contain; }
.product-image--interior img { object-fit: cover; }
.product-card:hover .product-image--interior img { transform: scale(1.04); }
.product-image-type { position: absolute; right: 10px; bottom: 10px; padding: 5px 7px; color: var(--ink); background: rgba(255,255,255,.92); font-size: 10px; font-weight: 700; }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 5px 8px; color: var(--white); background: var(--orange); font-size: 10px; font-weight: 700; }
.product-info { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0 0; }
.product-info h3 { margin: 0 0 5px; font-size: 15px; }
.product-meta { color: var(--muted); font-size: 11px; }
.product-price { color: var(--orange); font-size: 13px; font-weight: 700; white-space: nowrap; }
.product-colour-row { display: flex; align-items: center; gap: 7px; margin-top: 9px; }
.product-colour-dot { width: 13px; height: 13px; border: 1px solid rgba(31,37,32,.16); border-radius: 50%; background: var(--dot); }
.product-feature-line { margin-top: 7px; color: var(--muted); font-size: 10px; }
.quick-view { width: 100%; margin-top: 14px; padding: 10px 0; border: 1px solid var(--line); color: var(--ink); background: transparent; font-size: 11px; font-weight: 700; opacity: 0; transition: opacity .2s; }
.product-card:hover .quick-view, .quick-view:focus { opacity: 1; }
.empty-state { padding: 50px 0; color: var(--muted); text-align: center; }
.load-more-wrap { display: flex; justify-content: center; padding-top: 26px; }
.load-more { min-width: 180px; }

.finder-section { max-width: none; padding: 0; background: var(--ink); color: var(--white); }
.finder-panel { display: grid; grid-template-columns: .8fr 1.2fr; max-width: var(--max); min-height: 510px; margin: 0 auto; padding: 85px 32px; }
.finder-copy { padding-right: 60px; }
.finder-copy .eyebrow { color: #a8c19d; }
.finder-copy h2 { margin-bottom: 23px; }
.finder-copy p { max-width: 300px; color: #aeb4aa; font-size: 14px; }
.finder-form { align-self: center; max-width: 620px; width: 100%; justify-self: end; }
.finder-progress { height: 2px; margin-bottom: 40px; background: #444a44; }
.finder-progress span { display: block; height: 100%; background: var(--orange); transition: width .3s; }
.step-label { display: block; margin-bottom: 16px; color: #a8c19d; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.finder-step h3 { font-family: "Playfair Display", Georgia, serif; font-size: 32px; font-weight: 600; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-button { min-height: 58px; padding: 0 18px; border: 1px solid #4b534b; color: var(--white); background: transparent; text-align: left; transition: background .2s, border .2s; }
.choice-button:hover { border-color: var(--orange); background: rgba(194, 104, 61, .16); }
.finder-result h3 { margin-bottom: 10px; font-family: "Playfair Display", Georgia, serif; font-size: 38px; }
.finder-result p { max-width: 490px; margin-bottom: 25px; color: #b6beb5; }

.inspiration-section { padding-bottom: 90px; }
.inspiration-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 18px; }
.inspiration-card { position: relative; aspect-ratio: 1 / .95; overflow: hidden; }
.inspiration-card.tall { grid-row: span 2; aspect-ratio: 1 / 1.55; }
.inspiration-card img { height: 100%; object-fit: cover; transition: transform .5s; }
.inspiration-card:hover img { transform: scale(1.04); }
.inspiration-overlay { position: absolute; right: 24px; bottom: 22px; left: 24px; display: grid; gap: 5px; color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.inspiration-overlay span { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.inspiration-overlay strong { font-family: "Playfair Display", Georgia, serif; font-size: 22px; line-height: 1.08; }

.viewer-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; padding-top: 80px; }
.viewer-image { position: relative; aspect-ratio: 1.15 / 1; overflow: hidden; background: #ddd; }
.viewer-image img { height: 100%; object-fit: cover; }
.upload-control { position: absolute; right: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 14px; color: var(--ink); background: var(--white); font-size: 11px; font-weight: 700; cursor: pointer; }
.upload-control span:first-child { color: var(--orange); font-size: 20px; line-height: 1; }
.viewer-copy h2 { margin-bottom: 22px; }
.viewer-copy > p:not(.eyebrow) { max-width: 390px; color: var(--muted); font-size: 14px; }
.viewer-swatches { display: flex; gap: 10px; margin-top: 34px; }
.swatch { width: 32px; height: 32px; padding: 0; border: 3px solid transparent; border-radius: 50%; background: var(--swatch); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.swatch.active { outline: 1px solid var(--ink); outline-offset: 3px; }

.news-section { padding-top: 40px; padding-bottom: 70px; }
.news-intro { max-width: 520px; margin: -18px 0 28px; color: var(--muted); font-size: 14px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-card { display: grid; gap: 14px; }
.news-card img { aspect-ratio: 1.2 / .86; object-fit: cover; width: 100%; }
.news-card strong { display: block; margin-bottom: 8px; font-size: 18px; line-height: 1.2; }
.news-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.news-card .news-meta { color: var(--green-deep); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.detail-root { padding-bottom: 90px; background: var(--paper); }
.detail-page { max-width: 1280px; margin: 0 auto; padding: 50px 32px 0; }
.detail-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--muted); font-size: 11px; }
.detail-breadcrumb strong { color: var(--ink); }
.detail-shell { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 54px; align-items: start; }
.detail-gallery { display: grid; gap: 12px; }
.detail-gallery-main { aspect-ratio: 1 / 1; overflow: hidden; background: #f2f0ec; }
.detail-gallery-main img { width: 100%; height: 100%; }
.detail-gallery-main--product img { object-fit: contain; }
.detail-gallery-main--interior img { object-fit: cover; }
.detail-gallery-thumbs { display: flex; gap: 10px; }
.detail-thumb { position: relative; flex: 1; padding: 0; border: 1px solid var(--line); background: #f2f0ec; overflow: hidden; }
.detail-thumb.active { border-color: var(--orange); }
.detail-thumb img { display: block; aspect-ratio: 1 / 1; width: 100%; }
.detail-thumb--product img { object-fit: contain; }
.detail-thumb--interior img { object-fit: cover; }
.detail-thumb span { position: absolute; right: 8px; bottom: 8px; padding: 4px 6px; color: var(--ink); background: rgba(255,255,255,.92); font-size: 10px; font-weight: 700; }
.detail-copy .eyebrow { margin-bottom: 10px; }
.detail-copy h1 { margin: 0 0 16px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(44px, 5vw, 76px); line-height: .98; letter-spacing: -.04em; }
.detail-summary { color: var(--muted); font-size: 15px; }
.detail-meta { display: grid; gap: 10px; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 12px; }
.detail-meta-row { display: flex; justify-content: space-between; gap: 20px; }
.detail-meta-row span:first-child { color: var(--muted); }
.detail-action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.detail-section { margin-top: 64px; padding-top: 26px; border-top: 1px solid var(--line); }
.detail-section h2 { margin-bottom: 18px; font-size: 34px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.detail-panel p, .detail-panel li { color: var(--muted); font-size: 14px; }
.detail-spec-table { display: grid; gap: 12px; }
.detail-spec-row { display: grid; grid-template-columns: 170px 1fr; gap: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); font-size: 13px; }
.detail-spec-row span:first-child { color: var(--muted); }
.detail-related { margin-top: 60px; }
.detail-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.detail-related-card img { aspect-ratio: 1.2 / .95; object-fit: cover; width: 100%; }
.detail-related-card strong { display: block; margin: 10px 0 6px; font-size: 15px; }
.detail-related-card p { margin: 0; color: var(--muted); font-size: 12px; }
.article-hero { aspect-ratio: 1.8 / .72; overflow: hidden; margin-bottom: 24px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(260px, .58fr); gap: 60px; }
.article-content { max-width: 760px; }
.article-content img { width: 100%; margin: 20px 0; }
.article-content h2 { font-size: 30px; }
.article-content p, .article-content li { color: var(--muted); font-size: 15px; }
.article-sidebar { padding-top: 48px; border-top: 1px solid var(--line); }
.article-sidebar h3 { font-size: 22px; }
.article-sidebar a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
.article-sidebar small { display: block; color: var(--muted); margin-top: 4px; }
.news-list-heading { max-width: 760px; margin-bottom: 42px; }
.news-list-heading h1 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.04em;
}
.article-list-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 18px; }
.article-list-card { display: grid; gap: 10px; }
.article-list-card img { width: 100%; aspect-ratio: 1.22 / .82; object-fit: cover; background: #ddd; }
.article-list-card span { color: var(--green-deep); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-list-card strong { font-size: 20px; line-height: 1.18; }
.article-list-card p { margin: 0; color: var(--muted); font-size: 13px; }

body.detail-open main,
body.detail-open .site-footer,
body.detail-open .search-drawer,
body.detail-open .product-modal { display: none; }
body.detail-open .detail-root { display: block; }

.support-band { background: var(--green); }
.support-inner { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; padding-top: 84px; padding-bottom: 84px; }
.support-inner h2 { max-width: 410px; margin-bottom: 0; }
.support-links { border-top: 1px solid rgba(31,37,32,.25); }
.support-link { display: grid; grid-template-columns: 45px 1fr 20px; align-items: center; min-height: 70px; border-bottom: 1px solid rgba(31,37,32,.25); font-size: 14px; }
.support-link span { color: var(--green-deep); font-size: 11px; font-weight: 700; }
.support-link > span:last-child { justify-self: end; color: var(--orange); font-size: 17px; }

.dealer-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 60px; background: var(--white); }
.dealer-card h2 { margin-bottom: 20px; }
.dealer-card p:not(.eyebrow) { max-width: 390px; color: var(--muted); font-size: 14px; }
.dealer-form { align-self: center; }
.dealer-form label, .contact-form label { display: grid; gap: 8px; color: var(--muted); font-size: 11px; font-weight: 700; }
.input-row { display: flex; gap: 10px; margin-top: 10px; }
input, textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); background: transparent; outline: none; }
input:focus, textarea:focus { border-bottom-color: var(--orange); }
.input-row input { min-width: 0; }
.form-feedback { min-height: 22px; margin: 12px 0 0; color: var(--green-deep); font-size: 12px; }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; border-top: 1px solid var(--line); }
.contact-copy h2 { max-width: 460px; }
.contact-copy > p:not(.eyebrow) { max-width: 360px; color: var(--muted); font-size: 14px; }
.contact-form { display: grid; align-content: start; gap: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-form .button { justify-self: start; }

.site-footer { padding: 35px 38px 24px; color: var(--white); background: var(--ink); }
.footer-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-top { padding-bottom: 35px; border-bottom: 1px solid #444b44; }
.brand-footer .brand-copy small { color: #aeb4aa; }
.footer-top > p { margin: 0; color: #aeb4aa; font-family: "Playfair Display", Georgia, serif; font-size: 19px; }
.back-top { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid #697269; font-size: 20px; }
.footer-bottom { padding-top: 22px; color: #8f988e; font-size: 10px; }

.contact-floats {
  position: fixed;
  z-index: 35;
  top: 50%;
  right: 20px;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}
.whatsapp-float,
.email-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(20, 104, 66, .25);
  color: #fff;
  background: #1f8f5f;
  box-shadow: 0 10px 24px rgba(21, 44, 33, .2);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.email-float {
  border-color: rgba(31, 37, 32, .16);
  color: var(--ink);
  background: var(--white);
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  background: #167b4f;
  box-shadow: 0 13px 28px rgba(21, 44, 33, .28);
  transform: translateX(-3px);
}
.email-float:hover,
.email-float:focus-visible {
  color: var(--ink);
  background: #f4f1eb;
  box-shadow: 0 13px 28px rgba(21, 44, 33, .18);
  transform: translateX(-3px);
}
.whatsapp-float:focus-visible,
.email-float:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}
.email-float-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}
.whatsapp-float-copy { display: grid; gap: 2px; white-space: nowrap; }
.whatsapp-float-copy strong { font-size: 12px; line-height: 1; }
.whatsapp-float-copy small { font-size: 10px; line-height: 1; }

.search-drawer, .product-modal { position: fixed; inset: 0; z-index: 40; display: none; }
.search-drawer.open, .product-modal.open { display: block; }
.search-drawer { background: var(--paper); }
.search-drawer-inner { max-width: 760px; margin: 0 auto; padding: 140px 32px 60px; }
.close-button { position: absolute; top: 24px; right: 30px; font-size: 33px; font-weight: 300; }
.search-form { display: flex; gap: 20px; margin: 34px 0; }
.search-form input { font-size: 22px; }
.search-results { display: grid; gap: 10px; }
.search-result-item { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.search-result-item span { color: var(--muted); font-size: 11px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(31,37,32,.7); }
.modal-card { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; max-width: 900px; margin: 8vh auto; background: var(--paper); }
.modal-card > img { height: 100%; min-height: 440px; object-fit: cover; }
.modal-content { padding: 60px 45px; }
.modal-content h2 { font-size: 48px; }
.modal-content > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.modal-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.modal-spec { padding: 8px 10px; background: var(--green); color: #52684b; font-size: 11px; }

@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .primary-nav { display: none; position: absolute; top: 77px; right: 0; left: 0; flex-direction: column; gap: 0; margin: 0; padding: 10px 20px 20px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 75px 28px 60px; }
  .hero-image-wrap { min-height: 430px; }
  .category-item { padding: 18px 15px; }
  .category-item strong { font-size: 12px; }
  .section { padding: 85px 24px; }
  .product-center-layout { grid-template-columns: 1fr; gap: 30px; }
  .filter-sidebar { position: static; }
  .filter-sidebar-head { cursor: pointer; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .finder-panel, .support-inner, .contact-section, .dealer-card { grid-template-columns: 1fr; gap: 45px; }
  .finder-panel { padding: 72px 24px; }
  .finder-copy { padding-right: 0; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; }
  .inspiration-card.tall { grid-row: auto; grid-column: span 2; aspect-ratio: 1.35 / 1; }
  .viewer-section { gap: 45px; }
  .news-grid, .article-list-grid { grid-template-columns: 1fr; }
  .dealer-card { padding: 38px 28px; }
  .detail-shell, .detail-grid, .detail-related-grid, .article-layout { grid-template-columns: 1fr; }
  .detail-spec-row { grid-template-columns: 1fr; gap: 6px; }
  .article-hero { aspect-ratio: 1.3 / .85; }
  .modal-card { grid-template-columns: 1fr; max-width: 92%; margin: 5vh auto; max-height: 90vh; overflow: auto; }
  .modal-card > img { min-height: 230px; max-height: 280px; }
  .contact-floats { top: auto; right: 16px; bottom: 18px; transform: none; }
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible,
  .email-float:hover,
  .email-float:focus-visible { transform: translateY(-3px); }
}
@media (max-width: 560px) {
  h1 { font-size: 55px; }
  h2 { font-size: 39px; }
  .hero-actions, .filter-toolbar, .footer-top, .footer-bottom, .input-row, .search-form { align-items: stretch; flex-direction: column; }
  .category-strip { grid-template-columns: repeat(2, 1fr); }
  .category-item:nth-child(2) { border-right: 0; }
  .category-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .product-center-heading { align-items: start; flex-direction: column; }
  .product-center-heading { margin-bottom: 42px; }
  .product-center-layout { gap: 22px; }
  .filter-sidebar { padding: 0 16px; background: var(--white); }
  .catalog-result-bar { align-items: start; flex-direction: column; justify-content: center; gap: 8px; }
  .product-grid { gap: 22px 12px; }
  .product-info { display: block; }
  .product-price { display: block; margin-top: 7px; }
  .quick-view { opacity: 1; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .inspiration-card.tall { grid-column: auto; }
  .viewer-section { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-top > p { order: 3; }
  .footer-bottom { align-items: start; }
  .detail-page { padding-inline: 18px; }
  .detail-shell { gap: 24px; }
  .detail-copy h1 { font-size: 39px; }
  .contact-floats { right: 14px; bottom: 14px; }
  .whatsapp-float,
  .email-float { min-height: 48px; padding: 6px; }
  .whatsapp-float-copy { display: none; }
  .whatsapp-float-icon,
  .email-float-icon { width: 34px; height: 34px; }
}
