:root {
  --bg: #f4efe7;
  --bg-soft: #efe7dc;
  --bg-deep: #161615;
  --surface: rgba(255, 251, 246, 0.86);
  --surface-strong: #fffaf4;
  --surface-dark: #201f1d;
  --text: #1f1e1c;
  --text-soft: #5f594e;
  --text-inverse: #f7efe4;
  --line: rgba(87, 74, 58, 0.14);
  --line-strong: rgba(87, 74, 58, 0.24);
  --brand: #7b664d;
  --brand-deep: #2b2c29;
  --brand-accent: #bf8b53;
  --brand-soft: #cfd5c8;
  --success: #4f8261;
  --shadow-soft: 0 28px 70px rgba(31, 25, 19, 0.1);
  --shadow-strong: 0 36px 100px rgba(18, 14, 10, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(191, 139, 83, 0.1), transparent 30%),
    radial-gradient(circle at right 15%, rgba(123, 102, 77, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f3ec 0%, #f3ece3 52%, #efe6db 100%);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(191, 139, 83, 0.34);
  outline-offset: 4px;
}

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

input,
select,
textarea,
button {
  font: inherit;
}

h1,
h2,
h3,
.site-wordmark,
.footer-title {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--text-inverse);
}

.topbar {
  background: rgba(22, 22, 21, 0.94);
  color: rgba(247, 239, 228, 0.82);
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner,
.site-header-inner,
.footer-bottom,
.signature-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  color: #f0c896;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(45, 38, 30, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(248, 243, 236, 0.88);
}

.site-header-inner {
  min-height: 86px;
}

.site-branding {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-wordmark {
  font-size: 1.72rem;
  font-weight: 700;
}

.site-tagline {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
}

.menu-fallback {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-fallback a {
  color: rgba(31, 30, 28, 0.78);
  font-size: 0.97rem;
  font-weight: 700;
}

.menu-fallback a:hover,
.menu-fallback .current-menu-item a,
.menu-fallback .current_page_item a {
  color: var(--brand-deep);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-deep);
  font-weight: 700;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c2c29, #45433d);
  color: var(--text-inverse);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(25, 22, 18, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(25, 22, 18, 0.18);
}

.button-secondary {
  background: rgba(255, 251, 246, 0.6);
  border: 1px solid rgba(43, 44, 41, 0.12);
  color: var(--brand-deep);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-text,
.section-heading p,
.page-header p,
.content-copy,
.request-form-intro p,
.request-form-step-intro p,
.product-support-copy,
.woocommerce div.product .woocommerce-product-details__short-description,
.support-card-compact p:last-child {
  color: var(--text-soft);
  font-size: 1.02rem;
}

.section,
.page-shell {
  padding: 2rem 0 4.75rem;
}

.hero-home {
  padding: 2.2rem 0 2.8rem;
}

.hero-shell,
.split-grid,
.editorial-grid,
.cta-panel,
.airco-single-product-layout,
.page-header-shop-editorial,
.product-shell-intro,
.product-shell-content,
.footer-grid,
.hero-proof-grid,
.placement-showcase,
.product-showcase-grid,
.feature-list,
.review-grid,
.review-fallback-grid,
.signal-grid,
.request-form-grid,
.request-form-grid-measurements,
.product-support-grid,
.product-spec-grid,
.reassurance-grid,
.card-grid,
.category-card-grid,
.woocommerce ul.products {
  display: grid;
  gap: 1.35rem;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
}

.hero-copy,
.hero-scene,
.feature-item,
.info-card,
.product-card,
.content-card,
.cta-panel,
.faq-item,
.review-card,
.support-card,
.request-form-shell,
.airco-checkout-note,
.woocommerce ul.products li.product,
.woocommerce div.product,
.shop-tip-bar,
.signal-card,
.page-header-shop-editorial,
.category-card-editorial,
.product-shell-intro,
.product-shell-content,
.hero-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(252, 246, 239, 0.78));
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(1.8rem, 3vw, 3.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.hero-proof-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
}

.hero-proof-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta,
.footer-badges,
.signature-pills,
.link-chip-row,
.product-attribute-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.55rem 0 0;
  list-style: none;
}

.hero-meta li,
.footer-badges span,
.signature-pills span,
.link-chip,
.product-attribute-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 44, 41, 0.09);
  background: rgba(255, 255, 255, 0.62);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-scene {
  min-height: 620px;
  padding: 1.15rem;
  background: linear-gradient(145deg, #2d2d2b, #100f0d);
  box-shadow: var(--shadow-strong);
}

.hero-scene-image {
  height: 100%;
  min-height: 560px;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
}

.hero-scene-image::after,
.placement-showcase-image::after,
.product-card-scene::after,
.page-header-visual::after,
.editorial-media::after,
.category-card-media::after,
.product-shell-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.12), rgba(10, 8, 7, 0.38));
}

