/* ==========================================================================
   Prestige Countertop — Stylesheet
   Consolidated build: base styles + navy/copper theme + AI visualizer
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  --brand: #24304a;
  --brand-dark: #162036;
  --accent: #d96f45;
  --ink: #151d2d;
  --muted: #596273;
  --paper: #fff;
  --tint: #f2f4f8;
  --line: #d9dde6;
  --warm: #f6f1ec;
  --shadow: 0 18px 55px rgba(18,27,48,.12);
  --radius: 16px;
  --shell: 1320px;
}

/* --------------------------------------------------------------------------
   Reset & base elements
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.65 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body,button,input,select,textarea {
  font-family: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,input,select,textarea {
  font-size: 1rem;
}
button,a {
  touch-action: manipulation;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.shell {
  width: min(var(--shell),calc(100% - 40px));
  margin-inline: auto;
}
.shell-wide {
  width: min(1440px,calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border: 2px solid var(--brand);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
}

/* --------------------------------------------------------------------------
   Announcement bar
   -------------------------------------------------------------------------- */
.announcement {
  padding: 8px 20px;
  background: #151d2d;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Site header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220,230,228,.8);
  border-color: #e3e6ec;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
}
.header-row {
  display: flex;
  align-items: center;
  height: 82px;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.035em;
  white-space: nowrap;
  gap: 11px;
}
.brand img {
  max-width: 190px;
  max-height: 48px;
  object-fit: contain;
}
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: var(--brand);
  transform: rotate(7deg);
}
.brand-mark:before,.brand-mark:after,.brand-mark i {
  content: "";
  position: absolute;
  display: block;
  width: 17px;
  height: 4px;
  border-radius: 99px;
  background: #fff;
  transform: rotate(-38deg);
}
.brand-mark:before {
  translate: -3px -6px;
}
.brand-mark:after {
  translate: 3px 6px;
}
.desktop-nav {
  margin-left: auto;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-menu>li {
  position: relative;
}
.main-menu>li>a {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 720;
  gap: 6px;
}
.main-menu>li>a:hover,.main-menu>li>a:focus-visible {
  background: var(--tint);
  color: var(--brand-dark);
}
.nav-chevron {
  font-size: .8rem;
}
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #fff;
  transform: translateY(8px);
  transition: .18s;
  opacity: 0;
  visibility: hidden;
}
.has-children:hover>.sub-menu,.has-children:focus-within>.sub-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: .9rem;
}
.sub-menu a:hover {
  background: var(--tint);
  color: var(--brand);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.round-button,.menu-toggle {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.round-button:hover,.menu-toggle:hover {
  background: var(--tint);
}
.round-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.header-cta,.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 19px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .16s,box-shadow .16s,background .16s;
}
.header-cta {
  background: var(--brand);
  color: #fff;
}
.header-cta:hover,.button:hover {
  box-shadow: 0 10px 25px rgba(19,37,41,.14);
  transform: translateY(-1px);
}
.button.primary {
  background: var(--accent);
  color: #fff;
}
.button.primary:hover {
  background: #bd5934;
}
.button.light {
  background: #fff;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  font-weight: 800;
  gap: 8px;
}
.text-link span {
  transition: transform .16s;
}
.text-link:hover span {
  transform: translateX(4px);
}
.menu-toggle {
  display: none;
  border-radius: 11px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px;
  border-radius: 3px;
  background: currentColor;
}
.header-search {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.header-search form,.hero-search {
  display: flex;
}
.header-search input,.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px 0 0 12px;
}
.header-search button,.hero-search button {
  padding: 0 22px;
  border: 0;
  border-radius: 0 12px 12px 0;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}
.mobile-nav {
  display: none;
}
.brand-section {
  padding: 35px 0;
  border-block: 1px solid var(--line);
  border: 0;
  background: var(--brand);
  color: #fff;
}
.brand-section .shell {
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand-section p {
  flex: 0 0 220px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}
.brand-row {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  overflow-x: auto;
  gap: 30px;
}
.brand-row a {
  display: grid;
  place-items: center;
  min-width: 140px;
  height: 62px;
  padding: 10px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
}
.brand-row img {
  max-width: 130px;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
}
.brand-row span {
  color: #667572;
  font-weight: 900;
}
.post-aside .button {
  width: 100%;
  margin: 8px 0 14px;
}
.button.outline {
  border-color: var(--line);
  box-shadow: none;
}
.text-link,.hero-kicker,.section-kicker,.eyebrow {
  color: var(--accent);
}
.hero .text-link {
  color: #fff;
}
.brand-section p,.brand-row span {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(390px,.78fr) 1.42fr;
  min-height: 570px;
  margin-top: 20px;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17,27,50,.16);
  background: var(--brand);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px,4.4vw,66px);
  background: var(--brand);
  color: #fff;
}
.hero-copy:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  display: none;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 55px solid rgba(0,143,130,.07);
  pointer-events: none;
}
.hero-kicker,.section-kicker,.eyebrow {
  display: block;
  color: var(--brand-dark);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1,.page-hero h1,.product-summary h1,.post-header h1,.showroom-detail h1 {
  margin: 16px 0 20px;
  font-size: clamp(2.45rem,5vw,5rem);
  line-height: 1.01;
  letter-spacing: -.055em;
}
.hero h1 {
  margin: 18px 0;
  font-size: clamp(2.75rem,4.25vw,4.5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero-copy>p,.page-hero>div>p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  gap: 22px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 16px;
}
.hero-proof div {
  min-width: 0;
}
.hero-proof dt {
  font-weight: 900;
  font-size: 1.22rem;
}
.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.35;
}
.hero-search {
  max-width: 650px;
  margin-top: 25px;
}
.hero-kicker {
  color: #f0a083;
  font-size: .82rem;
}
.hero-copy>p {
  color: #dce1eb;
  font-size: 1.08rem;
  line-height: 1.65;
}
.hero-trust {
  display: grid;
  margin-top: 34px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  gap: 4px;
}
.hero-trust strong {
  font-size: 1.05rem;
}
.hero-trust span {
  color: #d8deea;
  font-size: .91rem;
}
.hero-trust a {
  margin-top: 8px;
  color: #f2a185;
  font-size: .9rem;
  font-weight: 850;
}

/* --------------------------------------------------------------------------
   Before/after compare widget
   -------------------------------------------------------------------------- */
.compare {
  position: relative;
  min-height: 570px;
  background: #d8dce5;
  overflow: hidden;
  isolation: isolate;
}
.compare-layer,.compare-after {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.compare-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.compare-after {
  z-index: 2;
  clip-path: inset(0 0 0 52%);
}
.compare-label {
  position: absolute;
  top: 20px;
  z-index: 6;
  padding: 8px 13px;
  border-radius: 99px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  background: #fff;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}
.compare-label.before {
  left: 18px;
}
.compare-label.after {
  right: 18px;
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 3px;
  padding: 0;
  border: 0;
  background: #fff;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0,0,0,.25);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  transform: translate(-50%,-50%);
}
.compare-range {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: .001;
  cursor: ew-resize;
}

/* --------------------------------------------------------------------------
   Section layout
   -------------------------------------------------------------------------- */
.section {
  padding: 72px 0;
}
.section-tint {
  background: #eef1f6;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 28px;
}
.section-head.centered {
  justify-content: center;
  text-align: center;
}
.section-head h2,.process-grid h2,.difference-card h2,.care-card h2 {
  margin: 9px 0 7px;
  font-size: clamp(2rem,3vw,3rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
}
.section-kicker.light {
  color: #9de4db;
}
.section-kicker,.eyebrow {
  font-size: .8rem;
}

/* --------------------------------------------------------------------------
   Category grid
   -------------------------------------------------------------------------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  min-height: 300px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(19,29,48,.08);
  background: #cad8d5;
  overflow: hidden;
}
.category-card a {
  position: relative;
  display: block;
  height: 100%;
}
.category-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform .5s;
}
.category-card:hover img {
  transform: scale(1.035);
}
.category-card:after {
  content: "";
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(transparent,rgba(8,22,24,.8));
  pointer-events: none;
}
.category-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}
.category-overlay small {
  display: block;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
.category-overlay strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.25;
}
.category-overlay i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-style: normal;
}

/* --------------------------------------------------------------------------
   Product grid & cards
   -------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px,1fr);
  padding-bottom: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  gap: 18px;
}
.scroll-row .product-card {
  scroll-snap-align: start;
}
.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: transform .2s,box-shadow .2s;
}
.product-card:hover {
  box-shadow: 0 18px 45px rgba(18,46,43,.11);
  transform: translateY(-4px);
}
.product-image {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  background: #e5eceb;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.product-card:hover .product-image img {
  transform: scale(1.035);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-body {
  padding: 20px;
}
.product-body h3,.article-card h3,.article-card h2 {
  margin: 7px 0;
  font-size: 1.2rem;
  line-height: 1.35;
}
.product-meta {
  margin: 0;
  color: #596273;
  font-size: .82rem;
}
.product-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  gap: 12px;
}
.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}
.price del {
  color: var(--muted);
  font-size: .75rem;
}
.price strong {
  color: var(--brand);
  font-size: 1rem;
}
.price small {
  color: var(--muted);
  font-size: .72rem;
}
.arrow-link {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf0f6;
  color: var(--brand);
  font-weight: 900;
}
.product-card,.article-card,.testimonial {
  border-radius: 14px;
}

/* --------------------------------------------------------------------------
   Inspiration panel
   -------------------------------------------------------------------------- */
.inspiration-panel {
  position: relative;
  min-height: 480px;
  border-radius: 18px;
  background: var(--brand);
  overflow: hidden;
}
.inspiration-panel>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inspiration-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(17,27,48,.92),rgba(17,27,48,.2) 72%);
}
.inspiration-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
  min-height: 480px;
  padding: clamp(30px,6vw,78px);
  color: #fff;
}
.inspiration-copy h2 {
  margin: 12px 0;
  font-size: clamp(2.1rem,4vw,4rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.inspiration-copy p {
  margin: 0 0 25px;
  color: #d7e4e2;
  font-size: 1.08rem;
}

/* --------------------------------------------------------------------------
   Process steps
   -------------------------------------------------------------------------- */
.process-section {
  background: #f5efe9;
}
.process-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: clamp(40px,8vw,120px);
}
.process-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.process-copy li {
  position: relative;
  padding: 24px 20px 24px 78px;
  border-bottom: 1px solid #dddad4;
  font-size: 1.05rem;
  counter-increment: steps;
}
.process-copy li:before {
  content: counter(steps,decimal-leading-zero);
  position: absolute;
  top: 19px;
  left: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #fff;
  color: var(--accent);
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.testimonial {
  position: relative;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 34px rgba(19,29,48,.06);
  background: #fff;
}
.quote-mark {
  position: absolute;
  top: 14px;
  right: 26px;
  color: #e6efed;
  font: 900 5rem/1 Georgia,serif;
}
.stars {
  color: #d89122;
  font-size: .85rem;
  letter-spacing: .08em;
}
.testimonial blockquote {
  position: relative;
  margin: 18px 0 28px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.testimonial footer {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testimonial footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial footer span {
  display: grid;
}
.testimonial footer small {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Articles / blog cards
   -------------------------------------------------------------------------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.article-card {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  overflow: hidden;
}
.article-image {
  display: block;
  aspect-ratio: 3/2;
  background: #e6eceb;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}
.article-card:hover .article-image img {
  transform: scale(1.035);
}
.article-card>div {
  padding: 20px;
}
.article-card h2 {
  font-size: 1.25rem;
}
.article-card p {
  color: var(--muted);
  font-size: .92rem;
}

/* --------------------------------------------------------------------------
   Difference / dark feature card
   -------------------------------------------------------------------------- */
.difference-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  padding: clamp(34px,6vw,78px);
  border-radius: 18px;
  background: #11272b;
  color: #fff;
  gap: clamp(35px,7vw,90px);
}
.difference-card p {
  color: #b9c9c7;
}
.light-rich h3 {
  color: #fff;
}
.light-rich p {
  color: #c6d3d1;
}
.difference-card,.site-footer {
  background: var(--brand);
}

/* --------------------------------------------------------------------------
   Page hero & breadcrumbs
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 100px 0;
  background: var(--tint);
}
.page-hero.compact {
  padding: 70px 0;
}
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem,5vw,5.2rem);
}
.breadcrumbs {
  margin-bottom: 25px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: .8rem;
  list-style: none;
  gap: 8px;
}
.breadcrumbs li {
  display: flex;
  gap: 8px;
}
.breadcrumbs a:hover {
  color: var(--brand-dark);
}

/* --------------------------------------------------------------------------
   Filters & listing controls
   -------------------------------------------------------------------------- */
.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: end;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  gap: 13px;
}
.filters label,.form-card label {
  display: block;
  margin-bottom: 6px;
  font-size: .8rem;
  font-weight: 850;
}
.filters input,.filters select,.form-card input,.form-card select,.form-card textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #cddad8;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
}
.filters input:focus,.filters select:focus,.form-card input:focus,.form-card select:focus,.form-card textarea:focus {
  border-color: var(--brand);
  outline: 3px solid color-mix(in srgb,var(--brand) 18%,transparent);
}
.filters button {
  min-height: 49px;
  padding: 0 19px;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
}
.result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 24px;
  gap: 20px;
}
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-pills a {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: .78rem;
}
.empty-state {
  padding: 80px 25px;
  border: 1px dashed #bccdca;
  border-radius: 20px;
  background: var(--tint);
  text-align: center;
}
.empty-state h2 {
  margin: 0;
  font-size: 1.8rem;
}
.empty-state p {
  margin: 8px 0 24px;
  color: var(--muted);
}
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 38px;
  gap: 7px;
}
.pagination a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 800;
}
.pagination a[aria-current=page] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.form-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  background: #fff;
}
.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   Category landing hero
   -------------------------------------------------------------------------- */
