:root {
  --ad-bg: #f5f3ee;
  --ad-surface: #ffffff;
  --ad-dark: #26292d;
  --ad-darker: #1d2023;
  --ad-text: #23262a;
  --ad-muted: #6b6f75;
  --ad-accent: #b95f1e;
  --ad-accent-hover: #8f4712;
  --ad-accent-soft: #e8a76b;
  --ad-border: rgba(35, 38, 42, 0.09);
  --ad-shadow: 0 12px 32px rgba(35, 38, 42, 0.12);
  --ad-radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ad-bg);
  color: var(--ad-text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.ad-menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: var(--ad-accent); text-decoration: none; }
a:hover { color: var(--ad-accent-hover); }
button, input, select, textarea { font: inherit; }

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--ad-text);
}

.ad-container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.ad-reading-width { width: min(820px, calc(100% - 48px)); }

.ad-button,
button.button,
input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 9px;
  background: var(--ad-accent);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ad-button:hover,
button.button:hover,
input.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--ad-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.ad-button--large { min-height: 50px; padding: 14px 26px; border-radius: 10px; }
.ad-button--outline { border: 1px solid rgba(245, 243, 238, .32); background: transparent; color: var(--ad-bg); }
.ad-button--outline:hover { border-color: var(--ad-bg); background: rgba(255,255,255,.08); }

/* Header */
.ad-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--ad-border);
  background: rgba(245, 243, 238, .94);
  backdrop-filter: blur(10px);
}

.admin-bar .ad-site-header { top: 32px; }

.ad-site-header__inner { display: flex; min-height: 64px; align-items: center; gap: 28px; }
.ad-site-header__cta { margin-left: 0; }

.ad-brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: var(--ad-text);
}

.custom-logo { width: auto; max-width: 240px; max-height: 48px; }
.ad-brand:hover { color: var(--ad-text); }

.ad-brand__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: none;
  border-radius: 9px;
  background: var(--ad-dark);
  color: var(--ad-accent-soft);
}

.ad-brand__name { font-family: "Space Grotesk", sans-serif; font-size: 19px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.ad-brand__name span { color: var(--ad-accent); }

.ad-navigation { margin-left: auto; }
.ad-menu,
.ad-navigation .menu { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.ad-navigation li { position: relative; }
.ad-navigation a { color: var(--ad-text); font-size: 14px; font-weight: 700; }
.ad-navigation a:hover { color: var(--ad-accent); }
.ad-navigation .sub-menu { position: absolute; z-index: 5; top: calc(100% + 14px); left: -16px; display: none; min-width: 220px; margin: 0; padding: 10px; border: 1px solid var(--ad-border); border-radius: 10px; background: #fff; box-shadow: var(--ad-shadow); list-style: none; }
.ad-navigation .sub-menu::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 15px; content: ""; }
.ad-navigation li:hover > .sub-menu,
.ad-navigation li:focus-within > .sub-menu { display: block; }
.ad-navigation .sub-menu a { display: block; padding: 10px 12px; border-radius: 7px; white-space: nowrap; }
.ad-navigation .sub-menu a:hover { background: var(--ad-bg); }

.ad-menu-toggle { display: none; width: 42px; height: 42px; margin-left: auto; padding: 9px; border: 0; border-radius: 8px; background: transparent; }
.ad-menu-toggle span:not(.screen-reader-text) { display: block; width: 22px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--ad-text); transition: transform .2s ease, opacity .2s ease; }
.ad-menu-toggle[aria-expanded="true"] span:nth-last-child(3) { transform: translateY(6px) rotate(45deg); }
.ad-menu-toggle[aria-expanded="true"] span:nth-last-child(2) { opacity: 0; }
.ad-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }
.ad-menu-backdrop { display: none; }
.ad-mobile-contact { display: none; }