.hero-scene-image,
.placement-showcase-image,
.product-card-scene,
.page-header-visual,
.editorial-media,
.category-card-media,
.product-shell-scene {
  position: relative;
}

.hero-scene-image img,
.placement-showcase-image img,
.product-card-scene img,
.page-header-visual img,
.editorial-media img,
.category-card-media img,
.product-shell-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.hero-floating-card-main {
  right: 1.35rem;
  bottom: 1.35rem;
  width: min(400px, calc(100% - 2.5rem));
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 245, 234, 0.82));
}

.hero-floating-card-note {
  left: 1.45rem;
  bottom: 1.7rem;
  width: min(214px, calc(100% - 3.2rem));
  padding: 0.9rem 0.95rem;
  color: rgba(247, 239, 228, 0.96);
  background: rgba(28, 26, 24, 0.54);
}

.hero-floating-card-note .eyebrow {
  color: #f0c896;
}

.hero-product-visual .airco-product-visual {
  border: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(243, 234, 223, 0.96), rgba(224, 210, 194, 0.7));
}

.hero-product-visual .airco-product-visual-single {
  aspect-ratio: 4 / 2.8;
}

.signature-band {
  padding-bottom: 1rem;
}

.signature-band-inner {
  padding: 1.5rem 1.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(43, 44, 41, 0.08);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.editorial-section,
.placement-section,
.material-section,
.faq-section {
  position: relative;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.36), rgba(231, 220, 207, 0.46));
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(191, 139, 83, 0.12), transparent 22%),
    linear-gradient(135deg, #1d1c1a, #2b2926);
  color: var(--text-inverse);
}

.section-dark .eyebrow {
  color: #f0c896;
}