.category-hero {
  padding: 35px 0 0;
  background: var(--tint);
}
.category-hero-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 55px;
}
.category-hero-grid>div {
  padding: 45px 0 70px;
}
.category-hero h1 {
  margin: 14px 0;
  font-size: clamp(3rem,6vw,6rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.category-hero p {
  max-width: 550px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 1.08rem;
}
.category-hero img {
  align-self: stretch;
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: 22px 22px 0 0;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Rich text content
   -------------------------------------------------------------------------- */
.content-narrow {
  max-width: 840px;
  margin-inline: auto;
}
.rich {
  color: #3e5053;
  font-size: 1.02rem;
}
.rich h2,.rich h3 {
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -.025em;
}
.rich h2 {
  margin: 2em 0 .65em;
  font-size: 1.9rem;
}
.rich h3 {
  margin: 1.6em 0 .5em;
  font-size: 1.32rem;
}
.rich p {
  margin: 0 0 1.2em;
}
.rich ul,.rich ol {
  padding-left: 1.3em;
}
.rich a {
  color: var(--brand-dark);
  text-decoration: underline;
}
.content-cover {
  width: 100%;
  max-height: 520px;
  margin-bottom: 40px;
  border-radius: 20px;
  object-fit: cover;
}
.internal-cta,.care-card {
  margin-top: 42px;
  padding: 25px;
  border-radius: 17px;
  border: 1px solid var(--line);
  background: #fff;
}
.internal-cta p,.care-card p {
  color: var(--muted);
}
.care-card {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------------- */
.product-page {
  padding-top: 42px;
}
.product-detail {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: clamp(35px,6vw,80px);
}
.product-main-image {
  aspect-ratio: 4/3;
  border-radius: 22px;
  background: #e5eceb;
  overflow: hidden;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  margin-top: 11px;
  overflow-x: auto;
  gap: 10px;
}
.product-thumbs button {
  flex: 0 0 90px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: none;
  overflow: hidden;
  cursor: pointer;
}
.product-thumbs button:hover,.product-thumbs button:focus {
  border-color: var(--brand);
}
.product-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-summary {
  position: static;
  top: 116px;
}
.product-summary h1 {
  font-size: clamp(2.5rem,4vw,4.2rem);
}
.detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 25px 0;
  gap: 9px;
}
.detail-price strong {
  color: var(--brand-dark);
  font-size: 1.65rem;
}
.detail-price del {
  color: var(--muted);
}
.detail-price span {
  width: 100%;
  color: var(--muted);
  font-size: .78rem;
}
.specs {
  margin: 25px 0;
  border-block: 1px solid var(--line);
}
.specs div,.contact-list div {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.specs div:last-child,.contact-list div:last-child {
  border: 0;
}
.specs dt,.contact-list dt {
  color: var(--muted);
  font-size: .84rem;
}
.specs dd,.contact-list dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
}
.full-button {
  width: 100%;
}
.microcopy,.form-privacy {
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}
.product-content-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: start;
  gap: 70px;
}

/* --------------------------------------------------------------------------
   Post / article page
   -------------------------------------------------------------------------- */
.post-header {
  padding-top: 70px;
  text-align: center;
}
.post-header .breadcrumbs {
  justify-content: center;
}
.post-header .breadcrumbs ol {
  justify-content: center;
}
.post-header h1 {
  max-width: 950px;
  margin: 18px auto;
  font-size: clamp(2.6rem,5vw,5.3rem);
}
.post-header>p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
}
.post-meta {
  display: flex;
  justify-content: center;
  margin-top: 23px;
  color: var(--muted);
  font-size: .83rem;
  gap: 18px;
}
.post-cover {
  margin-top: 50px;
}
.post-cover img {
  width: 100%;
  max-height: 680px;
  border-radius: 24px;
  object-fit: cover;
}
.post-grid {
  display: grid;
  grid-template-columns: minmax(0,760px) 300px;
  justify-content: center;
  gap: 80px;
}
.post-content {
  font-size: 1.08rem;
}
.post-aside {
  position: sticky;
  top: 115px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
}
.post-aside strong {
  font-size: 1.18rem;
}
.post-aside p {
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Showroom
   -------------------------------------------------------------------------- */
.showroom-hero {
  background: linear-gradient(90deg,var(--tint),#e8f1ef);
}
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}
.showroom-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.showroom-card>a,.showroom-card img {
  height: 100%;
  min-height: 300px;
}
.showroom-card img {
  width: 100%;
  object-fit: cover;
}
.showroom-card>div {
  align-self: center;
  padding: 27px;
}
.showroom-card h2 {
  line-height: 1.25;
}
.showroom-card p {
  color: var(--muted);
}
.showroom-detail {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 65px;
}
.showroom-detail>img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  border-radius: 22px;
  object-fit: cover;
}
.showroom-detail h1 {
  font-size: clamp(2.6rem,5vw,4.8rem);
}

/* --------------------------------------------------------------------------
   Contact & form pages
   -------------------------------------------------------------------------- */
.contact-list {
  margin: 25px 0;
}
.form-page {
  padding: 75px 0;
  background: var(--tint);
}
.form-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: clamp(40px,8vw,100px);
}
.form-intro {
  position: sticky;
  top: 120px;
}
.form-intro h1 {
  margin: 13px 0;
  font-size: clamp(2.6rem,5vw,4.8rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.form-intro>p {
  color: var(--muted);
  font-size: 1.07rem;
}
.selected-product {
  display: flex;
  align-items: center;
  margin-top: 22px;
  padding: 13px;
  border-radius: 14px;
  background: #fff;
  gap: 14px;
}
.selected-product img {
  width: 74px;
  height: 58px;
  border-radius: 9px;
  object-fit: cover;
}
.selected-product span {
  display: grid;
}
.selected-product small {
  color: var(--muted);
}
.form-points {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.form-points li {
  padding: 8px 0;
}
.form-points li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: #dff3ef;
  color: var(--brand-dark);
  font-weight: 900;
}
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.form-fields .full {
  grid-column: 1/-1;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

/* --------------------------------------------------------------------------
   Notices, thank-you & 404
   -------------------------------------------------------------------------- */
.notice {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 11px;
}
.notice.error {
  border: 1px solid #f5c4c0;
  background: #fff0ef;
  color: #9f241c;
}
.thank-you,.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  padding: 70px 0;
  text-align: center;
}
.thank-you h1,.not-found h1 {
  margin: 14px 0;
  font-size: clamp(2.6rem,5vw,4.8rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.thank-you p,.not-found p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}
.thank-you>div,.not-found>div {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #dff3ef;
  color: var(--brand-dark);
  font-size: 2rem;
  font-weight: 900;
}
.not-found>span {
  color: #dbe8e5;
  font-size: 7rem;
  font-weight: 950;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   Site footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #102327;
  color: #c6d2d1;
}
.footer-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 65px 0 45px;
  border-bottom: 1px solid #294044;
  gap: 30px;
}
.footer-brand {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.footer-lead p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #b7becd;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 19px;
  border: 1px solid #455a5d;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  gap: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 46px 0;
  gap: 40px;
}
.footer-grid h2 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-links li {
  padding: 5px 0;
  color: #c7ccda;
  font-size: .88rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #294044;
  font-size: .76rem;
  gap: 25px;
}
.footer-bottom .footer-links {
  display: flex;
  gap: 18px;
}

/* --------------------------------------------------------------------------
   Cookie consent banner
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 25px 80px rgba(6,25,27,.25);
  background: #fff;
  gap: 30px;
}

/* Ensure the banner actually hides — author styles otherwise beat the
   browser's default [hidden] rule, so JS toggling hidden had no visible effect. */
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner strong {
  font-size: 1rem;
}
.cookie-banner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .82rem;
}
.cookie-banner p a {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}
.cookie-actions button {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.cookie-actions .accept {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

/* --------------------------------------------------------------------------
   AI kitchen visualizer
   -------------------------------------------------------------------------- */
.visualizer-section {
  border-block: 1px solid #d6ebe8;
  border-color: #dfe2ea;
  background: linear-gradient(135deg,#eef1f7,#fff 55%,#f7eee9);
}
.visualizer-grid {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(420px,1fr);
  align-items: center;
  gap: clamp(42px,7vw,90px);
}
.visualizer-copy h2,.visualizer-result-head h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.2rem,4vw,4.1rem);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.visualizer-copy>p,.visualizer-result-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}
.visualizer-copy ol {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  gap: 14px;
  counter-reset: steps;
}
.visualizer-copy li {
  display: flex;
  align-items: center;
  font-weight: 800;
  gap: 14px;
  counter-increment: steps;
}
.visualizer-copy li:before {
  content: counter(steps);
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}
.visualizer-card {
  padding: 26px;
  border: 1px solid #bfe5df;
  border-radius: 24px;
  border-color: #d9dde6;
  box-shadow: 0 24px 70px rgba(0,111,101,.12);
  background: #fff;
}
.visualizer-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 14px;
}
.visualizer-title strong,.visualizer-title small {
  display: block;
}
.visualizer-title strong {
  font-size: 1.2rem;
}
.visualizer-title small {
  color: var(--muted);
}
.camera-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 1.25rem;
}
.visualizer-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 270px;
  padding: 28px;
  border: 2px dashed #9fcfc8;
  border-radius: 18px;
  border-color: #bdc4d2;
  background: #f8f9fb;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}