/* Hero */
.ad-hero { overflow: hidden; background: var(--ad-dark); color: var(--ad-bg); }
.ad-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: end; min-height: 572px; }
.ad-hero__copy { z-index: 2; padding: 72px 0; }
.ad-campaign { display: inline-flex; padding: 7px 14px; border: 1px solid rgba(185,95,30,.48); border-radius: 999px; background: rgba(185,95,30,.18); color: var(--ad-accent-soft); font-size: 13px; font-weight: 800; letter-spacing: .04em; }
.ad-hero h1 { margin: 20px 0 16px; font-family: "Space Grotesk", sans-serif; font-size: clamp(40px, 4.1vw, 52px); font-weight: 700; letter-spacing: -.035em; line-height: 1.08; }
.ad-hero__copy > p { max-width: 47ch; margin: 0 0 28px; color: rgba(245,243,238,.75); font-size: 17px; line-height: 1.65; }
.ad-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.ad-hero__points { display: flex; gap: 24px; margin-top: 34px; color: rgba(245,243,238,.68); font-size: 13px; }
.ad-hero__points span { display: flex; align-items: center; gap: 8px; }
.ad-hero__points span::before { width: 6px; height: 6px; flex: none; border-radius: 50%; background: var(--ad-accent-soft); content: ""; }