.editorial-grid,
.split-grid,
.page-header-shop-editorial,
.product-shell-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.page-header-shop-editorial {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.editorial-media,
.page-header-visual,
.product-shell-scene {
  min-height: 420px;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.page-header-visual {
  min-height: 500px;
}

.page-header-visual-shop {
  min-height: 560px;
}

.shop-hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.shop-hero-floating-card {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  max-width: 360px;
  padding: 1.05rem 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  color: #f7f1e8;
  background: rgba(24, 22, 19, 0.58);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.shop-hero-floating-card h3 {
  margin: 0.2rem 0 0.55rem;
  color: #fff7ee;
}

.shop-hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.shop-hero-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff8ef;
  font-weight: 700;
}

.editorial-media-tall {
  min-height: 520px;
}

.editorial-copy,
.page-header-copy {
  padding: clamp(1.8rem, 2.8vw, 3rem);
}

.feature-list,
.signal-grid,
.review-grid,
.review-fallback-grid,
.product-support-grid,
.reassurance-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-item,
.signal-card,
.review-card {
  padding: 1.4rem;
}

.feature-item-soft {
  background: rgba(255, 255, 255, 0.66);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.7rem;
}

.section-heading-wide {
  max-width: 920px;
}

.placement-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.placement-showcase-card,
.category-card-editorial {
  display: grid;
  gap: 0;
  grid-template-rows: 220px auto;
}

.placement-showcase-image,
.category-card-media {
  min-height: 220px;
}

.placement-showcase-copy,
.category-card-copy {
  padding: 1.35rem;
}

.journey-steps {
  display: grid;
  gap: 1rem;
}

.journey-step,
.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.step-number {
  display: inline-flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d2d2b, #4a463f);
  color: var(--text-inverse);
  font-weight: 800;
}

.signal-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.signal-card h3 {
  color: #f9f3eb;
}

.product-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.info-card {
  padding: 1.3rem;
}

.product-card-editorial {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.product-card-media {
  position: relative;
  min-height: 300px;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
}

.product-card-scene {
  position: absolute;
  inset: 0;
}

.product-card-object {
  position: relative;
  z-index: 2;
  width: min(70%, 260px);
  margin: 2rem 0 0 2rem;
}

.product-card-object .airco-product-visual {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(243, 234, 223, 0.96), rgba(224, 210, 194, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 24px 48px rgba(15, 10, 5, 0.16);
}

.product-card-copy {
  display: grid;
  gap: 0.35rem;
  padding: 0.25rem 0.4rem 0.4rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-Price-amount {
  color: var(--brand-deep);
  font-size: 1.25rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.35rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.review-evidence-block {
  display: grid;
  gap: 1.2rem;
}

.review-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
}

.review-stars {
  color: var(--brand-accent);
  letter-spacing: 0.1em;
}

.review-meta,
.review-evidence-footnote,
.request-form small,
.form-meta,
.product-buybox-meta,
.airco-breadcrumbs,
.woocommerce-result-count,
.woocommerce-ordering {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.cta-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.cta-panel-rich {
  background:
    radial-gradient(circle at top right, rgba(191, 139, 83, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(244, 235, 224, 0.76));
}

.site-footer {
  padding: 3.4rem 0 2rem;
  background:
    radial-gradient(circle at top center, rgba(191, 139, 83, 0.08), transparent 20%),
    linear-gradient(180deg, #191816 0%, #141311 100%);
  color: rgba(247, 239, 228, 0.82);
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  font-size: 1.2rem;
}

.site-footer a {
  color: #f0c896;
}

.footer-bottom {
  padding-top: 1.4rem;
}

.page-header,
.page-header-shop {
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.page-shell-shop,
.page-shell-product {
  padding-top: 1.6rem;
}

.page-header-shop-editorial {
  margin-bottom: 1.5rem;
}

.shop-category-grid-editorial,
.shop-guide-grid-editorial {
  margin-bottom: 1.5rem;
}

.shop-tip-bar {
  padding: 1rem 1.15rem;
}

.shop-tip-bar-rich {
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.88), rgba(244, 235, 224, 0.78));
}

.airco-breadcrumbs {
  margin-bottom: 1rem;
}

.airco-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.airco-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: rgba(95, 89, 78, 0.55);
}

.content-card {
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
}

.page-related-links {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.content-checklist {
  margin-top: 1.6rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.content-checklist ul,
.product-support-block ul,
.product-buybox-trust ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.content-cta {
  margin-top: 1.35rem;
}

.request-form-shell {
  margin-top: 1.8rem;
  padding: 1.55rem;
}

.request-form {
  display: grid;
  gap: 1.15rem;
}

.request-form-progress {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.request-progress-pill {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.request-progress-pill.is-active {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(43, 44, 41, 0.14);
}

.request-form-step {
  display: grid;
  gap: 1rem;
}

.request-form-step-intro h3 {
  margin-bottom: 0.35rem;
}

.request-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.request-form-grid-measurements {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.request-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.request-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.request-step-actions,
.request-form-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.request-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.request-consent input {
  width: 1.1rem;
  min-width: 1.1rem;
  margin-top: 0.25rem;
}

.request-notice {
  margin-bottom: 0.95rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.request-notice-success {
  color: var(--success);
  border-color: rgba(79, 130, 97, 0.18);
}

.request-notice-error {
  color: #8f3a32;
  border-color: rgba(143, 58, 50, 0.18);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.woocommerce-shell {
  display: grid;
  gap: 1.4rem;
}

.woocommerce ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.woocommerce ul.products li.product,
.woocommerce div.product {
  margin: 0;
  padding: 1rem;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin-right: 0 !important;
  display: flex;
  flex-direction: column;
}

.woocommerce ul.products li.product a img,
.airco-product-visual,
.airco-single-product-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(43, 44, 41, 0.08);
  background: linear-gradient(180deg, rgba(243, 234, 223, 0.96), rgba(224, 210, 194, 0.7));
}

.airco-product-image {
  width: 100%;
}

.airco-single-product-media {
  padding: 0;
  background: #f1e6d8;
}

.airco-product-media-composite {
  position: relative;
  min-height: 560px;
}

.airco-product-photo-panel {
  position: relative;
  min-height: 560px;
  margin: 0;
}

.airco-product-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0.08), rgba(16, 14, 12, 0.24));
}

.airco-product-photo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.airco-product-photo-panel figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: 320px;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  color: #fff8ef;
  background: rgba(24, 22, 19, 0.54);
  backdrop-filter: blur(16px);
  font-size: 0.92rem;
}

.airco-product-media-overlay {
  position: absolute;
  right: 1.15rem;
  bottom: 4.45rem;
  z-index: 3;
  width: min(48%, 320px);
}

.airco-product-media-overlay .airco-product-visual {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(246, 237, 226, 0.88));
  box-shadow: 0 28px 52px rgba(21, 16, 11, 0.2);
}

.airco-product-media-proof {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.airco-product-media-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.72);
  border: 1px solid rgba(43, 44, 41, 0.08);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: 0.7rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: grid;
  gap: 0.7rem;
}

.woocommerce ul.products li.product .airco-product-image,
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 1rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 1rem 0 0.6rem;
}

.related.products ul.products {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.35rem;
}

.related.products ul.products li.product {
  flex: 1 1 calc(50% - 0.675rem);
  max-width: calc(50% - 0.675rem);
  min-height: 100%;
  width: 100% !important;
  clear: none !important;
  margin-right: 0 !important;
}

.related.products ul.products li.product:nth-child(2n),
.related.products ul.products li.product:nth-child(2n + 1) {
  clear: none !important;
}

.related.products ul.products li.product .woocommerce-loop-product__link {
  height: 100%;
}

.related.products ul.products li.product .button {
  margin-top: auto;
}

.product-shell-editorial {
  display: grid;
  gap: 1.6rem;
}

.product-shell-intro {
  padding: 1.1rem;
}

.product-shell-intro > div:first-child {
  padding: clamp(1.4rem, 2vw, 2.4rem);
}

.product-shell-scene {
  min-height: 320px;
}

.product-shell-content {
  padding: 1.1rem;
}

.airco-single-product-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.summary.entry-summary {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.summary.entry-summary .cart {
  display: grid;
  gap: 0.8rem;
}

.quantity {
  width: 120px;
}

.product-buybox-trust {
  display: grid;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.product-trust-highlight {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(43, 44, 41, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 237, 226, 0.84));
}

.product-trust-highlight strong {
  font-size: 1rem;
  line-height: 1.5;
}

.product-buybox-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-proof-card {
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(43, 44, 41, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.product-proof-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-proof-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.product-proof-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.product-support-block {
  margin-top: 1.8rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(244, 235, 224, 0.78));
  box-shadow: var(--shadow-soft);
}

.support-card {
  padding: 1.2rem;
}

.support-card-material {
  margin-top: 1.15rem;
}

.support-card-compact {
  background: rgba(255, 255, 255, 0.62);
}

.product-inline-cta {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.4rem 0 1rem;
  list-style: none;
}

.woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--brand-deep);
  font-weight: 700;
}

.woocommerce-Tabs-panel {
  padding-top: 0.8rem;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
  border-top-width: 1px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
}

.woocommerce-cart .content-card,
.woocommerce-checkout .content-card {
  padding: 1.35rem;
}

.wc-block-cart,
.wc-block-checkout,
.wc-block-components-sidebar-layout {
  color: var(--text);
}

.wc-block-cart .wc-block-cart__submit-button,
.wc-block-components-button {
  border-radius: 999px !important;
}

.comparison-table-shell {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.page-ready [data-reveal].is-visible,
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

.mobile-sticky-cta {
  display: none;
}

.woocommerce-cart .mobile-sticky-cta,
.woocommerce-checkout .mobile-sticky-cta,
.woocommerce-account .mobile-sticky-cta,
.woocommerce-order-received .mobile-sticky-cta {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-shell,
  .editorial-grid,
  .split-grid,
  .page-header-shop-editorial,
  .product-shell-intro,
  .airco-single-product-layout,
  .cta-panel,
  .footer-grid,
  .product-showcase-grid,
  .placement-showcase,
  .review-grid,
  .review-fallback-grid,
  .feature-list,
  .signal-grid,
  .product-support-grid,
  .product-spec-grid,
  .reassurance-grid,
  .card-grid,
  .category-card-grid,
  .woocommerce ul.products,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-scene {
    min-height: 520px;
  }

  .shop-hero-proof-grid,
  .product-buybox-proof-grid {
    grid-template-columns: 1fr;
  }

  .related.products ul.products li.product {
    flex-basis: 100%;
    max-width: 100%;
  }

  .footer-grid {
    gap: 1.6rem;
  }
}

@media (max-width: 960px) {
  .topbar-inner,
  .site-header-inner,
  .signature-band-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
    width: 100%;
  }

  .nav-open .site-nav {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-fallback {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.4rem;
  }

  .menu-fallback li,
  .menu-fallback a,
  .header-cta {
    width: 100%;
  }

  .hero-floating-card-main,
  .hero-floating-card-note {
    position: absolute;
  }

  .request-form-grid,
  .request-form-grid-measurements {
    grid-template-columns: 1fr;
  }

  .shop-hero-floating-card {
    max-width: calc(100% - 2.4rem);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: static;
  }

  .hero-home,
  .section,
  .page-shell {
    padding-top: 1.2rem;
    padding-bottom: 3rem;
  }

  .hero-copy,
  .content-card,
  .request-form-shell,
  .product-support-block,
  .feature-item,
  .info-card,
  .product-card,
  .signal-card,
  .cta-panel,
  .product-shell-content,
  .product-shell-intro > div:first-child {
    padding: 1.2rem;
  }

  .hero-scene {
    min-height: 460px;
    padding: 0.8rem;
  }

  .hero-scene-image {
    min-height: 430px;
  }

  .hero-floating-card-main {
    right: 0.85rem;
    bottom: 0.85rem;
    width: calc(100% - 1.7rem);
  }

  .hero-floating-card-note {
    display: none;
  }

  .page-header-visual-shop {
    min-height: 420px;
  }

  .shop-hero-floating-card {
    right: 0.85rem;
    left: 0.85rem;
    bottom: 0.85rem;
    max-width: none;
  }

  .airco-product-media-composite,
  .airco-product-photo-panel {
    min-height: 420px;
  }

  .airco-product-photo-panel figcaption {
    max-width: calc(100% - 2rem);
  }

  .airco-product-media-overlay {
    right: 0.85rem;
    left: 0.85rem;
    bottom: 4.55rem;
    width: auto;
  }

  .airco-product-media-proof {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .product-card-object {
    width: min(78%, 220px);
    margin: 1.2rem 0 0 1.2rem;
  }

  .product-card-footer,
  .request-form-actions,
  .request-step-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    background: rgba(248, 243, 236, 0.94);
    border-top: 1px solid rgba(43, 44, 41, 0.08);
    backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta .button {
    min-height: 44px;
    padding-inline: 0.7rem;
    font-size: 0.95rem;
  }
}

/* --- Delivery Badge --- */

.delivery-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin: 0.6rem 0;
}

.delivery-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.delivery-badge-instock {
  background: rgba(79, 130, 97, 0.12);
  color: var(--success);
}

.delivery-badge-instock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.delivery-badge-outofstock {
  background: rgba(143, 58, 50, 0.1);
  color: #8f3a32;
}

.delivery-badge-urgency {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(191, 139, 83, 0.14);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 700;
}

.delivery-badge-time {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* --- Floating Contact Button --- */

.floating-contact {
  position: fixed;
  right: 1.2rem;
  bottom: 1.4rem;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c2c29, #45433d);
  color: var(--text-inverse);
  box-shadow: 0 8px 24px rgba(25, 22, 18, 0.22);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.floating-contact:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(25, 22, 18, 0.28);
}

.floating-contact svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .floating-contact {
    right: 0.8rem;
    bottom: calc(4.2rem + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .floating-contact svg {
    width: 20px;
    height: 20px;
  }
}

/* --- Exit-Intent Popup --- */

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-popup[hidden] {
  display: none;
}

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 21, 0.6);
  backdrop-filter: blur(6px);
}

.exit-popup-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(252, 246, 239, 0.94));
  box-shadow: var(--shadow-strong);
  animation: exitPopupIn 320ms ease;
}

@keyframes exitPopupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.exit-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  font-size: 1.3rem;
  cursor: pointer;
}

.exit-popup-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* --- Footer Trust Row --- */

.footer-trust-row {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 239, 228, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-trust-badge::before {
  content: "\2713";
  color: #f0c896;
  font-weight: 800;
}

/* --- Blog Article --- */

.blog-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.blog-article-content {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.72;
}

.blog-article-content h2 {
  margin-top: 2.2rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.blog-article-content h3 {
  margin-top: 1.6rem;
}

.blog-article-content img {
  border-radius: var(--radius-lg);
  margin: 1.2rem 0;
}

.blog-article-content ul,
.blog-article-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}

.blog-article-content blockquote {
  margin: 1.4rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--brand-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text-soft);
  font-style: italic;
}

.blog-article-footer {
  margin-top: 2.4rem;
}

/* ═══════════════════════════════════════════════════
   DESIGN UPGRADE — enterprise-level polish
   ═══════════════════════════════════════════════════ */

/* 1. Enhanced card hover states — subtler, more elegant */
.info-card,
.product-card,
.content-card,
.signal-card,
.category-card-editorial,
.hero-proof-card,
.review-card,
.support-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.info-card:hover,
.product-card:hover,
.content-card:hover,
.signal-card:hover,
.category-card-editorial:hover,
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(31, 25, 19, 0.12), 0 4px 12px rgba(31, 25, 19, 0.06);
  border-color: rgba(191, 139, 83, 0.2);
}

/* 2. Smoother button transitions */
.button,
.button-secondary,
.woocommerce a.button,
.woocommerce button.button {
  transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.25s cubic-bezier(0.22, 0.61, 0.36, 1),
              background 0.25s ease,
              opacity 0.2s ease;
}

.button:active,
.woocommerce a.button:active,
.woocommerce button.button:active {
  transform: translateY(0) scale(0.98);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(191, 139, 83, 0.24);
  transform: translateY(-1px);
}

/* 3. Better scroll-reveal — smoother timing + stagger */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="delay-1"] { transition-delay: 0.08s; }
[data-reveal="delay-2"] { transition-delay: 0.16s; }
[data-reveal="delay-3"] { transition-delay: 0.24s; }
[data-reveal="delay-4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* 4. Mobile menu animation */
body.nav-open .site-nav {
  animation: menuSlideIn 0.25s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

body.nav-open .site-nav a {
  animation: menuItemFade 0.3s ease both;
}

body.nav-open .site-nav li:nth-child(1) a { animation-delay: 0.05s; }
body.nav-open .site-nav li:nth-child(2) a { animation-delay: 0.1s; }
body.nav-open .site-nav li:nth-child(3) a { animation-delay: 0.15s; }
body.nav-open .site-nav li:nth-child(4) a { animation-delay: 0.2s; }
body.nav-open .site-nav li:nth-child(5) a { animation-delay: 0.25s; }

@keyframes menuItemFade {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}

/* 5. Skip link improvement */
.skip-link {
  font-weight: 700;
  font-size: 0.9rem;
  transition: none;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--text-inverse);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 6. Improved focus-visible states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* 7. Subtle page load animation */
body.page-ready .hero-home {
  animation: heroFadeIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

body.page-ready .topbar {
  animation: topbarSlide 0.5s ease both;
}

@keyframes topbarSlide {
  from { opacity: 0; transform: translateY(-100%); }
  to { opacity: 1; transform: none; }
}

/* 8. Enhanced signature band */
.signature-band-inner {
  transition: box-shadow 0.3s ease;
}

.signature-band-inner:hover {
  box-shadow: 0 24px 60px rgba(31, 25, 19, 0.08);
}

/* 9. FAQ accordion smooth toggle */
.faq-item summary {
  transition: color 0.2s ease, padding 0.2s ease;
}

.faq-item[open] summary {
  color: var(--brand-deep);
  padding-bottom: 0.6rem;
}

.faq-item .faq-answer {
  animation: faqOpen 0.3s ease both;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* 10. Cookie consent banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  padding: 0.75rem 1rem;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 0.65rem 0.65rem 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(31, 25, 19, 0.1);
  font-size: 0.82rem;
  color: var(--text-soft);
}

.cookie-banner-inner a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.cookie-banner-dismiss {
  padding: 0.4rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
}

.cookie-banner-accept {
  padding: 0.4rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand-deep);
  color: var(--text-inverse);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-banner-accept:hover {
  background: var(--brand);
}

/* 11. Loading skeleton for images */
img[loading="lazy"] {
  background: linear-gradient(90deg, var(--bg-soft) 25%, var(--bg) 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

img[loading="lazy"][src] {
  animation: none;
  background: none;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 12. Floating card entrance animation */
.hero-floating-card {
  animation: floatIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.hero-floating-card-note {
  animation-delay: 0.5s;
}

/* ═══════════════════════════════════════════════════
   CRO — Conversie-Machine Upgrade 2026
   ═══════════════════════════════════════════════════ */

/* --- Sticky Add-to-Cart Bar (product page) --- */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 48;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-top: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 20px rgba(31, 25, 19, 0.08);
}

.sticky-atc.is-visible {
  transform: translateY(0);
}

.sticky-atc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.sticky-atc-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.sticky-atc-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand-accent);
  white-space: nowrap;
}

.sticky-atc .button {
  white-space: nowrap;
  min-height: 42px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
}

/* --- Social Proof Toast --- */
.social-proof-toast {
  position: fixed;
  bottom: 5.5rem;
  left: 1rem;
  z-index: 47;
  max-width: 320px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(31, 25, 19, 0.1);
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.social-proof-toast.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.social-proof-toast strong {
  color: var(--brand-deep);
}

.social-proof-toast .proof-time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* --- Stock/Urgency Badge --- */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.stock-badge-available {
  background: rgba(79, 130, 97, 0.1);
  color: var(--success);
}

.stock-badge-low {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

.stock-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Risk Reversal Banner --- */
.risk-reversal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(79, 130, 97, 0.15);
  background: rgba(79, 130, 97, 0.04);
  font-size: 0.88rem;
  color: var(--text);
}

.risk-reversal-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.risk-reversal-icon {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* --- Delivery Countdown --- */
.delivery-countdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 700;
}

.delivery-countdown-icon {
  width: 14px;
  height: 14px;
}

/* --- Trust Strip (checkout) --- */
.checkout-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.checkout-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-soft);
}

.checkout-trust-icon {
  width: 16px;
  height: 16px;
  color: var(--success);
}

/* --- Progress Bar (maatcheck) --- */
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.progress-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-soft);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.progress-step.is-active .progress-step-number {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
  color: var(--text-inverse);
}

.progress-step.is-done .progress-step-number {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.progress-step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 0.5rem;
}

.progress-step.is-done + .progress-step .progress-step-line,
.progress-step.is-active .progress-step-line {
  background: var(--brand-deep);
}

.progress-step-label {
  display: none;
}

/* --- Enhanced Exit-Intent --- */
.exit-popup-shell {
  text-align: center;
}

.exit-popup-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.exit-popup-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

/* --- Benefit Strip under price --- */
.price-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.price-benefit {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 600;
}

.price-benefit-icon {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* --- Mobile CRO improvements --- */
@media (max-width: 640px) {
  .sticky-atc-inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.65rem 0;
  }

  .sticky-atc-info {
    width: 100%;
    justify-content: space-between;
  }

  .sticky-atc .button {
    width: 100%;
  }

  .social-proof-toast {
    left: 0.5rem;
    right: 0.5rem;
    max-width: none;
    bottom: 4.5rem;
  }

  .risk-reversal {
    flex-direction: column;
    gap: 0.6rem;
  }

  .checkout-trust-strip {
    gap: 0.8rem;
  }
}

@media (min-width: 641px) {
  .progress-step-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-soft);
  }

  .progress-step.is-active .progress-step-label {
    color: var(--text);
  }
}

/* ═══════════════════════════════════════════
   Spec Table
   ═══════════════════════════════════════════ */

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.95rem;
}