.visualizer-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.visualizer-drop strong {
  font-size: 1.08rem;
}
.visualizer-drop small {
  color: var(--muted);
}
.upload-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 15px;
  background: #f7e7df;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
}
.visualizer-drop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.has-preview .visualizer-drop:after {
  content: "Fotoğrafı değiştirmek için tıklayın";
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(9,28,31,.78);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.photo-tip {
  margin: 13px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #eef3ff;
  color: #44598b;
  font-size: .86rem;
}
.visualizer-consent {
  display: flex;
  align-items: flex-start;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
  gap: 10px;
}
.visualizer-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}
.visualizer-consent a {
  color: var(--brand-dark);
  text-decoration: underline;
}
.visualizer-processing {
  margin-top: 16px;
  padding: 18px;
  border-radius: 14px;
  background: var(--tint);
  text-align: center;
}
.visualizer-processing span {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border: 4px solid #cce4e0;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: visualizer-spin .8s linear infinite;
}
.visualizer-processing strong,.visualizer-processing small {
  display: block;
}
.visualizer-processing small {
  color: var(--muted);
}
.visualizer-result-page {
  padding-top: 60px;
}
.visualizer-result-head {
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: center;
}
.visualizer-result-head h1 {
  font-size: clamp(2.1rem,4vw,3.8rem);
}
.visualizer-compare {
  min-height: clamp(420px,65vw,760px);
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: #eef1f6;
}
.visualizer-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 28px 0;
  gap: 16px;
}
.visualizer-disclaimer {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--tint);
  color: var(--muted);
  font-size: .86rem;
  text-align: center;
}
.visualizer-compare .compare-layer img {
  background: #eef1f6;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Product-page AI visualizer
   -------------------------------------------------------------------------- */
.product-visualizer {
  margin: 28px 0 18px;
  padding: 22px;
  border-color: #cfd5e0;
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(17,27,48,.09);
}
.product-visualizer .visualizer-title {
  margin-bottom: 14px;
}
.selected-ai-surface {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f5f7fa;
  gap: 12px;
}
.selected-ai-surface img {
  width: 76px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}
.selected-ai-surface span {
  display: grid;
  min-width: 0;
}
.selected-ai-surface b {
  font-size: .88rem;
}
.selected-ai-surface small {
  color: var(--muted);
  font-size: .8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.product-visualizer .visualizer-drop {
  min-height: 190px;
  padding: 20px;
}
.product-visualizer .visualizer-consent {
  font-size: .8rem;
}
.product-visualizer .photo-tip {
  font-size: .82rem;
}
.quote-after-ai {
  border-color: var(--brand) !important;
  background: transparent !important;
  color: var(--brand) !important;
}
.quote-after-ai:hover {
  background: var(--brand) !important;
  color: #fff !important;
}

/* -------------------------------------------------------------------------- */
.main-menu,.sub-menu,.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lead {
  color: var(--muted);
  font-size: 1.08rem;
}
.sub-menu a,.footer-links li,.product-meta,.article-card p,.breadcrumbs,.category-pills a,.specs dt,.detail-price span,.microcopy,.form-privacy {
  font-size: .875rem;
}

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */
@keyframes visualizer-spin {to{transform:rotate(360deg)}}

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */

@media (max-width:1100px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .mobile-nav {
    padding: 13px 20px 22px;
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .mobile-nav:not([hidden]) {
    display: block;
  }
  .mobile-nav .main-menu {
    display: block;
  }
  .mobile-nav .main-menu>li>a {
    justify-content: space-between;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 4px 0 6px 14px;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .mobile-quote {
    display: block;
    margin-top: 15px;
    padding: 12px;
    border-radius: 11px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .compare {
    order: -1;
    min-height: 520px;
  }
  .category-grid,.product-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .category-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .product-detail,.product-content-grid {
    grid-template-columns: 1fr;
  }
  .product-summary {
    position: static;
  }
  .showroom-grid {
    grid-template-columns: 1fr;
  }
  .post-grid {
    grid-template-columns: minmax(0,760px);
  }
  .post-aside {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .hero .compare {
    order: 0;
    min-height: 470px;
  }
  .hero-copy {
    order: -1;
  }
  .hero-trust {
    max-width: 680px;
  }
}

@media (max-width:880px) {
  .visualizer-grid {
    grid-template-columns: 1fr;
  }
  .visualizer-card {
    padding: 20px;
  }
  .visualizer-drop {
    min-height: 230px;
  }
  .visualizer-result-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .visualizer-result-actions .button,.visualizer-result-actions .text-link {
    justify-content: center;
  }
}

@media (max-width:760px) {
  .shell,.shell-wide {
    width: min(100% - 28px,var(--shell));
  }
  .announcement {
    font-size: .78rem;
  }
  .header-row {
    height: 68px;
    gap: 12px;
  }
  .brand {
    font-size: 1.05rem;
  }
  .brand-mark {
    width: 31px;
    height: 31px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    margin-top: 12px;
    border-radius: 14px;
  }
  .hero-copy {
    padding: 34px 24px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }
  .hero-proof div:last-child {
    display: none;
  }
  .compare {
    min-height: 360px;
  }
  .section {
    padding: 58px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .section-head h2 {
    font-size: 2.2rem;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .category-card,.category-card img {
    min-height: 250px;
  }
  .category-overlay {
    right: 13px;
    bottom: 13px;
    left: 13px;
  }
  .category-overlay strong {
    font-size: 1.15rem;
  }
  .category-overlay i {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .product-body {
    padding: 13px;
  }
  .product-body h3 {
    font-size: 1.12rem;
  }
  .price small {
    display: none;
  }
  .inspiration-panel,.inspiration-copy {
    min-height: 480px;
  }
  .inspiration-panel:after {
    background: linear-gradient(0deg,rgba(7,24,26,.86),rgba(7,24,26,.2));
  }
  .inspiration-copy {
    justify-content: flex-end;
  }
  .process-grid,.difference-card,.category-hero-grid,.showroom-detail,.form-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    gap: 35px;
  }
  .difference-card {
    padding: 30px;
  }
  .testimonial-list,.article-grid {
    grid-template-columns: 1fr;
  }
  .brand-section .shell {
    display: block;
  }
  .brand-section p {
    margin: 0 auto 18px;
    text-align: center;
  }
  .page-hero,.page-hero.compact {
    padding: 60px 0;
  }
  .page-hero h1 {
    font-size: 2.75rem;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .filters button {
    grid-column: 1/-1;
  }
  .result-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-hero-grid>div {
    padding: 30px 0;
  }
  .category-hero img {
    max-height: 360px;
    border-radius: 18px;
  }
  .product-detail {
    gap: 30px;
  }
  .product-summary h1 {
    font-size: 2.8rem;
  }
  .post-header {
    padding-top: 50px;
  }
  .post-header h1 {
    font-size: 2.7rem;
  }
  .post-cover {
    margin-top: 32px;
  }
  .post-grid {
    gap: 30px;
  }
  .showroom-card {
    grid-template-columns: 1fr;
  }
  .showroom-card>a,.showroom-card img {
    min-height: 230px;
  }
  .form-intro {
    position: static;
  }
  .form-fields {
    grid-template-columns: 1fr;
  }
  .form-fields .full {
    grid-column: auto;
  }
  .footer-lead {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom .footer-links {
    flex-wrap: wrap;
  }
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-actions button {
    flex: 1;
  }
  body {
    font-size: 1rem;
  }
  .hero .compare {
    min-height: 350px;
  }
  .product-visualizer {
    padding: 16px;
  }
  .product-visualizer .visualizer-drop {
    min-height: 180px;
  }
  .selected-ai-surface img {
    width: 66px;
    height: 52px;
  }
}

@media (max-width:470px) {
  .round-button {
    display: none;
  }
  .hero-copy {
    padding: 30px 20px;
  }
  .hero h1 {
    font-size: 2.35rem;
  }
  .compare {
    min-height: 290px;
  }
  .category-grid,.product-grid {
    grid-template-columns: 1fr;
  }
  .category-card,.category-card img {
    min-height: 290px;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    flex-direction: column;
  }
  .thank-you>div,.not-found>div {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .compare {
    min-height: 280px;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button,.hero-actions .text-link {
    justify-content: center;
  }
  .hero-trust {
    padding: 17px;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}