.ad-hero__visual { position: relative; align-self: stretch; min-height: 540px; }
.ad-hero__backdrop { position: absolute; inset: 36px 0 0; border-radius: 18px 18px 0 0; background: linear-gradient(180deg,#f0ece3 0%,#e2dccf 100%); }
.ad-hero__visual::after { position: absolute; right: 4%; bottom: 0; left: 4%; height: 32px; background: radial-gradient(ellipse at center,rgba(0,0,0,.35),transparent 70%); content: ""; }
.ad-hero__products { position: absolute; z-index: 2; right: 6%; bottom: 0; left: 6%; display: flex; height: 500px; align-items: flex-end; justify-content: center; gap: 24px; }
.ad-hero__product { width: auto; filter: drop-shadow(0 22px 34px rgba(0,0,0,.3)); }
.ad-hero__product--2 { height: 43%; }
.ad-hero__product--3 { height: 64%; }
.ad-hero__product--5 { height: 100%; }

.ad-callout { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 10px; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.18); color: var(--ad-text); font-size: 13px; font-weight: 800; white-space: nowrap; }
.ad-callout::before { width: 8px; height: 8px; flex: none; border-radius: 50%; background: var(--ad-accent); content: ""; }
.ad-callout--steel { top: 78px; left: 12px; }
.ad-callout--warranty { top: 210px; right: 2px; }
.ad-callout--install { bottom: 76px; left: 6px; }

/* Benefit strip */
.ad-benefit-strip { border-bottom: 1px solid var(--ad-border); background: #fff; }
.ad-benefit-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding-block: 28px; }
.ad-benefit { display: flex; align-items: flex-start; gap: 12px; }
.ad-benefit > span { display: grid; width: 38px; height: 38px; place-items: center; flex: none; border-radius: 9px; background: #f0e6da; color: var(--ad-accent); font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.ad-benefit strong, .ad-benefit small { display: block; }
.ad-benefit strong { font-size: 14px; }
.ad-benefit small { margin-top: 3px; color: var(--ad-muted); font-size: 12px; line-height: 1.4; }

/* General sections */
.ad-section { padding-block: 72px; scroll-margin-top: 76px; }
.ad-section-heading { max-width: 62ch; margin: 0 auto 44px; text-align: center; }
.ad-section-heading h2,
.ad-feature-copy h2,
.ad-faq h2 { margin: 0 0 12px; font-family: "Space Grotesk", sans-serif; font-size: clamp(30px,3.2vw,36px); font-weight: 700; letter-spacing: -.025em; }
.ad-section-heading p { margin: 0; color: var(--ad-muted); font-size: 16px; line-height: 1.65; }

/* Product cards */
.ad-models { padding-bottom: 40px; }
.ad-models__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
.ad-product-card { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 22px; border: 1px solid var(--ad-border); border-radius: var(--ad-radius); background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.ad-product-card:hover { transform: translateY(-3px); box-shadow: var(--ad-shadow); }
.ad-product-card--popular { border: 1.5px solid var(--ad-accent); }
.ad-product-card__badge { position: absolute; z-index: 2; top: -12px; left: 50%; padding: 5px 13px; transform: translateX(-50%); border-radius: 999px; background: var(--ad-accent); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; white-space: nowrap; }
.ad-product-card__figure { display: flex; height: 330px; align-items: flex-end; justify-content: center; }
.ad-product-card__figure img { width: auto; filter: drop-shadow(0 10px 14px rgba(0,0,0,.18)); }
.ad-product-card__figure--2 img { height: 142px; }
.ad-product-card__figure--3 img { height: 198px; }
.ad-product-card__figure--4 img { height: 262px; }
.ad-product-card__figure--5 img { height: 326px; }
.ad-product-card__body { display: flex; flex: 1; flex-direction: column; gap: 7px; margin-top: 18px; }
.ad-product-card h3 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: 19px; }
.ad-product-card__body > p { min-height: 59px; margin: 0; color: var(--ad-muted); font-size: 13px; line-height: 1.5; }
.ad-product-card__price { display: flex; min-height: 52px; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }
.ad-product-card__price del { color: #9a9ea3; font-size: 12px; white-space: nowrap; }
.ad-product-card__price strong,
.ad-product-card__price > .amount,
.ad-product-card__price ins { color: var(--ad-text); font-family: "Space Grotesk",sans-serif; font-size: 20px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.ad-product-card__price .ad-discount { padding: 3px 7px; border-radius: 6px; background: #e8f0e6; color: #3f6b3a; font-size: 11px; font-weight: 800; }
.ad-product-card__button { width: 100%; margin-top: 8px; background: var(--ad-dark); }
.ad-product-card--popular .ad-product-card__button { background: var(--ad-accent); }
.ad-models__note { margin: 18px 0 0; color: #92969c; font-size: 13px; text-align: center; }

/* Dynamic WooCommerce product showcase */
.ad-home-products { border-bottom: 1px solid var(--ad-border); background: #fff; }
.ad-home-products__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.ad-home-product { display: flex; min-width: 0; overflow: hidden; flex-direction: column; border: 1px solid var(--ad-border); border-radius: var(--ad-radius); background: #fff; transition: box-shadow .2s ease, transform .2s ease; }
.ad-home-product:hover { transform: translateY(-3px); box-shadow: var(--ad-shadow); }
.ad-home-product__image { position: relative; display: flex; min-height: 290px; align-items: center; justify-content: center; overflow: hidden; padding: 18px; background: var(--ad-bg); }
.ad-home-product__image img { width: 100%; height: 270px; margin: 0; object-fit: contain; transition: transform .25s ease; }
.ad-home-product:hover .ad-home-product__image img { transform: scale(1.025); }
.ad-home-product__badge { position: absolute; z-index: 2; top: 14px; left: 14px; padding: 5px 10px; border-radius: 999px; background: var(--ad-accent); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.ad-home-product__body { display: flex; flex: 1; flex-direction: column; gap: 12px; padding: 20px; }
.ad-home-product h3 { margin: 0; font-family: "Space Grotesk",sans-serif; font-size: 18px; line-height: 1.35; }
.ad-home-product h3 a { color: var(--ad-text); }
.ad-home-product__price { margin-top: auto; color: var(--ad-accent); font-size: 20px; font-weight: 800; }
.ad-home-product__price del { margin-right: 7px; color: #96999d; font-size: 13px; font-weight: 500; }
.ad-home-product__price ins { text-decoration: none; }
.ad-home-product__button { width: 100%; background: var(--ad-accent); }
.ad-home-products__footer { display: flex; justify-content: center; margin-top: 28px; }
.ad-home-products__footer .ad-button--outline { border-color: var(--ad-accent); color: var(--ad-accent); }

/* Size comparison */
.ad-size-guide { padding-top: 42px; background: linear-gradient(180deg,#f6f0e8 0%,var(--ad-bg) 100%); }
.ad-size-guide__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.ad-size-card { display: flex; min-height: 172px; flex-direction: column; justify-content: center; padding: 28px; border: 1px solid rgba(185,95,30,.22); border-radius: var(--ad-radius); background: rgba(255,255,255,.82); color: var(--ad-text); text-align: center; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.ad-size-card:hover { transform: translateY(-3px); border-color: var(--ad-accent); box-shadow: var(--ad-shadow); }
.ad-size-card strong { font-family: "Space Grotesk",sans-serif; font-size: 22px; }
.ad-size-card span { margin-top: 13px; color: var(--ad-muted); }
.ad-size-card span b { color: var(--ad-accent); font-family: "Space Grotesk",sans-serif; font-size: 25px; }
.ad-size-card small { margin-top: 7px; color: #85898e; font-size: 12px; }

/* Interior scenes */
.ad-scenes { border-block: 1px solid var(--ad-border); background: #fff; }
.ad-scenes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ad-scenes figure { min-width: 0; margin: 0; }
.ad-scenes figcaption { margin-top: 12px; color: var(--ad-muted); font-size: 13px; text-align: center; }
.ad-scene { position: relative; height: 440px; overflow: hidden; border-radius: var(--ad-radius); background: linear-gradient(#e9e2d6 0%,#e4dccf 74%); }
.ad-scene--dark { background: linear-gradient(#ddd5c6 0%,#d6cdbc 74%); }
.ad-scene__floor { position: absolute; right: 0; bottom: 0; left: 0; height: 118px; border-top: 1px solid rgba(0,0,0,.12); background: repeating-linear-gradient(90deg,#c8a077 0 92px,#bd9166 92px 94px); }
.ad-scene--dark .ad-scene__floor { background: repeating-linear-gradient(90deg,#b99c78 0 92px,#ad8f6a 92px 94px); }
.ad-scene__baseboard { position: absolute; right: 0; bottom: 112px; left: 0; height: 14px; border-top: 1px solid rgba(0,0,0,.07); background: #f2efe8; box-shadow: 0 2px 3px rgba(0,0,0,.08); }
.ad-scene__door { position: absolute; bottom: 118px; width: 172px; height: 302px; border: 7px solid #efeadf; border-bottom: 0; background: #f4f1ea; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08),4px 0 14px rgba(0,0,0,.08); }
.ad-scene__door--light { left: 64px; }
.ad-scene__door--dark { right: 64px; border-color: #2f3236; background: #3a3d41; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06),-4px 0 14px rgba(0,0,0,.12); }
.ad-scene__door i { position: absolute; right: 20px; left: 20px; height: 112px; border: 1px solid rgba(0,0,0,.1); }
.ad-scene__door i:first-child { top: 22px; }
.ad-scene__door i:nth-child(2) { top: 152px; bottom: 22px; height: auto; }
.ad-scene__door b { position: absolute; top: 142px; right: 12px; width: 26px; height: 7px; border-radius: 4px; background: #2c2f33; }
.ad-scene__door--dark i { border-color: rgba(255,255,255,.12); }
.ad-scene__door--dark b { right: auto; left: 12px; background: #c9b48e; }
.ad-scene__mat { position: absolute; bottom: 104px; left: 118px; width: 88px; height: 26px; border-radius: 3px; background: #8a7c6a; }
.ad-scene__mirror { position: absolute; top: 64px; left: 120px; width: 96px; height: 150px; border: 6px solid #efe9dd; border-radius: 60px; background: linear-gradient(150deg,#cfd6d8,#aeb6ba 60%,#c4ccce); box-shadow: 0 8px 18px rgba(0,0,0,.12); }
.ad-scene img { position: absolute; z-index: 2; width: auto; filter: drop-shadow(6px 10px 16px rgba(0,0,0,.28)); }
.ad-scene--light img { right: 20%; bottom: 118px; height: 212px; }
.ad-scene--dark img { bottom: 118px; left: 19%; height: 330px; }

/* Feature area */
.ad-features__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.ad-feature-visual { position: relative; display: flex; min-height: 520px; align-items: center; justify-content: center; padding: 40px; border-radius: 16px; background: var(--ad-dark); }
.ad-feature-visual > img { width: auto; height: 400px; filter: drop-shadow(0 20px 30px rgba(0,0,0,.45)); }
.ad-feature-label { position: absolute; padding: 10px 14px; border-radius: 10px; background: var(--ad-bg); box-shadow: 0 8px 20px rgba(0,0,0,.3); font-size: 12px; }
.ad-feature-label strong, .ad-feature-label small { display: block; }
.ad-feature-label small { margin-top: 2px; color: var(--ad-muted); }
.ad-feature-label--lock { top: 56px; right: 28px; }
.ad-feature-label--door { bottom: 64px; left: 28px; }
.ad-feature-copy h2 { margin-bottom: 28px; }
.ad-feature-list { display: flex; flex-direction: column; gap: 22px; }
.ad-feature-list > div { position: relative; padding-left: 20px; }
.ad-feature-list > div::before { position: absolute; top: 0; bottom: 0; left: 0; width: 4px; border-radius: 2px; background: var(--ad-accent); content: ""; }
.ad-feature-list strong { font-size: 16px; }
.ad-feature-list p { margin: 4px 0 0; color: var(--ad-muted); font-size: 14px; line-height: 1.65; }

/* FAQ and footer */
.ad-faq { background: var(--ad-dark); color: var(--ad-bg); }
.ad-faq__inner { width: min(820px, calc(100% - 48px)); }
.ad-faq h2 { margin-bottom: 32px; text-align: center; }
.ad-faq__list { display: flex; flex-direction: column; gap: 14px; }
.ad-faq details { padding: 18px 22px; border: 1px solid rgba(245,243,238,.12); border-radius: 12px; background: rgba(245,243,238,.06); }
.ad-faq summary { position: relative; padding-right: 24px; cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
.ad-faq summary::-webkit-details-marker { display: none; }
.ad-faq summary::after { position: absolute; top: -1px; right: 0; color: var(--ad-accent-soft); font-size: 20px; content: "+"; }
.ad-faq details[open] summary::after { content: "−"; }
.ad-faq details p { margin: 10px 0 0; color: rgba(245,243,238,.72); font-size: 14px; line-height: 1.65; }
.ad-faq__cta { display: flex; align-items: center; flex-direction: column; margin-top: 44px; text-align: center; }
.ad-faq__cta small { margin-top: 12px; color: rgba(245,243,238,.56); }
.ad-faq__cta small a { color: var(--ad-accent-soft); font-weight: 700; }

.ad-site-footer { background: var(--ad-darker); color: rgba(245,243,238,.58); font-size: 13px; }
.ad-footer-widgets { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 36px; padding-block: 42px 34px; border-bottom: 1px solid rgba(245,243,238,.12); }
.ad-footer-widgets__column { min-width: 0; }
.ad-footer-widget + .ad-footer-widget { margin-top: 26px; }
.ad-footer-widget__title,
.ad-footer-widget .wp-block-heading { margin: 0 0 14px; color: var(--ad-bg); font-family: "Space Grotesk",sans-serif; font-size: 18px; line-height: 1.3; }
.ad-footer-widget p { margin: 0 0 12px; line-height: 1.7; }
.ad-footer-widget ul { margin: 0; padding: 0; list-style: none; }
.ad-footer-widget li + li { margin-top: 10px; }
.ad-footer-widget a { color: rgba(245,243,238,.8); }
.ad-footer-widget a:hover { color: var(--ad-accent-soft); }
.ad-site-footer__inner { display: flex; min-height: 74px; align-items: center; gap: 20px; padding-block: 14px; }
.ad-brand--footer { color: var(--ad-bg); }
.ad-brand--footer:hover { color: var(--ad-bg); }
.ad-brand--footer .ad-brand__icon { width: 28px; height: 28px; background: var(--ad-bg); color: var(--ad-accent); }
.ad-brand--footer .ad-brand__name { font-size: 16px; }
.ad-site-footer__shop, .ad-footer-nav { margin-left: auto; }
.ad-site-footer__shop { color: rgba(245,243,238,.78); }
.ad-footer-nav ul { display: flex; gap: 16px; margin: 0; padding: 0; list-style: none; }
.ad-footer-nav a { color: rgba(245,243,238,.78); }

.ad-floating-cart { position: fixed; z-index: 59; right: 94px; bottom: 22px; display: flex; min-height: 56px; align-items: center; gap: 11px; padding: 10px 20px 10px 12px; border: 1px solid rgba(35,38,42,.08); border-radius: 999px; background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.2); color: var(--ad-text); font-family: "Space Grotesk",sans-serif; font-size: 15px; font-weight: 600; white-space: nowrap; opacity: 1; transition: transform .2s ease, opacity .2s ease, visibility .2s ease, box-shadow .2s ease; }
.ad-floating-cart:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,.24); color: var(--ad-accent); }
.ad-floating-cart.is-empty { visibility: hidden; transform: translateY(16px); opacity: 0; pointer-events: none; }
.ad-floating-cart__icon { display: grid; width: 36px; height: 36px; place-items: center; flex: none; border-radius: 50%; background: var(--ad-bg); color: var(--ad-accent); }
.ad-floating-cart__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.ad-floating-cart__text strong { color: var(--ad-accent); font-size: 17px; }
.ad-whatsapp { position: fixed; z-index: 60; right: 22px; bottom: 22px; display: grid; width: 56px; height: 56px; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 10px 24px rgba(0,0,0,.25); color: #fff; transition: transform .2s ease, background-color .2s ease; }
.ad-whatsapp:hover { transform: translateY(-2px) scale(1.03); background: #1fb457; color: #fff; }

/* Inner WordPress pages */
.ad-content-wrap { min-height: 65vh; padding-block: 64px; background: #fff; }
.ad-page-header, .ad-entry > h1 { margin: 0 0 36px; }
.ad-page-header h1, .ad-entry h1 { margin: 0; font-family: "Space Grotesk",sans-serif; font-size: clamp(34px,5vw,52px); letter-spacing: -.03em; line-height: 1.1; }
.ad-archive-description { color: var(--ad-muted); }
.ad-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.ad-post-card { overflow: hidden; border: 1px solid var(--ad-border); border-radius: var(--ad-radius); background: #fff; box-shadow: 0 5px 18px rgba(35,38,42,.05); }
.ad-post-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.ad-post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ad-post-card:hover .ad-post-card__image img { transform: scale(1.03); }
.ad-post-card__body { padding: 22px; }
.ad-post-card__body h2 { margin: 6px 0 12px; font-family: "Space Grotesk",sans-serif; font-size: 22px; }
.ad-post-card__body h2 a { color: var(--ad-text); }
.ad-post-card__body > p { color: var(--ad-muted); line-height: 1.65; }
.ad-post-card__meta, .ad-entry__meta { color: var(--ad-accent); font-size: 13px; font-weight: 700; }
.ad-entry__image { overflow: hidden; margin: 0 0 32px; border-radius: var(--ad-radius); }
.ad-entry__content { font-size: 17px; line-height: 1.8; }
.ad-entry__content h2, .ad-entry__content h3 { margin-top: 1.7em; font-family: "Space Grotesk",sans-serif; line-height: 1.25; }
.ad-entry__content img { border-radius: 10px; }
.ad-comments { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--ad-border); }
.ad-comments__title, .comment-reply-title { font-family: "Space Grotesk",sans-serif; }
.ad-comment-list { padding: 0; list-style: none; }
.ad-comment-list .comment { margin: 0 0 18px; padding: 18px; border: 1px solid var(--ad-border); border-radius: 10px; }
.ad-comment-list .children { margin-top: 18px; padding-left: 24px; list-style: none; }
.comment-form input:not([type="submit"]), .comment-form textarea { width: 100%; padding: 11px 12px; border: 1px solid #d7d7d7; border-radius: 7px; }
.comment-form input[type="submit"] { cursor: pointer; }
.ad-empty-state { min-height: 50vh; text-align: center; }
.ad-empty-state__code { margin: 0; color: var(--ad-accent); font-family: "Space Grotesk",sans-serif; font-size: 88px; font-weight: 700; line-height: 1; }
.navigation.pagination { margin-top: 36px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.page-numbers { display: grid; min-width: 40px; min-height: 40px; place-items: center; padding: 6px 12px; border-radius: 8px; background: var(--ad-bg); }
.page-numbers.current { background: var(--ad-accent); color: #fff; }

/* WooCommerce */
.ad-woocommerce .woocommerce-breadcrumb { color: var(--ad-muted); font-size: 13px; }
.woocommerce .woocommerce-products-header__title,
.woocommerce div.product .product_title { font-family: "Space Grotesk",sans-serif; letter-spacing: -.02em; }
.woocommerce ul.products li.product { padding: 18px; border: 1px solid var(--ad-border); border-radius: var(--ad-radius); background: #fff; }
.woocommerce ul.products li.product a img { border-radius: 9px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--ad-text); }
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title { color: var(--ad-text); }
.woocommerce ul.products li.product .price { color: var(--ad-text); font-weight: 800; }
.woocommerce ul.products li.product .price > .amount,
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price del .amount { color: var(--ad-text); opacity: 1; }
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins .amount { color: #c62828; text-decoration: none; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--ad-accent); font-weight: 800; }
.woocommerce span.onsale { min-width: 52px; min-height: 30px; padding: 6px 10px; border-radius: 999px; background: var(--ad-accent); line-height: 1.5; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--ad-accent); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--ad-accent); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty { padding: 10px; border: 1px solid #d7d7d7; border-radius: 7px; }

@media (max-width: 1050px) {
  .ad-hero__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ad-hero__points { flex-direction: column; gap: 9px; }
  .ad-benefit-strip__grid, .ad-models__grid, .ad-home-products__grid { grid-template-columns: repeat(2,1fr); }
  .ad-features__grid { grid-template-columns: 1fr; }
  .ad-feature-visual { min-height: 480px; }
}

@media (max-width: 820px) {
  .ad-site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .admin-bar .ad-site-header { top: 46px; }
  .ad-menu-toggle { position: relative; z-index: 72; display: block; cursor: pointer; }
  .ad-site-header__cta { display: none; }
  .ad-navigation { position: fixed; z-index: 70; top: 64px; bottom: 0; left: 0; display: block; visibility: hidden; width: min(360px,88vw); margin: 0; padding: 18px 22px 30px; overflow-y: auto; transform: translateX(-104%); border-top: 1px solid var(--ad-border); background: #fff; box-shadow: 18px 0 38px rgba(0,0,0,.18); opacity: 0; pointer-events: none; transition: transform .26s ease, opacity .2s ease, visibility .26s; }
  .admin-bar .ad-navigation { top: 110px; }
  .ad-navigation.is-open { visibility: visible; transform: translateX(0); opacity: 1; pointer-events: auto; }
  .ad-menu, .ad-navigation .menu { align-items: stretch; flex-direction: column; gap: 0; }
  .ad-navigation li { border-bottom: 1px solid var(--ad-border); }
  .ad-navigation a { display: flex; min-height: 58px; align-items: center; padding: 14px 8px; color: var(--ad-text); font-family: "Space Grotesk",sans-serif; font-size: 18px; font-weight: 700; }
  .ad-navigation a::after { margin-left: auto; color: var(--ad-accent); font-family: "Manrope",sans-serif; font-size: 19px; content: "›"; }
  .ad-navigation .sub-menu { position: static; display: block; min-width: 0; margin: -4px 0 10px 16px; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .ad-navigation .sub-menu::before { display: none; }
  .ad-navigation .sub-menu li { border-bottom: 0; }
  .ad-navigation .sub-menu a { min-height: 42px; padding: 8px; color: var(--ad-muted); font-family: "Manrope",sans-serif; font-size: 14px; font-weight: 600; white-space: normal; }
  .ad-mobile-contact { display: block; margin-top: 22px; padding: 24px 8px 8px; border-top: 1px solid var(--ad-border); }
  .ad-mobile-contact__title { margin: 0 0 17px; color: var(--ad-text); font-family: "Space Grotesk",sans-serif; font-size: 18px; letter-spacing: -.02em; }
  .ad-mobile-contact__details { display: flex; flex-direction: column; gap: 13px; }
  .ad-mobile-contact__item { display: grid; grid-template-columns: 30px minmax(0,1fr); gap: 10px; align-items: start; color: var(--ad-muted); font-size: 14px; line-height: 1.55; }
  .ad-mobile-contact__item-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; background: rgba(185,95,30,.1); color: var(--ad-accent); }
  .ad-mobile-contact__item-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
  .ad-mobile-contact .ad-mobile-contact__item a,
  .ad-mobile-contact .ad-mobile-contact__item span:not(.ad-mobile-contact__item-icon) { display: inline; min-height: 0; padding: 4px 0 0; color: var(--ad-muted); font-family: "Manrope",sans-serif; font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }
  .ad-mobile-contact .ad-mobile-contact__item a:hover { color: var(--ad-accent); }
  .ad-mobile-contact a::after { display: none; content: none; }
  .ad-mobile-contact__socials { display: flex; gap: 9px; margin-top: 19px; flex-wrap: wrap; }
  .ad-mobile-contact .ad-mobile-contact__socials a { display: grid; width: 38px; height: 38px; min-height: 0; place-items: center; padding: 0; border: 1px solid var(--ad-border); border-radius: 50%; background: var(--ad-bg); color: var(--ad-text); }
  .ad-mobile-contact .ad-mobile-contact__socials a:hover { border-color: var(--ad-accent); background: var(--ad-accent); color: #fff; }
  .ad-mobile-contact .ad-mobile-contact__socials .ad-mobile-contact__whatsapp { border-color: #25d366; background: #25d366; color: #fff; }
  .ad-mobile-contact__socials svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
  .ad-mobile-contact__socials a[aria-label="Instagram"] svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
  .ad-mobile-contact__socials .ad-social-dot { fill: currentColor; stroke: none; }
  .ad-mobile-contact__socials .ad-social-play { fill: #fff; }
  .ad-menu-backdrop { position: fixed; z-index: 45; inset: 64px 0 0; display: block; visibility: hidden; width: 100%; height: auto; margin: 0; padding: 0; transform: none; border: 0; border-radius: 0; background: rgba(29,32,35,.58); opacity: 0; pointer-events: none; transition: opacity .22s ease, visibility .22s; }
  .admin-bar .ad-menu-backdrop { top: 110px; }
  .ad-menu-open .ad-menu-backdrop { visibility: visible; opacity: 1; pointer-events: auto; }
  .ad-hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .ad-hero__copy { padding: 52px 0 8px; }
  .ad-hero__visual { min-height: 480px; }
  .ad-scenes__grid { grid-template-columns: 1fr; }
  .ad-post-grid { grid-template-columns: repeat(2,1fr); }
  .ad-footer-widgets { grid-template-columns: 1fr; gap: 28px; padding-block: 32px; }
  .ad-site-footer__inner { align-items: flex-start; flex-direction: column; padding-block: 24px; }
  .ad-site-footer__shop, .ad-footer-nav { margin-left: 0; }
}

@media (max-width: 600px) {
  .ad-container, .ad-reading-width, .ad-faq__inner { width: min(100% - 32px,1120px); }
  .ad-site-header__inner { min-height: 58px; }
  .ad-navigation { top: 58px; }
  .admin-bar .ad-navigation { top: 104px; }
  .ad-menu-backdrop { top: 58px; }
  .admin-bar .ad-menu-backdrop { top: 104px; }
  .custom-logo { max-width: 190px; max-height: 40px; }
  .ad-brand__icon { width: 31px; height: 31px; }
  .ad-brand__name { font-size: 16px; }
  .ad-hero__copy { padding-top: 42px; }
  .ad-hero h1 { font-size: 35px; }
  .ad-hero__copy > p { font-size: 15px; }
  .ad-hero__visual { min-height: 390px; }
  .ad-hero__products { right: 5%; left: 5%; height: 360px; gap: 14px; }
  .ad-callout { padding: 7px 10px; font-size: 11px; }
  .ad-callout--steel { top: 64px; left: 6px; }
  .ad-callout--warranty { top: 170px; right: 4px; }
  .ad-callout--install { bottom: 46px; left: 2px; }
  .ad-benefit-strip__grid, .ad-models__grid, .ad-home-products__grid, .ad-size-guide__grid, .ad-post-grid { grid-template-columns: 1fr; }
  .ad-section { padding-block: 54px; }
  .ad-product-card__figure { height: 300px; }
  .ad-product-card__figure--2 img { height: 132px; }
  .ad-product-card__figure--3 img { height: 188px; }
  .ad-product-card__figure--4 img { height: 245px; }
  .ad-product-card__figure--5 img { height: 294px; }
  .ad-home-product__image { min-height: 320px; }
  .ad-home-product__image img { height: 300px; }
  .ad-scene { height: 360px; }
  .ad-scene__door--light { left: 20px; }
  .ad-scene__door--dark { right: 20px; }
  .ad-scene--light img { right: 7%; }
  .ad-scene--dark img { left: 8%; height: 300px; }
  .ad-scene__mirror { left: 54px; }
  .ad-feature-visual { min-height: 450px; padding: 24px; }
  .ad-feature-visual > img { height: 350px; }
  .ad-floating-cart { right: auto; bottom: 16px; left: 50%; width: max-content; min-width: 250px; max-width: calc(100% - 32px); justify-content: center; padding: 10px 18px 10px 11px; transform: translateX(-50%); font-size: 15px; }
  .ad-floating-cart:hover { transform: translateX(-50%) translateY(-2px); }
  .ad-floating-cart.is-empty { transform: translateX(-50%) translateY(16px); }
  .ad-whatsapp { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  body:has(.ad-floating-cart:not(.is-empty)) .ad-whatsapp { bottom: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* WooCommerce: match purchase buttons with the WhatsApp order button. */
.single-product button.single_add_to_cart_button,
.single-product .single_add_to_cart_button.button.alt,
.wc-block-cart__submit-button,
.woocommerce-cart .checkout-button.button.alt {
  border-color: #b95f1e !important;
  background-color: #b95f1e !important;
  color: #fff !important;
}

.single-product button.single_add_to_cart_button:hover,
.single-product button.single_add_to_cart_button:focus,
.single-product .single_add_to_cart_button.button.alt:hover,
.single-product .single_add_to_cart_button.button.alt:focus,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus,
.woocommerce-cart .checkout-button.button.alt:hover,
.woocommerce-cart .checkout-button.button.alt:focus {
  border-color: #9f4f17 !important;
  background-color: #9f4f17 !important;
  color: #fff !important;
}