.spec-table tr:nth-child(even) {
  background: rgba(255, 252, 248, 0.6);
}

.spec-table tr:nth-child(odd) {
  background: rgba(244, 239, 231, 0.5);
}

.spec-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-label {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  width: 40%;
}

.spec-value {
  color: var(--text-soft);
}

/* ═══════════════════════════════════════════
   Cross-sell Section
   ═══════════════════════════════════════════ */

.cross-sell-section {
  padding: 2.5rem 0;
}

.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.cross-sell-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(252, 246, 239, 0.78));
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cross-sell-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cross-sell-card strong {
  font-size: 1rem;
  color: var(--text);
}

.cross-sell-price {
  font-weight: 800;
  color: var(--brand);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cross-sell-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cross-sell-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ═══════════════════════════════════════════
   Breadcrumbs
   ═══════════════════════════════════════════ */

.breadcrumbs {
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.breadcrumb-list li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-list li + li::before {
  content: "\203A";
  margin: 0 0.5rem;
  color: rgba(87, 74, 58, 0.35);
  font-weight: 300;
}

.breadcrumb-list a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumb-list a:hover {
  color: var(--brand);
}

.breadcrumb-list li:last-child {
  color: var(--text);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   Newsletter Section
   ═══════════════════════════════════════════ */

.newsletter-section {
  padding: 3rem 0;
  background:
    radial-gradient(circle at top center, rgba(191, 139, 83, 0.08), transparent 20%),
    linear-gradient(180deg, #191816 0%, #141311 100%);
  color: rgba(247, 239, 228, 0.82);
}

.newsletter-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-copy h2 {
  color: var(--text-inverse);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.newsletter-copy p {
  color: rgba(247, 239, 228, 0.65);
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  max-width: 420px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(247, 239, 228, 0.45);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.14);
}

.newsletter-form button {
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-accent), #d4a060);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(191, 139, 83, 0.3);
}

.newsletter-success {
  color: var(--success);
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════
   WhatsApp Float Button
   ═══════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.4rem;
  z-index: 49;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 5.2rem;
    width: 48px;
    height: 48px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ═══════════════════════════════════════════
   Header Phone
   ═══════════════════════════════════════════ */

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 600;
  transition: color 150ms ease;
}

.header-phone:hover {
  color: var(--brand);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   Email Capture Popup
   ═══════════════════════════════════════════ */

.email-capture-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.email-capture-popup[hidden] {
  display: none;
}

.email-capture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 22, 21, 0.6);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.email-capture-content {
  position: relative;
  max-width: 440px;
  width: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(252, 246, 239, 0.94));
  box-shadow: var(--shadow-strong);
  animation: emailCaptureIn 320ms ease;
  text-align: center;
}

@keyframes emailCaptureIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.email-capture-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.email-capture-content p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.email-capture-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-soft);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 150ms ease;
}

.email-capture-close:hover {
  background: rgba(255, 255, 255, 1);
}

.email-capture-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.email-capture-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.95rem;
}

.email-capture-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand-accent);
}

.email-capture-form button {
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2c2c29, #45433d);
  color: var(--text-inverse);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.email-capture-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(25, 22, 18, 0.18);
}

.email-capture-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

@media (max-width: 480px) {
  .email-capture-form {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════
   Back to Top Button
   ═══════════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.4rem;
  z-index: 48;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.92);
  color: var(--text-soft);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(31, 25, 19, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 250ms ease, visibility 250ms ease, transform 250ms ease, background 150ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 6px 20px rgba(31, 25, 19, 0.14);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 8.5rem;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════
   CROSS-LINKING & PARTNER NETWORK
   ═══════════════════════════════════════════════════ */

.partner-section {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.6), var(--bg));
}

.partner-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.partner-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(252, 246, 239, 0.78));
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  color: inherit;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(31, 25, 19, 0.1);
  border-color: rgba(191, 139, 83, 0.25);
}

.partner-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.partner-card-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.partner-badge {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(191, 139, 83, 0.1);
  color: var(--brand-accent);
  border: 1px solid rgba(191, 139, 83, 0.2);
  flex-shrink: 0;
}

.partner-badge-partner {
  background: rgba(79, 130, 97, 0.1);
  color: var(--success);
  border-color: rgba(79, 130, 97, 0.2);
}

.partner-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  flex: 1;
}

.partner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.partner-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.partner-note a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Installation CTA on product pages --- */
.installation-cta {
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(252, 246, 239, 0.78));
  box-shadow: var(--shadow-soft);
}

.installation-cta h4 {
  margin-bottom: 0.5rem;
}

.installation-cta p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.installation-cta a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.installation-cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.installation-cta-links .button-secondary {
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
}

/* --- Footer Partners --- */
.footer-partners {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-partners-label {
  margin-bottom: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(95, 89, 78, 0.6);
}

.footer-partners a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(123, 102, 77, 0.3);
}

.footer-partners a:hover {
  text-decoration-color: var(--brand);
}
