/** Shopify CDN: Minification failed

Line 1498:13 Expected identifier but found whitespace
Line 1498:14 Unexpected "var("

**/
/* ═══════════════════════════════════════════════════════════════════ */
/* ABODE WAREHOUSE — SHOPIFY THEME CSS                               */
/* Brown/Beige "Charming Attractive" Design System                   */
/* ═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --brown-dark: #3D2B1F;
  --brown: #5C4033;
  --brown-medium: #7B5B3A;
  --brown-light: #A0845C;
  --brown-pale: #C4A87C;
  --beige-dark: #C9B99A;
  --beige: #E8DCC8;
  --beige-light: #F3EDE3;
  --beige-pale: #FAF7F2;
  --cream: #FDFCFA;
  --white: #FFFFFF;
  --text-dark: #2C2118;
  --text-medium: #5C4A3A;
  --text-light: #8B7B6B;
  --text-muted: #B0A090;
  --border: #E5DDD0;
  --border-light: #F0EAE0;
  --error: #B85C38;
  --success: #5C7B3A;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── CUSTOM CURSOR removed (v75) — native cursor restored for responsiveness ── */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); font-weight: 400; font-size: 15px;
  line-height: 1.6; color: var(--text-dark); background: var(--cream);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── LAYOUT ── */
.page-width { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.page-width--narrow { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--alt { background: var(--beige-pale); }
.section__header { text-align: center; margin-bottom: 48px; }
.section__tagline {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brown-light); margin-bottom: 10px;
}
.section__title {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300; color: var(--brown-dark); line-height: 1.2; margin-bottom: 12px;
}
.section__description {
  font-size: 15px; font-weight: 300; color: var(--text-light);
  max-width: 520px; line-height: 1.7; margin-left: auto; margin-right: auto;
}
.section__link {
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brown);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; transition: gap .3s; cursor: pointer;
}
.section__link:hover { gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 14px 40px; font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; border: none;
  transition: all .3s; cursor: pointer; text-align: center; border-radius: 4px;
  font-family: var(--sans); line-height: 1;
}
.btn--primary { background: var(--brown); color: var(--white); }
.btn--primary:hover { background: var(--brown-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(60,43,31,.08); }
.btn--secondary { background: transparent; color: var(--brown); border: 1px solid var(--brown); }
.btn--secondary:hover { background: var(--brown); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); }
.btn--outline-white:hover { background: var(--white); color: var(--brown-dark); border-color: var(--white); }
.btn--full { width: 100%; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--text-light); cursor: pointer; }
.breadcrumb a:hover { color: var(--brown); }

/* ═══════════════════════════════════════════════════════════════════ */
/* ANNOUNCEMENT BAR                                                  */
/* ═══════════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--brown-dark); color: var(--beige-light);
  text-align: center; padding: 10px 20px; font-size: 12px;
  font-weight: 400; letter-spacing: .08em; overflow: hidden;
}
.announcement-bar__track {
  display: inline-flex; gap: 80px;
  animation: marquee 35s linear infinite; white-space: nowrap;
}
.announcement-bar__item { display: inline; }
.announcement-bar__item::before {
  content: '✦'; font-size: 8px; color: var(--brown-pale); margin-right: 8px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* HEADER                                                            */
/* ═══════════════════════════════════════════════════════════════════ */
.header {
  background: var(--cream); border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 100; transition: box-shadow .3s;
}
.header--scrolled { box-shadow: 0 2px 20px rgba(60,43,31,.06); }
.header__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px; max-width: 1400px; margin: 0 auto;
}
.header__side { display: flex; align-items: center; gap: 24px; flex: 1; }
.header__side--left { justify-content: flex-start; }
.header__side--right { justify-content: flex-end; }
.header__link {
  font-size: 12px; font-weight: 400; letter-spacing: .06em;
  color: var(--text-medium); text-transform: uppercase; transition: color .3s; cursor: pointer;
}
.header__link:hover { color: var(--brown); }
.header__search-toggle { cursor: pointer; }

/* Search Overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: flex-start; justify-content: center;
  pointer-events: none; opacity: 0;
  transition: opacity .25s ease;
}
.search-overlay.is-open {
  pointer-events: all; opacity: 1;
}
.search-overlay__backdrop {
  position: absolute; inset: 0;
  background: rgba(61,43,31,.45);
  backdrop-filter: blur(3px);
}
.search-overlay__panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 680px;
  margin-top: 0;
  background: var(--cream);
  padding: 40px 32px 32px;
  box-shadow: 0 8px 48px rgba(61,43,31,.18);
  transform: translateY(-16px);
  transition: transform .25s ease;
}
.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
}
.search-overlay__inner {
  display: flex; align-items: center; gap: 16px;
}
.search-overlay__form { flex: 1; }
.search-overlay__input-wrap {
  display: flex; align-items: center;
  border-bottom: 1.5px solid var(--brown-pale);
  gap: 10px; padding-bottom: 8px;
  transition: border-color .2s;
}
.search-overlay__input-wrap:focus-within {
  border-color: var(--brown);
}
.search-overlay__icon { color: var(--text-light); flex-shrink: 0; }
.search-overlay__input {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--sans); font-size: 16px;
  color: var(--text-dark); font-weight: 300;
}
.search-overlay__input::placeholder { color: var(--text-muted); }
.search-overlay__clear {
  display: none; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--text-light); padding: 2px;
  transition: color .2s;
}
.search-overlay__clear:hover { color: var(--text-dark); }
.search-overlay__submit {
  margin-top: 12px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brown); background: none; border: none;
  cursor: pointer; padding: 0;
  transition: color .2s;
}
.search-overlay__submit:hover { color: var(--brown-dark); }
.search-overlay__close {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-light); background: none; border: none;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  align-self: flex-start; margin-top: 4px;
  transition: color .2s;
}
.search-overlay__close:hover { color: var(--text-dark); }
.search-overlay__suggestions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--beige-light);
}
.search-overlay__hint {
  font-family: var(--sans); font-size: 13px;
  color: var(--text-light); margin: 0;
}
.search-overlay__hint a {
  color: var(--brown); text-decoration: none;
  transition: color .2s;
}
.search-overlay__hint a:hover { color: var(--brown-dark); }
.header__logo { text-align: center; flex: 0 0 auto; text-decoration: none; display: block; }
.header__logo-main {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--brown-dark); letter-spacing: .06em; line-height: 1; display: block;
}
.header__logo-sub {
  font-size: 10px; font-weight: 400; letter-spacing: .28em;
  text-transform: uppercase; color: var(--text-light); margin-top: 4px; display: block;
  text-align: center;
}
.header__logo-divider { opacity: .4; margin: 0 4px; }
.header__logo-service { opacity: .5; transition: opacity .3s; text-decoration: none; }
.header__logo-service:hover { opacity: 1; }
.header__cart { position: relative; display: inline-flex; align-items: center; }
.header__cart svg { display: block; }
.header__cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--brown); color: var(--white); font-size: 9px;
  font-weight: 600; width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.header__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; padding: 0 48px 14px; max-width: 1400px; margin: 0 auto;
}
.header__nav-link {
  font-size: 13px; font-weight: 400; letter-spacing: .04em;
  color: var(--text-medium); transition: color .3s; cursor: pointer;
  position: relative; padding-bottom: 2px; text-decoration: none;
}
.header__nav-link:hover,
.header__nav-link--active { color: var(--brown); }
.header__nav-link--active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--brown);
}
.header__nav-item { position: relative; }
.header__nav-item--has-dropdown .header__nav-link {
  display: inline-flex; align-items: center; gap: 4px;
}
.header__nav-arrow {
  transition: transform .3s;
}
.header__nav-item--has-dropdown:hover .header__nav-arrow {
  transform: rotate(180deg);
}
.header__nav-item--has-dropdown.is-open .header__nav-arrow {
  transform: rotate(180deg);
}
.header__dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 200px; background: var(--white); border: 1px solid rgba(44,33,24,.08);
  border-radius: 4px; padding: 10px 0; opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s; z-index: 100;
  box-shadow: 0 8px 24px rgba(44,33,24,.1); margin-top: 10px;
}
.header__nav-item--has-dropdown:hover .header__dropdown {
  opacity: 1; visibility: visible;
}
.header__dropdown-link {
  display: block; padding: 8px 24px; font-size: 13px; font-weight: 400;
  color: var(--text-medium); text-decoration: none; letter-spacing: .02em;
  transition: background .2s, color .2s; white-space: nowrap;
}
.header__dropdown-link:hover {
  background: rgba(44,33,24,.04); color: var(--brown);
}

/* ── HAMBURGER BUTTON (mobile only) ── */
.header__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--text-dark); padding: 4px; line-height: 0;
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none; visibility: hidden;
}
.mobile-drawer.is-open { pointer-events: auto; visibility: visible; }
.mobile-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(44,33,24,.5); opacity: 0;
  transition: opacity .3s ease;
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 320px; max-width: 85vw;
  background: var(--cream); overflow-y: auto;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border-light);
}
.mobile-drawer__title {
  font-family: var(--serif); font-size: 18px; color: var(--text-dark);
}
.mobile-drawer__close {
  background: none; border: none; cursor: pointer;
  color: var(--text-light); padding: 4px; line-height: 0;
}
.mobile-drawer__close:hover { color: var(--text-dark); }
.mobile-drawer__search { padding: 16px 24px; border-bottom: 1px solid var(--border-light); }
.mobile-drawer__search-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px;
  background: var(--white);
}
.mobile-drawer__search-wrap svg { flex-shrink: 0; color: var(--text-muted); }
.mobile-drawer__search-input {
  flex: 1; border: none; outline: none; font-family: var(--sans);
  font-size: 14px; color: var(--text-dark); background: transparent;
}
.mobile-drawer__search-input::placeholder { color: var(--text-muted); }
.mobile-drawer__nav { flex: 1; padding: 8px 0; }
.mobile-drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 24px;
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  color: var(--text-dark); text-decoration: none;
  background: none; border: none; cursor: pointer; text-align: left;
}
.mobile-drawer__link:hover { background: rgba(44,33,24,.03); }
.mobile-drawer__arrow {
  transition: transform .2s ease; color: var(--text-muted);
}
.mobile-drawer__item--parent.is-open .mobile-drawer__arrow {
  transform: rotate(180deg);
}
.mobile-drawer__children {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  background: rgba(44,33,24,.02);
}
.mobile-drawer__item--parent.is-open .mobile-drawer__children {
  max-height: 600px;
}
.mobile-drawer__child {
  display: block; padding: 10px 24px 10px 40px;
  font-family: var(--sans); font-size: 14px;
  color: var(--text-medium); text-decoration: none;
}
.mobile-drawer__child:hover { color: var(--brown); background: rgba(44,33,24,.03); }
.mobile-drawer__utilities {
  border-top: 1px solid var(--border-light); padding: 16px 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-drawer__util {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; font-size: 13px; color: var(--text-light);
  text-decoration: none; font-family: var(--sans);
}
.mobile-drawer__util:hover { color: var(--brown); }
.mobile-drawer__util svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════ */
/* HERO BANNER                                                       */
/* ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 70vh; min-height: 500px; max-height: 720px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero__bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.03); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,43,31,.45) 0%, rgba(61,43,31,.2) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 640px; padding: 0 24px;
}
.hero__tagline {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--beige); margin-bottom: 16px;
}
.hero__title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.hero__description {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.7; margin-bottom: 28px;
}
.hero__buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* TRUST BAR                                                         */
/* ═══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--beige-light); border-bottom: 1px solid var(--border-light);
  padding: 20px 48px;
}
.trust-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.trust-bar__item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-bar__icon { font-size: 20px; line-height: 1; }
.trust-bar__label {
  font-size: 11px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-medium);
}
.trust-bar__description { font-size: 12px; color: var(--text-light); font-weight: 300; }

/* ═══════════════════════════════════════════════════════════════════ */
/* COLLECTION CARDS                                                  */
/* ═══════════════════════════════════════════════════════════════════ */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.collection-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; border-radius: 4px; display: block; text-decoration: none;
}
.collection-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.collection-card:hover .collection-card__img { transform: scale(1.06); }
.collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,33,24,.55) 0%, rgba(44,33,24,.05) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
}
.collection-card__title {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--white); margin-bottom: 2px;
}
.collection-card__count {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,.65); letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* PRODUCT CARDS                                                     */
/* ═══════════════════════════════════════════════════════════════════ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border-radius: 4px; overflow: hidden;
  transition: box-shadow .3s, transform .3s; border: 1px solid var(--border-light);
  cursor: pointer; text-decoration: none; display: block;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(60,43,31,.08); transform: translateY(-3px);
}
.product-card__img {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--beige-pale); display: block; text-decoration: none;
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brown); color: var(--white); font-size: 10px;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px; z-index: 2;
}
.product-card__badge--sale { background: var(--error); }
.product-card__info { padding: 16px; }
.product-card__vendor {
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.product-card__title {
  font-family: var(--serif); font-size: 16px; font-weight: 400;
  color: var(--text-dark); margin-bottom: 4px; line-height: 1.3;
  text-decoration: none; display: block;
}
.product-card__spec {
  font-size: 12px; color: var(--text-light); margin-bottom: 8px;
}
.product-card__price { font-size: 14px; font-weight: 500; color: var(--brown); }
.product-card__compare {
  font-size: 12px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px;
}
.product-card__unit { font-size: 11px; color: var(--text-light); font-weight: 300; }

/* ═══════════════════════════════════════════════════════════════════ */
/* PARALLAX BREAKS                                                   */
/* ═══════════════════════════════════════════════════════════════════ */
.parallax-break {
  position: relative; height: 45vh; min-height: 320px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.parallax-break--slim { height: 30vh; min-height: 240px; }
.parallax-break__bg {
  position: absolute; inset: -20%; background-size: cover;
  background-position: center; background-attachment: fixed;
}
.parallax-break__bg--tiled {
  inset: -60%; background-size: auto 50%; background-repeat: repeat;
  background-attachment: fixed; transform: rotate(-90deg);
  background-position: center;
}
.parallax-break__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,43,31,.25) 0%, rgba(61,43,31,.45) 100%);
}
.parallax-break__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; padding: 0 48px; width: 100%;
}
.parallax-break__quote {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 34px);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.4; margin-bottom: 12px;
}
.parallax-break__caption {
  font-size: 12px; font-weight: 400; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.parallax-break__logo {
  max-width: 360px; width: 100%; height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.2));
}

/* ═══════════════════════════════════════════════════════════════════ */
/* SPLIT BANNER                                                      */
/* ═══════════════════════════════════════════════════════════════════ */
.split-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.split-banner--dark { background: var(--brown-dark); }
.split-banner--reversed { direction: rtl; }
.split-banner--reversed > * { direction: ltr; }
.split-banner__img { overflow: hidden; }
.split-banner__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease;
}
.split-banner:hover .split-banner__img img { transform: scale(1.03); }
.split-banner__content {
  display: flex; flex-direction: column; justify-content: center; padding: 60px 64px;
}
.split-banner__content .section__header { text-align: left; margin-bottom: 0; }
.split-banner__content .section__description { text-align: left; margin-left: 0; max-width: none; margin-bottom: 24px; }
.split-banner--dark .section__tagline { color: var(--brown-pale); }
.split-banner--dark .section__title { color: var(--beige); }
.split-banner--dark .section__description { color: rgba(243,237,227,.6); }
.split-banner--dark .split-banner__feature { color: rgba(243,237,227,.7); }
.split-banner--dark .split-banner__feature svg { stroke: var(--brown-pale); }
.split-banner--dark .section__link { color: var(--brown-pale); }
.split-banner__feature {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-size: 14px; color: var(--text-light);
}
.split-banner__feature svg { flex-shrink: 0; stroke: var(--brown-light); }

/* ═══════════════════════════════════════════════════════════════════ */
/* TICKER / MARQUEE                                                  */
/* ═══════════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--beige-light);
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
  padding: 24px 0; overflow: hidden;
}
.ticker__track {
  display: flex; gap: 60px;
  animation: marquee 40s linear infinite; white-space: nowrap;
}
.ticker__item {
  font-family: var(--serif); font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300; font-style: italic; color: var(--brown-light); opacity: .4;
}
.ticker__item::after { content: '·'; margin-left: 60px; color: var(--beige-dark); }

/* ═══════════════════════════════════════════════════════════════════ */
/* CONCIERGE STRIP                                                   */
/* ═══════════════════════════════════════════════════════════════════ */
.concierge {
  background: #2A3142;
  padding: 48px 48px;
}
.concierge__inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.concierge__icon {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
}
.concierge__icon svg { width: 26px; height: 26px; }
.concierge__text { flex: 1; }
.concierge__headline {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.concierge__description {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.6;
}
.concierge__description a {
  color: var(--brown-pale); font-weight: 400;
  border-bottom: 1px solid rgba(196,168,124,.3); transition: border-color .3s;
}
.concierge__description a:hover { border-color: var(--brown-pale); }
.concierge__cta { flex-shrink: 0; }
.concierge__cta a {
  font-size: 13px; font-weight: 500; letter-spacing: .06em; color: #2A3142;
  background: var(--brown-pale); padding: 12px 28px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px; transition: gap .3s, background .3s;
  white-space: nowrap; text-decoration: none; text-transform: uppercase;
}
.concierge__cta a:hover { gap: 10px; background: var(--white); }

/* ═══════════════════════════════════════════════════════════════════ */
/* BLOG CARDS                                                        */
/* ═══════════════════════════════════════════════════════════════════ */
/* Blog Hero */
.blog-hero {
  background: var(--brown-dark); padding: 48px 0 44px;
}
.blog-hero__tagline {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brown-pale); margin-bottom: 12px;
}
.blog-hero__title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 400;
  color: var(--white); letter-spacing: .02em; margin: 0 0 10px;
}
.blog-hero__desc {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.55);
  max-width: 560px; line-height: 1.7; margin: 0;
}

/* Blog Filter Bar */
.blog-filter-bar {
  background: var(--white); border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.blog-filter-bar__inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 0;
  display: flex; align-items: center; gap: 20px;
}
.blog-filter-bar__search { position: relative; flex: 0 0 260px; }
.blog-filter-bar__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.blog-filter-bar__input {
  width: 100%; padding: 10px 16px 10px 42px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; font-family: var(--sans); color: var(--text-dark);
  background: var(--beige-light); outline: none;
  transition: border-color .3s, background .3s;
}
.blog-filter-bar__input:focus { border-color: var(--brown-light); background: var(--white); }
.blog-filter-bar__input::placeholder { color: var(--text-muted); }
.blog-filter-bar__tags {
  display: flex; gap: 6px; flex-wrap: wrap; flex: 1;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.blog-filter-bar__tag {
  padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border);
  background: transparent; font-size: 12px; font-weight: 400;
  letter-spacing: .03em; color: var(--text-medium);
  cursor: pointer; transition: all .25s; white-space: nowrap;
  font-family: var(--sans); text-decoration: none;
}
.blog-filter-bar__tag:hover { border-color: var(--brown-light); color: var(--brown); }
.blog-filter-bar__tag--active {
  background: var(--brown-dark); border-color: var(--brown-dark); color: var(--white);
}

/* Blog Featured Post */
.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.blog-featured__img {
  aspect-ratio: 16/10; overflow: hidden; border-radius: 6px; display: block;
}
.blog-featured__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.blog-featured__img:hover img { transform: scale(1.04); }
.blog-featured__content {}
.blog-featured__tag {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown-light); margin-bottom: 12px;
}
.blog-featured__title {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); font-weight: 400;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 12px;
}
.blog-featured__title a { color: inherit; text-decoration: none; }
.blog-featured__excerpt {
  font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-light);
  margin-bottom: 16px;
}
.blog-featured__meta {
  font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; margin-bottom: 20px;
}
.blog-featured__read { color: var(--brown); font-weight: 500; }
.blog-featured__link {
  font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--brown);
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  transition: gap .3s;
}
.blog-featured__link:hover { gap: 10px; }

/* Blog Empty State */
.blog-empty {
  flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 24px; text-align: center; color: var(--text-muted); gap: 16px;
}
.blog-empty p { font-size: 15px; margin: 0; }

/* Blog Newsletter */
.blog-newsletter {
  background: var(--beige-light); border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light); padding: 48px 0;
}
.blog-newsletter__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  max-width: 800px; margin: 0 auto;
}
.blog-newsletter__title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--brown-dark); margin: 0 0 4px;
}
.blog-newsletter__desc {
  font-size: 13px; font-weight: 300; color: var(--text-light); margin: 0;
}
.blog-newsletter__form { flex: 0 0 360px; }
.blog-newsletter__input-wrap {
  display: flex; border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; background: var(--white);
}
.blog-newsletter__input {
  flex: 1; border: none; padding: 12px 16px; font-size: 13px;
  font-family: var(--sans); color: var(--text-medium); outline: none; background: transparent;
}
.blog-newsletter__input::placeholder { color: var(--text-muted); }
.blog-newsletter__btn {
  background: var(--brown-dark); color: var(--white); border: none;
  padding: 12px 24px; font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; transition: background .3s;
  font-family: var(--sans); white-space: nowrap;
}
.blog-newsletter__btn:hover { background: var(--brown); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 8px; overflow: hidden; transition: box-shadow .3s, transform .3s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: 0 4px 16px rgba(60,43,31,.08); transform: translateY(-3px); }
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; display: block; }
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brown-light); margin-bottom: 10px;
}
.blog-card__title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 10px;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__excerpt {
  font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--text-light);
  margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card__meta {
  font-size: 11px; color: var(--text-muted);
  display: flex; align-items: center; gap: 12px;
}
.blog-card__date {}
.blog-card__read { color: var(--brown); font-weight: 500; }
.blog-swipe-hint {
  display: none; align-items: center; justify-content: center; gap: 6px;
  font-size: 11px; color: var(--text-muted); letter-spacing: .04em;
  margin-top: 12px; animation: swipeHintPulse 2s ease-in-out infinite;
}
@keyframes swipeHintPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* NEWSLETTER                                                        */
/* ═══════════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--brown-dark); text-align: center; padding: 72px 48px;
}
.newsletter__form {
  display: flex; max-width: 480px; margin: 0 auto; gap: 0;
}
.newsletter__input {
  flex: 1; padding: 14px 20px; font-family: var(--sans); font-size: 13px;
  border: 1px solid rgba(196,168,124,.2); background: rgba(255,255,255,.06);
  color: var(--beige); outline: none; border-radius: 4px 0 0 4px;
}
.newsletter__input::placeholder { color: rgba(196,168,124,.35); }
.newsletter__button {
  padding: 14px 28px; background: var(--brown-pale); color: var(--brown-dark);
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 0 4px 4px 0; transition: background .3s; cursor: pointer;
  font-family: var(--sans);
}
.newsletter__button:hover { background: var(--beige); }

/* ═══════════════════════════════════════════════════════════════════ */
/* INSTAGRAM GRID                                                    */
/* ═══════════════════════════════════════════════════════════════════ */
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.instagram-grid__item {
  aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--beige);
}
.instagram-grid__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease; filter: saturate(.9);
}
.instagram-grid__item:hover img { transform: scale(1.08); filter: saturate(1.1); }

/* ═══════════════════════════════════════════════════════════════════ */
/* FOOTER                                                            */
/* ═══════════════════════════════════════════════════════════════════ */
.footer { background: var(--brown-dark); color: rgba(255,255,255,.7); position: relative; }

/* Newsletter Bar */
.footer__newsletter-bar {
  background: var(--beige-light); border-top: 1px solid var(--border);
  padding: 48px 48px;
}
.footer__newsletter-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.footer__newsletter-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--brown-dark); margin: 0 0 4px;
}
.footer__newsletter-desc {
  font-size: 13px; font-weight: 300; color: var(--text-light); margin: 0;
}
.footer__newsletter-form { flex: 0 0 420px; }
.footer__newsletter-input-wrap {
  display: flex; gap: 0; border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; background: var(--white);
}
.footer__newsletter-input {
  flex: 1; border: none; padding: 12px 16px; font-size: 13px;
  font-family: var(--sans); color: var(--text-medium); outline: none; background: transparent;
}
.footer__newsletter-input::placeholder { color: var(--text-muted); }
.footer__newsletter-btn {
  background: var(--brown-dark); color: var(--white); border: none;
  padding: 12px 24px; font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; transition: background .3s;
  font-family: var(--sans); white-space: nowrap;
}
.footer__newsletter-btn:hover { background: var(--brown); }
.footer__newsletter-disclaimer {
  font-size: 11px; color: var(--text-muted); margin: 8px 0 0; font-weight: 300;
}

/* Main Footer Grid */
.footer__main {
  max-width: 1300px; margin: 0 auto; padding: 56px 48px 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr; gap: 32px;
}
.footer__brand {}
.footer__logo {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--white); letter-spacing: .04em; margin-bottom: 2px;
}
.footer__byline {
  font-size: 10px; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer__description {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.55); max-width: 280px; margin-bottom: 20px;
}
.footer__description a {
  color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.2);
  text-decoration: none; transition: border-color .3s;
}
.footer__description a:hover { border-color: rgba(255,255,255,.6); }

/* Social Icons */
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5);
  transition: border-color .3s, color .3s, background .3s;
}
.footer__social-link:hover {
  border-color: rgba(255,255,255,.4); color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Footer Columns */
.footer__column {}
.footer__heading {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55);
  transition: color .3s; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.footer__links a:hover { color: var(--white); }
.footer__links span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); }
.footer__address-link {
  display: inline-flex; align-items: flex-start; gap: 6px;
}
.footer__address-wrap {
  display: inline-flex; align-items: flex-start; gap: 6px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55);
}
.footer__address {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.7;
  white-space: pre-line;
}
.footer__hours {
  display: inline-flex; align-items: flex-start; gap: 6px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.55);
  white-space: pre-line;
}
.footer__contact-icon { opacity: .5; flex-shrink: 0; margin-top: 2px; }

/* Trust Badges */
.footer__trust {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__trust-inner {
  max-width: 1300px; margin: 0 auto; padding: 28px 48px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.footer__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 400; letter-spacing: .04em;
  color: rgba(255,255,255,.5);
}
.footer__trust-item svg { opacity: .45; }

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}
.footer__bottom-inner {
  max-width: 1300px; margin: 0 auto; padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.35); gap: 24px; flex-wrap: wrap;
}
.footer__copyright { white-space: nowrap; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a {
  color: rgba(255,255,255,.35); text-decoration: none; transition: color .3s;
  font-size: 11px;
}
.footer__legal a:hover { color: rgba(255,255,255,.7); }
.footer__payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer__payments svg,
.footer__payments img { height: 22px; width: auto; opacity: .4; }

/* Back to Top */
.footer__back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brown-dark); color: var(--white); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s, transform .3s, opacity .3s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); opacity: .85;
}
.footer__back-to-top:hover {
  background: var(--brown); transform: translateY(-2px); opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════════ */
/* PRODUCT PAGE                                                      */
/* ═══════════════════════════════════════════════════════════════════ */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-page__gallery {}
.product-page__main-image { width: 100%; border-radius: 8px; border: 1px solid var(--border-light); transition: opacity .25s ease; }
.product-page__thumbs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 12px;
}
.product-page__thumb {
  aspect-ratio: 1; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--border-light); cursor: pointer; opacity: .6; transition: opacity .3s;
}
.product-page__thumb--active,
.product-page__thumb:hover { opacity: 1; border-color: var(--brown); }
.product-page__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-page__info {}
.product-page__vendor {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.product-page__title {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 36px);
  font-weight: 300; color: var(--brown-dark); margin-bottom: 12px; line-height: 1.2;
}
.product-page__price {
  font-size: 20px; font-weight: 500; color: var(--brown); margin-bottom: 24px;
}
.product-page__description {
  font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-medium);
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-light);
}

/* Installation Quote CTA */
.product-page__quote-btn { margin-top: 10px; margin-bottom: 16px; }

/* Showroom / Sample CTA */
.product-page__showroom {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: var(--text-light); line-height: 1.5;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
}
.product-page__showroom svg { flex-shrink: 0; margin-top: 1px; color: var(--brown-light); }
.product-page__showroom a { color: var(--brown); text-decoration: underline; text-underline-offset: 2px; }

/* Trust Badges */
.product-page__trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 16px 0;
}
.product-page__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: var(--text-medium);
}
.product-page__trust-item svg { color: var(--brown-light); flex-shrink: 0; }

/* ── PRODUCT ACCORDION ── */
.product-accordion {
  max-width: 900px; margin: 0 auto; padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.product-accordion__item {
  border-bottom: 1px solid var(--border-light);
}
.product-accordion__trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 0; cursor: pointer;
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--brown-dark); list-style: none;
}
.product-accordion__trigger::-webkit-details-marker { display: none; }
.product-accordion__trigger::marker { display: none; content: ''; }
.product-accordion__trigger svg {
  transition: transform .3s; color: var(--text-light);
}
details[open] > .product-accordion__trigger svg {
  transform: rotate(180deg);
}
.product-accordion__content {
  padding: 0 0 20px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--text-medium);
}
.product-accordion__content a { color: var(--brown); text-decoration: underline; text-underline-offset: 2px; }

/* Prop 65 — discreet but matching accordion style */
.product-accordion__item--prop65 .product-accordion__trigger {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--brown-dark);
}
.product-accordion__prop65-text {
  font-size: 12px; color: var(--text-muted);
}
.product-accordion__prop65-text a {
  color: var(--text-muted);
}

/* Specs Table */
.product-specs {
  width: 100%; border-collapse: collapse;
  font-family: var(--sans); font-size: 14px;
}
.product-specs tr { border-bottom: 1px solid var(--border-light); }
.product-specs tr:last-child { border-bottom: none; }
.product-specs td {
  padding: 10px 0; vertical-align: top;
}
.product-specs td:first-child {
  font-weight: 500; color: var(--text-dark); width: 40%;
}
.product-specs td:last-child {
  font-weight: 300; color: var(--text-medium);
}

/* ── COVERAGE CALCULATOR ── */
.coverage-calc {
  background: var(--beige-pale); border-radius: 6px;
  margin-bottom: 20px; overflow: hidden;
}
.coverage-calc__header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; cursor: pointer;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--brown-dark);
}
.coverage-calc__header:hover { color: var(--brown); }
.coverage-calc__chevron { margin-left: auto; transition: transform .3s; }
.coverage-calc--open .coverage-calc__chevron { transform: rotate(180deg); }
.coverage-calc__body { padding: 0 16px 16px; }
.coverage-calc__inputs {
  display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap;
}
.coverage-calc__field label {
  display: block; font-family: var(--sans); font-size: 11px;
  font-weight: 500; color: var(--text-light); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .06em;
}
.coverage-calc__input-wrap {
  display: flex; align-items: center; border: 1px solid var(--border);
  border-radius: 4px; background: var(--white); overflow: hidden;
}
.coverage-calc__input-wrap input {
  width: 70px; padding: 8px 10px; border: none; outline: none;
  font-family: var(--sans); font-size: 14px; color: var(--text-dark);
  -moz-appearance: textfield;
}
.coverage-calc__input-wrap input::-webkit-inner-spin-button,
.coverage-calc__input-wrap input::-webkit-outer-spin-button { -webkit-appearance: none; }
.coverage-calc__input-wrap span {
  font-family: var(--sans); font-size: 12px; color: var(--text-muted);
  padding-right: 10px;
}
.coverage-calc__x {
  font-size: 18px; color: var(--text-muted); padding-bottom: 4px;
}
.coverage-calc__go {
  padding: 9px 18px; background: var(--brown); color: var(--white);
  border: none; border-radius: 4px; font-family: var(--sans);
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer; transition: background .2s;
}
.coverage-calc__go:hover { background: var(--brown-dark); }
.coverage-calc__result { margin-top: 14px; }
.coverage-calc__result-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 13px; color: var(--text-medium);
  padding: 6px 0;
}
.coverage-calc__result-row strong {
  font-weight: 500; color: var(--text-dark);
}
.coverage-calc__result-total {
  border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px;
  font-weight: 500;
}
.coverage-calc__result-total strong { font-size: 15px; color: var(--brown-dark); }
.coverage-calc__apply {
  margin-top: 12px; width: 100%; padding: 10px;
  background: transparent; border: 1px solid var(--brown);
  color: var(--brown); border-radius: 4px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.coverage-calc__apply:hover { background: var(--brown); color: var(--white); }

/* Product grid 4-col */
.product-grid--4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 768px) {
  .product-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .product-page__trust { grid-template-columns: 1fr; }
}
.product-page__variant-select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 14px; color: var(--text-dark);
  background: var(--white); margin-bottom: 16px; font-family: var(--sans);
}

/* ── QUANTITY SELECTOR ── */
.quantity-selector {
  display: flex; align-items: center; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; width: fit-content; margin-bottom: 20px;
}
.quantity-selector--small { transform: scale(.85); transform-origin: left; }
.quantity-selector__btn {
  width: 44px; height: 44px; font-size: 18px; color: var(--text-medium);
  background: var(--beige-pale); transition: background .2s; cursor: pointer;
  border: none; font-family: var(--sans); display: flex; align-items: center;
  justify-content: center;
}
.quantity-selector__btn:hover { background: var(--beige); }
.quantity-selector__input {
  width: 60px; height: 44px; text-align: center; border: none;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  font-size: 14px; color: var(--text-dark); font-family: var(--sans); outline: none;
  -moz-appearance: textfield;
}
.quantity-selector__input::-webkit-inner-spin-button,
.quantity-selector__input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.quantity-selector__label {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 8px; display: block;
  text-transform: uppercase; letter-spacing: .06em;
}
.quantity-selector__unit {
  font-weight: 300; text-transform: none; letter-spacing: 0;
  color: var(--text-light);
}
.quantity-selector__suffix {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--text-light); padding: 0 14px;
  display: flex; align-items: center;
  background: var(--beige-pale); height: 44px;
  border-left: 1px solid var(--border);
}
.quantity-selector__hint {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: var(--text-muted); margin-top: -12px; margin-bottom: 20px;
  line-height: 1.5;
}
.product-page__price-unit {
  font-size: 14px; font-weight: 300; color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* CATALOG PAGE                                                      */
/* ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.catalog-hero {
  background: var(--brown-dark); padding: 48px 0 44px;
}
.catalog-hero .breadcrumb { margin-bottom: 20px; }
.catalog-hero .breadcrumb a,
.catalog-hero .breadcrumb span { color: rgba(255,255,255,.4); }
.catalog-hero .breadcrumb a:hover { color: rgba(255,255,255,.7); }
.catalog-hero__title {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 400;
  color: var(--white); letter-spacing: .02em; margin: 0 0 10px;
}
.catalog-hero__desc {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.55);
  max-width: 560px; line-height: 1.7; margin: 0;
}

/* Search Bar */
.catalog-search {
  background: var(--white); border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.catalog-search__inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 0;
  display: flex; align-items: center; gap: 20px;
}
.catalog-search__input-wrap {
  position: relative; flex: 0 0 300px;
}
.catalog-search__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); pointer-events: none;
}
.catalog-search__input {
  width: 100%; padding: 10px 16px 10px 42px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 13px; font-family: var(--sans); color: var(--text-dark);
  background: var(--beige-light); outline: none;
  transition: border-color .3s, background .3s;
}
.catalog-search__input:focus {
  border-color: var(--brown-light); background: var(--white);
}
.catalog-search__input::placeholder { color: var(--text-muted); }
.catalog-search__categories {
  display: flex; gap: 6px; flex-wrap: wrap; flex: 1;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.catalog-search__cat {
  padding: 7px 16px; border-radius: 20px; border: 1px solid var(--border);
  background: transparent; font-size: 12px; font-weight: 400;
  letter-spacing: .03em; color: var(--text-medium);
  cursor: pointer; transition: all .25s; white-space: nowrap;
  font-family: var(--sans);
}
.catalog-search__cat:hover {
  border-color: var(--brown-light); color: var(--brown);
}
.catalog-search__cat--active {
  background: var(--brown-dark); border-color: var(--brown-dark);
  color: var(--white);
}

/* Collection Cards Grid */
.catalog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.catalog-card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform .4s cubic-bezier(.19,1,.22,1), box-shadow .4s;
  text-decoration: none; display: block;
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,33,24,.1);
}
.catalog-card__image-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.catalog-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.19,1,.22,1);
}
.catalog-card:hover .catalog-card__img { transform: scale(1.05); }
.catalog-card__placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; background: var(--beige-light); color: var(--text-muted);
}
.catalog-card__badge-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(61,43,31,.75); backdrop-filter: blur(8px);
  color: var(--white); padding: 5px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 400; letter-spacing: .04em;
}
.catalog-card__info {
  padding: 22px 24px 24px;
}
.catalog-card__title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--text-dark); margin: 0 0 6px; letter-spacing: .01em;
}
.catalog-card__desc {
  font-size: 13px; font-weight: 300; color: var(--text-light);
  line-height: 1.6; margin: 0 0 14px;
}
.catalog-card__cta {
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  color: var(--brown); display: inline-flex; align-items: center; gap: 6px;
  transition: gap .3s;
}
.catalog-card:hover .catalog-card__cta { gap: 10px; }

/* Empty State */
.catalog-empty {
  flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 24px; text-align: center; color: var(--text-muted);
  gap: 16px;
}
.catalog-empty p { font-size: 15px; margin: 0; }

/* Value Props */
.catalog-values {
  background: var(--beige-light); border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light); padding: 40px 0;
}
.catalog-values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1200px; margin: 0 auto;
}
.catalog-values__item {
  display: flex; align-items: flex-start; gap: 14px;
}
.catalog-values__item svg {
  flex-shrink: 0; color: var(--brown-light); margin-top: 2px;
}
.catalog-values__text { display: flex; flex-direction: column; gap: 3px; }
.catalog-values__text strong {
  font-size: 13px; font-weight: 500; color: var(--text-dark);
}
.catalog-values__text span {
  font-size: 12px; font-weight: 300; color: var(--text-light); line-height: 1.5;
}

/* CTA Section */
.catalog-cta { padding: 64px 0; }
.catalog-cta__inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.catalog-cta__title {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 30px);
  font-weight: 400; color: var(--text-dark); margin: 0 0 12px;
}
.catalog-cta__desc {
  font-size: 14px; font-weight: 300; color: var(--text-light);
  line-height: 1.7; margin: 0 0 28px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.catalog-cta__actions { display: flex; gap: 12px; justify-content: center; }
.catalog-cta__btn {
  padding: 13px 32px; border-radius: 4px; font-size: 12px;
  font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; transition: all .3s; font-family: var(--sans);
}
.catalog-cta__btn--primary {
  background: var(--brown-dark); color: var(--white);
}
.catalog-cta__btn--primary:hover { background: var(--brown); }
.catalog-cta__btn--secondary {
  background: transparent; color: var(--brown);
  border: 1px solid var(--brown-light);
}
.catalog-cta__btn--secondary:hover {
  background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* COLLECTION PAGE                                                   */
/* ═══════════════════════════════════════════════════════════════════ */
.collection-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.collection-toolbar__count { font-size: 13px; color: var(--text-light); }
.collection-toolbar__sort select {
  border: 1px solid var(--border); background: var(--white);
  padding: 8px 16px; font-size: 13px; color: var(--text-medium);
  border-radius: 4px; font-family: var(--sans);
}
.pagination { text-align: center; margin-top: 40px; font-size: 14px; }
.pagination a, .pagination span {
  display: inline-block; padding: 8px 14px; margin: 0 2px;
  border: 1px solid var(--border-light); border-radius: 4px;
  color: var(--text-medium); transition: all .3s; text-decoration: none;
}
.pagination a:hover { border-color: var(--brown); color: var(--brown); }
.pagination .current {
  background: var(--brown); color: var(--white); border-color: var(--brown);
}
.collection-empty {
  text-align: center; padding: 80px 24px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; color: var(--text-muted);
}
.collection-empty h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text-dark); margin: 8px 0 0;
}
.collection-empty p {
  font-size: 14px; font-weight: 300; color: var(--text-light); max-width: 400px; line-height: 1.6; margin: 0;
}
.collection-empty__btn {
  margin-top: 12px; display: inline-block; padding: 12px 28px; border-radius: 4px;
  background: var(--brown-dark); color: var(--white); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  transition: background .3s;
}
.collection-empty__btn:hover { background: var(--brown); }
  background: var(--brown); color: var(--white); border-color: var(--brown);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* CART PAGE                                                         */
/* ═══════════════════════════════════════════════════════════════════ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  text-align: left; padding: 12px 0; border-bottom: 1px solid var(--border);
}
.cart-table td {
  padding: 20px 0; border-bottom: 1px solid var(--border-light); vertical-align: middle;
}
.cart-item { display: flex; align-items: center; gap: 16px; }
.cart-item__img {
  width: 80px; height: 80px; object-fit: cover; border-radius: 4px;
  border: 1px solid var(--border-light); flex-shrink: 0;
}
.cart-item__title {
  font-family: var(--serif); font-size: 15px; color: var(--text-dark);
  text-decoration: none; display: block;
}
.cart-item__variant { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cart-item__remove {
  font-size: 11px; color: var(--error); cursor: pointer; margin-top: 4px;
  text-decoration: none; display: inline-block;
}
.cart-item__remove:hover { text-decoration: underline; }
.cart-summary {
  max-width: 400px; margin-left: auto; margin-top: 32px;
  padding: 32px; background: var(--beige-pale); border-radius: 8px;
}
.cart-summary__row {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 14px; color: var(--text-medium);
}
.cart-summary__total {
  font-size: 18px; font-weight: 500; color: var(--brown-dark);
  border-top: 1px solid var(--border); padding-top: 16px; margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* ARTICLE / RTE                                                     */
/* ═══════════════════════════════════════════════════════════════════ */
.article-body, .rte {
  font-family: var(--sans); font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--text-medium);
}
.article-body p, .rte p { margin-bottom: 20px; }
.article-body strong, .rte strong { font-weight: 500; color: var(--text-dark); }
.article-body h2, .rte h2 {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--brown-dark); margin: 32px 0 16px;
}
.article-body h3, .rte h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--brown-dark); margin: 24px 0 12px;
}
.article-body a, .rte a {
  color: var(--brown); border-bottom: 1px solid rgba(160,132,92,.3);
}
.article-body .btn, .rte .btn {
  border-bottom: none;
}
.article-body .btn--primary, .rte .btn--primary {
  color: var(--white);
}
.article-body .btn--secondary, .rte .btn--secondary {
  color: var(--brown);
}
.article-body ul, .rte ul, .article-body ol, .rte ol {
  margin: 16px 0; padding-left: 24px;
}
.article-body li, .rte li { margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════════════ */
/* RESPONSIVE                                                        */
/* ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer__main { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; margin-bottom: 8px; }
  .footer__newsletter-inner { flex-direction: column; text-align: center; }
  .footer__newsletter-form { flex: 1; width: 100%; max-width: 420px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .catalog-values__grid { grid-template-columns: 1fr 1fr; }
  .catalog-search__inner { flex-direction: column; gap: 12px; }
  .catalog-search__input-wrap { flex: 1; width: 100%; }
  .blog-featured { grid-template-columns: 1fr; gap: 24px; }
  .blog-filter-bar__inner { flex-direction: column; gap: 12px; }
  .blog-filter-bar__search { flex: 1; width: 100%; }
  .blog-newsletter__inner { flex-direction: column; text-align: center; }
  .blog-newsletter__form { flex: 1; width: 100%; max-width: 360px; }
}

@media (max-width: 768px) {
  .page-width, .page-width--narrow { padding: 0 20px; }
  .header__top { padding: 18px 20px; }
  .header__side--left { display: none; }
  .header__side--right .header__link[href="/account"] { display: none; }
  .header__hamburger { display: block; }
  .header__nav { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card__img { aspect-ratio: 4/3; }
  .product-card__info { padding: 12px; }
  .product-card__title { font-size: 14px; }
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 8px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card {
    flex: 0 0 80%; scroll-snap-align: start; min-width: 0;
  }
  .blog-card__body { padding: 16px; }
  .blog-card__title { font-size: 17px; }
  .blog-card__excerpt { font-size: 12px; -webkit-line-clamp: 2; margin-bottom: 12px; }
  .blog-swipe-hint { display: flex; }
  .blog-hero { padding: 32px 0 28px; }
  .blog-featured { grid-template-columns: 1fr; gap: 20px; }
  .blog-featured__title { font-size: 22px; }
  .blog-filter-bar__tags { gap: 4px; }
  .blog-filter-bar__tag { padding: 6px 12px; font-size: 11px; }
  .blog-newsletter { padding: 32px 0; }
  .blog-newsletter__inner { flex-direction: column; text-align: center; gap: 20px; }
  .blog-newsletter__form { width: 100%; }
  .split-banner { grid-template-columns: 1fr; }
  .split-banner--reversed { direction: ltr; }
  .split-banner__content { padding: 40px 24px; }
  .trust-bar { padding: 20px 20px; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer__main { grid-template-columns: 1fr 1fr; padding: 40px 20px; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; text-align: center; }
  .footer__brand .footer__description { max-width: 100%; }
  .footer__brand .footer__social { justify-content: center; }
  .footer__trust-inner { gap: 20px; padding: 24px 20px; }
  .footer__bottom-inner { flex-direction: column; gap: 14px; text-align: center; padding: 20px; }
  .footer__legal { justify-content: center; }
  .footer__payments { justify-content: center; }
  .footer__newsletter-bar { padding: 32px 20px; }
  .footer__back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .product-page { grid-template-columns: 1fr; gap: 24px; }
  .newsletter { padding: 60px 20px; }
  .newsletter__form { flex-direction: column; gap: 8px; }
  .newsletter__input, .newsletter__button { border-radius: 4px; }
  .concierge { padding: 36px 20px; }
  .concierge__inner { flex-direction: column; text-align: center; gap: 20px; }
  .concierge__cta a { justify-content: center; }
  .section { padding: 60px 0; }
  .hero { min-height: 420px; height: auto; padding: 60px 0; }
  .hero__title { font-size: clamp(28px, 7vw, 38px); }
  .hero__description { font-size: 14px; }
  .cart-table th:nth-child(2), .cart-table th:nth-child(3),
  .cart-table td:nth-child(2), .cart-table td:nth-child(3) { display: none; }
  .parallax-break__bg { background-attachment: scroll; }
  .parallax-break__bg--tiled { background-attachment: scroll; }
  .catalog-grid { grid-template-columns: 1fr; gap: 16px; }
  .catalog-hero { padding: 32px 0 28px; }
  .catalog-values__grid { grid-template-columns: 1fr; gap: 20px; }
  .catalog-cta { padding: 48px 0; }
  .catalog-cta__actions { flex-direction: column; align-items: center; }
  .catalog-cta__btn { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .catalog-search__categories { gap: 4px; }
  .catalog-search__cat { padding: 6px 12px; font-size: 11px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card__img { aspect-ratio: 3/4; }
  .product-card__info { padding: 10px; }
  .product-card__title { font-size: 13px; }
  .product-card__vendor { font-size: 9px; }
  .product-card__price { font-size: 13px; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-bar__item { gap: 4px; }
  .trust-bar__label { font-size: 10px; }
  .trust-bar__description { font-size: 11px; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .collection-card__title { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* IMAGE WITH TEXT                                                   */
/* ═══════════════════════════════════════════════════════════════════ */
.image-with-text {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.image-with-text--reversed { direction: rtl; }
.image-with-text--reversed > * { direction: ltr; }
.image-with-text__img { overflow: hidden; border-radius: 8px; }
.image-with-text__img img {
  width: 100%; height: auto; object-fit: cover;
  transition: transform .8s ease; border-radius: 8px;
}
.image-with-text:hover .image-with-text__img img { transform: scale(1.03); }
.image-with-text__content {}
.image-with-text__content .section__title { text-align: left; }
.image-with-text__content .section__description { text-align: left; margin-left: 0; }

/* ═══════════════════════════════════════════════════════════════════ */
/* FAQ / ACCORDION                                                   */
/* ═══════════════════════════════════════════════════════════════════ */
.faq-list {}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--text-dark); transition: color .3s;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::marker { display: none; content: ""; }
.faq-item__question span { flex: 1; padding-right: 16px; }
.faq-item__question svg {
  flex-shrink: 0; color: var(--text-muted);
  transition: transform .3s;
}
.faq-item[open] .faq-item__question svg { transform: rotate(180deg); }
.faq-item[open] .faq-item__question { color: var(--brown); }
.faq-item__answer {
  padding: 0 0 24px 0; font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--text-light); max-width: 640px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* CONTACT FORM                                                      */
/* ═══════════════════════════════════════════════════════════════════ */
.form-row { margin-bottom: 20px; }
.form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-medium); margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 4px; font-size: 14px; font-family: var(--sans);
  color: var(--text-dark); background: var(--white);
  transition: border-color .3s; outline: none;
}
.form-input:focus { border-color: var(--brown); }
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
select.form-input {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-success {
  display: flex; align-items: center; gap: 12px;
  padding: 20px; background: rgba(92,123,58,.08);
  border: 1px solid rgba(92,123,58,.2); border-radius: 8px;
  margin-bottom: 24px; color: var(--success); font-size: 14px;
}
.form-errors {
  padding: 20px; background: rgba(184,92,56,.08);
  border: 1px solid rgba(184,92,56,.2); border-radius: 8px;
  margin-bottom: 24px; color: var(--error); font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* VIDEO EMBED                                                       */
/* ═══════════════════════════════════════════════════════════════════ */
.video-wrapper { border-radius: 8px; overflow: hidden; }
.video-embed {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: var(--beige-pale);
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* RESPONSIVE — NEW SECTIONS                                         */
/* ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .image-with-text { grid-template-columns: 1fr; gap: 24px; }
  .image-with-text--reversed { direction: ltr; }
  .form-row--half { grid-template-columns: 1fr; }
  .faq-item__question { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* INSTALLATION QUOTE FORM                                           */
/* ═══════════════════════════════════════════════════════════════════ */
.quote-form-layout {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start;
}
.quote-form-layout__form { max-width: 640px; }
.quote-form__lafayette-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 8px 14px;
  background: var(--beige-pale); border-radius: 4px;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: var(--text-medium);
}
.quote-form__lafayette-badge svg { color: var(--brown-light); flex-shrink: 0; }
.quote-form__lafayette-badge a {
  color: var(--brown-dark); font-weight: 500;
  text-decoration: none;
}
.quote-form__lafayette-badge a:hover { text-decoration: underline; text-underline-offset: 2px; }
.quote-form__product-context {
  background: var(--beige-pale); border-left: 3px solid var(--brown-pale);
  padding: 14px 20px; border-radius: 4px; margin-bottom: 28px;
}
.quote-form__product-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: var(--text-light); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 4px;
}
.quote-form__product-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--brown-dark);
}
.form-hint {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: var(--text-muted); margin-top: 4px; display: block; line-height: 1.4;
}
.form-optional {
  font-weight: 300; color: var(--text-muted);
}
.quote-form__disclaimer {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  color: var(--text-dark); text-align: center; margin-top: 14px;
}
.quote-form__success-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--brown-dark); margin-bottom: 4px;
}

/* Trust sidebar */
.quote-trust-card {
  background: var(--beige-pale); border-radius: 8px;
  padding: 28px; margin-bottom: 20px;
}
.quote-trust-card--alt {
  background: var(--white); border: 1px solid var(--border-light);
}
.quote-trust-card--highlight {
  background: var(--white); border: 1px solid var(--brown-pale);
  border-left: 3px solid var(--brown-pale);
}
.quote-trust-card--highlight a {
  color: var(--brown); text-decoration: underline; text-underline-offset: 2px;
}
.quote-trust-card__title {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--brown-dark); margin-bottom: 20px;
}
.quote-trust-card__items { display: flex; flex-direction: column; gap: 18px; }
.quote-trust-card__item {
  display: flex; gap: 12px; align-items: flex-start;
}
.quote-trust-card__item svg {
  flex-shrink: 0; color: var(--success); margin-top: 2px;
}
.quote-trust-card__item strong {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--text-dark); display: block; margin-bottom: 2px;
}
.quote-trust-card__item p {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--text-medium); line-height: 1.5; margin: 0;
}
.quote-trust-card__desc {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--text-medium); line-height: 1.6; margin-bottom: 16px;
}
.quote-trust-card__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 18px; font-weight: 500;
  color: var(--brown-dark); text-decoration: none;
}
.quote-trust-card__phone:hover { color: var(--brown); }
.quote-trust-card__hours {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: var(--text-muted); margin-top: 8px;
}
@media (max-width: 768px) {
  .quote-form-layout { grid-template-columns: 1fr; gap: 40px; }
  .quote-form-layout__trust { order: -1; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* BRAND GRID                                                        */
/* ═══════════════════════════════════════════════════════════════════ */
.brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.brand-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 40px 24px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: 8px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  text-decoration: none; text-align: center; min-height: 160px;
}
.brand-card:hover {
  box-shadow: 0 4px 16px rgba(60,43,31,.08); transform: translateY(-3px);
  border-color: var(--brown-pale);
}
.brand-card__logo {
  max-width: 180px; max-height: 60px; object-fit: contain; opacity: .7;
  transition: opacity .3s; filter: grayscale(50%);
}
.brand-card:hover .brand-card__logo { opacity: 1; filter: grayscale(0); }
.brand-card__name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--brown-dark); letter-spacing: .02em;
}
.brand-card__subtitle {
  font-size: 11px; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* RESOURCE LIST                                                     */
/* ═══════════════════════════════════════════════════════════════════ */
.resource-list {}
.resource-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border-light);
  transition: padding-left .3s; text-decoration: none; color: inherit;
}
.resource-item:first-child { border-top: 1px solid var(--border-light); }
.resource-item:hover { padding-left: 8px; }
.resource-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--beige-light); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center; color: var(--brown-light);
}
.resource-item__content { flex: 1; }
.resource-item__title {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--text-dark); margin-bottom: 2px;
}
.resource-item__desc {
  font-size: 13px; font-weight: 300; color: var(--text-light);
}
.resource-item__arrow {
  flex-shrink: 0; color: var(--text-muted);
  transition: color .3s, transform .3s;
}
.resource-item:hover .resource-item__arrow { color: var(--brown); transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════ */
/* ICON CARDS                                                        */
/* ═══════════════════════════════════════════════════════════════════ */
.icon-cards {
  display: grid; gap: 24px;
}
.icon-cards--2col { grid-template-columns: repeat(2, 1fr); }
.icon-cards--3col { grid-template-columns: repeat(3, 1fr); }
.icon-cards--4col { grid-template-columns: repeat(4, 1fr); }
.icon-card {
  padding: 32px; background: var(--white);
  border: 1px solid var(--border-light); border-radius: 8px;
  transition: box-shadow .3s, transform .3s;
}
.icon-card:hover { box-shadow: 0 4px 16px rgba(60,43,31,.06); transform: translateY(-2px); }
.icon-card__icon { font-size: 28px; margin-bottom: 16px; line-height: 1; }
.icon-card__title {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  color: var(--brown-dark); margin-bottom: 8px;
}
.icon-card__desc {
  font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════ */
/* RESPONSIVE — NEW SECTIONS                                         */
/* ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-cards--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .brand-grid { grid-template-columns: 1fr; }
  .icon-cards--3col, .icon-cards--4col { grid-template-columns: 1fr; }
  .icon-cards--2col { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════ */
/* TRADE APPLICATION FORM                                             */
/* ═══════════════════════════════════════════════════════════════════ */
.trade-form { max-width: 660px; margin: 0 auto; }
.trade-form__section-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brown); margin: 36px 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border-light);
}
.trade-form__section-label:first-child { margin-top: 0; }
.form-hint {
  display: block; font-size: 12px; color: var(--text-muted);
  margin-top: 5px; font-weight: 300;
}
.form-required { color: var(--brown); font-size: 12px; }
.trade-form__checkboxes {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-top: 8px;
}
.trade-form__check {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--text-dark); cursor: pointer;
}
.trade-form__check input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--brown);
  flex-shrink: 0; cursor: pointer;
}
.trade-form__agreement {
  background: var(--beige-light); border-radius: 6px;
  padding: 24px; margin: 32px 0 24px;
  border: 1px solid var(--border-light);
}
.trade-form__agree-label {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--text-dark); line-height: 1.6; cursor: pointer;
}
.trade-form__agree-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--brown);
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
}
.trade-form__terms-link {
  color: var(--brown); text-decoration: underline;
  text-underline-offset: 2px; transition: color .2s;
}
.trade-form__terms-link:hover { color: var(--brown-dark); }
.trade-form__signature {
  font-family: var(--serif); font-size: 18px !important;
  letter-spacing: .02em;
}
.trade-form__disclaimer {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: var(--text-muted); text-align: center;
  margin-top: 16px; line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* LEGAL / TERMS PAGE                                                 */
/* ═══════════════════════════════════════════════════════════════════ */
.legal-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border-light); }
.legal-header__placeholder {
  display: inline-block; background: #fff3cd; color: #856404;
  border: 1px solid #ffc107; border-radius: 4px;
  padding: 6px 12px; font-size: 13px; font-weight: 500;
  margin: 8px 0; font-family: var(--sans);
}
.legal-header__updated {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  color: var(--text-muted); margin-top: 8px;
}
.legal-body h2 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--brown-dark); margin: 40px 0 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border-light);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--text-dark); margin-bottom: 12px;
}
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { font-weight: 600; }
.legal-body a { color: var(--brown); text-decoration: underline; text-underline-offset: 2px; }
.legal-address {
  font-style: normal; font-family: var(--sans); font-size: 14px;
  font-weight: 300; line-height: 1.8; color: var(--text-dark);
  background: var(--beige-light); padding: 20px 24px;
  border-radius: 4px; border-left: 3px solid var(--brown-pale);
  margin-top: 12px; display: block;
}
.legal-footer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 600px) {
  .trade-form__checkboxes { grid-template-columns: 1fr; }
}

/* Trade Terms Page */
.trade-terms__body { max-width: 720px; font-family: var(--sans); }
.trade-terms__body p,
.trade-terms__body li { font-family: var(--sans); }
.trade-terms__body h2 { font-family: var(--serif); }
.trade-terms__body h3 { font-family: var(--serif); }
.trade-terms__divider {
  border: none; border-top: 1px solid var(--border-light);
  margin: 40px 0;
}
.trade-terms__footer {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

/* TLDR Summary Block — GEO extraction target */
.trade-terms__tldr {
  background: var(--beige-pale); border-left: 3px solid var(--brown-pale);
  padding: 28px 32px; border-radius: 4px; margin-bottom: 40px;
  font-family: var(--sans);
}
.trade-terms__tldr-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--brown-dark); margin-bottom: 12px;
}
.trade-terms__tldr p {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-dark); margin-bottom: 8px;
}
.trade-terms__tldr p:last-child { margin-bottom: 0; }

/* Trust Signals Bar */
.trade-terms__trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 24px 0; margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.trade-terms__trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--text-medium); letter-spacing: .02em;
}
.trade-terms__trust-icon { font-size: 18px; }

/* Mid-page CTA */
.trade-terms__mid-cta {
  text-align: center; padding: 40px 0; margin: 40px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trade-terms__mid-cta p {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--text-light); margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════════ */
/* LEGAL PAGES — Shared Styles (Privacy, Terms, Accessibility, Prop65) */
/* ═══════════════════════════════════════════════════════════════════ */

/* TLDR Summary Block — GEO extraction target */
.legal-tldr {
  background: var(--beige-pale); border-left: 3px solid var(--brown-pale);
  padding: 28px 32px; border-radius: 4px; margin-bottom: 40px;
  font-family: var(--sans);
}
.legal-tldr__title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--brown-dark); margin-bottom: 12px;
}
.legal-tldr p {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-dark); margin-bottom: 8px;
}
.legal-tldr p:last-child { margin-bottom: 0; }

/* Trust Signals Bar */
.legal-trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 24px 0; margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}
.legal-trust__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--text-medium); letter-spacing: .02em;
}
.legal-trust__icon { font-size: 18px; }

/* Legal body button fix */
.legal-body .btn { border-bottom: none; }
.legal-body .btn--primary { color: var(--white); }
.legal-body .btn--secondary { color: var(--brown); }

/* Prop 65 Warning Box */
.prop65-warning {
  background: #FFFBF0; border: 2px solid #F0C030;
  border-radius: 6px; padding: 28px 32px; margin-bottom: 32px;
  font-family: var(--sans);
}
.prop65-warning__header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.prop65-warning__symbol {
  font-size: 28px; line-height: 1;
}
.prop65-warning__title {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: #5C4A00; text-transform: uppercase; letter-spacing: .04em;
}
.prop65-warning p {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--text-dark); margin-bottom: 8px;
}
.prop65-warning p:last-child { margin-bottom: 0; }
.prop65-warning a { color: var(--brown); text-decoration: underline; }

/* Legal page h3 styling */
.legal-body h3 {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: var(--brown-dark); margin: 24px 0 10px;
}

/* ═══ COLLECTION FILTERS ═══ */
.collection-filters { margin-bottom: 24px; }
.collection-filters__row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.collection-filters__group { flex: 1; min-width: 140px; }
.collection-filters__label {
  display: block; font-size: 11px; font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px;
}
.collection-filters__select {
  width: 100%; padding: 10px 14px; font-family: var(--sans); font-size: 14px;
  border: 1px solid var(--border); border-radius: 6px; background: var(--white);
  color: var(--text-dark); appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B7B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
.collection-filters__select:focus {
  outline: none; border-color: var(--brown-pale);
}
.collection-filters__active {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  padding: 10px 14px; background: var(--beige-light); border-radius: 6px;
  flex-wrap: wrap;
}
.collection-filters__active-label {
  font-size: 12px; font-weight: 500; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .05em;
}
.collection-filters__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.collection-filters__tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; font-size: 12px; font-family: var(--sans);
  color: var(--brown-dark); background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer; transition: background .15s;
}
.collection-filters__tag:hover { background: var(--beige-pale); }
.collection-filters__tag svg { opacity: .5; }
.collection-filters__clear {
  margin-left: auto; font-size: 12px; color: var(--brown);
  text-decoration: underline; cursor: pointer; background: none; border: none;
  font-family: var(--sans);
}
.collection-empty-filter {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 60px 0; text-align: center;
}
.collection-empty-filter p { color: var(--text-light); }

/* ═══ PRODUCT IMAGE ZOOM ═══ */
.product-page__gallery { position: relative; }
.product-page__main-image {
  cursor: zoom-in; transition: transform .2s ease;
}
.product-page__zoom-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 999; background: rgba(44,33,24,.85); display: none;
  align-items: center; justify-content: center; cursor: zoom-out;
  opacity: 0; transition: opacity .2s ease;
}
.product-page__zoom-overlay.is-open { opacity: 1; display: flex; }
.product-page__zoom-overlay img {
  max-width: 90vw; max-height: 90vh; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.product-page__zoom-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  border-radius: 50%; border: none; background: rgba(255,255,255,.15);
  color: var(--white); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: background .15s;
}
.product-page__zoom-close:hover { background: rgba(255,255,255,.3); }

/* ═══ STICKY ADD-TO-CART ═══ */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 900;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(44,33,24,.08);
  transform: translateY(100%); transition: transform .3s ease;
  padding: 12px 0;
}
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
}
.sticky-atc__info { flex: 1; min-width: 0; }
.sticky-atc__title {
  font-family: var(--serif); font-size: 16px; color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-atc__price {
  font-size: 14px; color: var(--brown); font-weight: 500;
}
.sticky-atc__price-unit { font-size: 12px; color: var(--text-light); font-weight: 400; }
.sticky-atc__btn {
  white-space: nowrap; padding: 12px 28px; font-size: 14px;
}
.sticky-atc__quote {
  white-space: nowrap; font-size: 13px; color: var(--brown);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ═══ CART TRUST STRIP ═══ */
.cart-trust {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  padding: 16px 0; margin-top: 16px;
  border-top: 1px solid var(--border-light);
}
.cart-trust__item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-light);
}
.cart-trust__item svg { flex-shrink: 0; opacity: .6; }

/* ═══ RESPONSIVE: FILTERS + STICKY ═══ */
@media (max-width: 768px) {
  .collection-filters__row { flex-direction: column; gap: 8px; }
  .collection-filters__group { min-width: 100%; }
  .sticky-atc__inner { gap: 10px; padding: 0 16px; }
  .sticky-atc__title { font-size: 14px; }
  .sticky-atc__quote { display: none; }
  .product-page__zoom-overlay img { max-width: 95vw; max-height: 85vh; }
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══ SKIP TO CONTENT ═══ */
.skip-to-content {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--brown-dark); color: var(--white); padding: 12px 24px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  border-radius: 0 0 8px 8px; z-index: 9999;
  text-decoration: none; transition: top .2s ease;
}
.skip-to-content:focus { top: 0; }

/* ═══ PRODUCT SHARE BUTTON ═══ */
.product-page__share {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.product-page__share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; font-family: var(--sans); font-size: 13px;
  color: var(--text-light); background: none;
  border: 1px solid var(--border); border-radius: 6px;
  cursor: pointer; transition: all .2s;
}
.product-page__share-btn:hover {
  color: var(--brown); border-color: var(--brown-pale);
}
.product-page__share-btn.is-copied {
  color: var(--success); border-color: var(--success);
}

/* ═══ EMAIL POPUP ═══ */
.email-popup__backdrop {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(44,33,24,.55); opacity: 0;
  transition: opacity .3s ease; pointer-events: none;
}
.email-popup__backdrop.is-open { opacity: 1; pointer-events: auto; }
.email-popup {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 380px; max-width: calc(100vw - 48px);
  background: var(--cream); border-radius: 12px;
  box-shadow: 0 20px 60px rgba(44,33,24,.2);
  padding: 36px 32px; transform: translateY(20px);
  opacity: 0; transition: all .4s ease; pointer-events: none;
}
.email-popup.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.email-popup__close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px; line-height: 0;
}
.email-popup__close:hover { color: var(--text-dark); }
.email-popup__tagline {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brown-light); margin-bottom: 8px;
}
.email-popup__title {
  font-family: var(--serif); font-size: 24px; color: var(--brown-dark);
  line-height: 1.2; margin-bottom: 8px;
}
.email-popup__desc {
  font-size: 14px; color: var(--text-light); line-height: 1.5; margin-bottom: 20px;
}
.email-popup__form { display: flex; gap: 8px; }
.email-popup__input {
  flex: 1; padding: 10px 14px; font-family: var(--sans); font-size: 14px;
  border: 1px solid var(--border); border-radius: 6px; background: var(--white);
  color: var(--text-dark);
}
.email-popup__input:focus { outline: none; border-color: var(--brown-pale); }
.email-popup__input::placeholder { color: var(--text-muted); }
.email-popup__submit {
  padding: 10px 20px; font-family: var(--sans); font-size: 13px;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  color: var(--white); background: var(--brown-dark); border: none;
  border-radius: 6px; cursor: pointer; transition: background .2s; white-space: nowrap;
}
.email-popup__submit:hover { background: var(--brown); }
.email-popup__disclaimer {
  font-size: 11px; color: var(--text-muted); margin-top: 10px;
}
.email-popup__success {
  text-align: center; padding: 12px 0;
}
.email-popup__success-icon { color: var(--success); margin-bottom: 8px; }
.email-popup__success-title {
  font-family: var(--serif); font-size: 20px; color: var(--brown-dark); margin-bottom: 4px;
}
.email-popup__success-desc { font-size: 14px; color: var(--text-light); }
@media (max-width: 480px) {
  .email-popup { bottom: 0; right: 0; max-width: 100%; border-radius: 12px 12px 0 0; }
  .email-popup__form { flex-direction: column; }
}

/* ═══ PROJECT GALLERY ═══ */
.project-gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.project-gallery__item {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 1; cursor: pointer;
}
.project-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.project-gallery__item:hover img { transform: scale(1.05); }
.project-gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.project-gallery__overlay {
  position: absolute; inset: 0; background: rgba(44,33,24,.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.project-gallery__item:hover .project-gallery__overlay { opacity: 1; }
.project-gallery__caption {
  color: var(--white); font-family: var(--serif); font-size: 16px;
  text-align: center; padding: 0 12px;
}
.project-gallery__location {
  color: rgba(255,255,255,.7); font-size: 12px; margin-top: 4px;
}
@media (max-width: 768px) {
  .project-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .project-gallery__item:nth-child(1) { grid-column: span 2; }
}

/* ═══ PREDICTIVE SEARCH RESULTS ═══ */
.search-overlay__results {
  padding: 8px 0; max-height: 400px; overflow-y: auto;
}
.search-overlay__results-grid {
  display: flex; flex-direction: column; gap: 2px;
}
.search-result {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; transition: background .15s;
}
.search-result:hover { background: rgba(44,33,24,.04); }
.search-result__img {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden; background: var(--beige-light);
}
.search-result__img img { width: 100%; height: 100%; object-fit: cover; }
.search-result__info { flex: 1; min-width: 0; }
.search-result__vendor {
  font-size: 10px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
}
.search-result__title {
  font-family: var(--serif); font-size: 15px; color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-result__price { font-size: 13px; color: var(--brown); font-weight: 500; }
.search-result__unit { font-size: 11px; color: var(--text-muted); font-weight: 400; }
.search-overlay__view-all {
  display: block; text-align: center; padding: 14px;
  font-size: 13px; font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase; color: var(--brown);
  text-decoration: none; border-top: 1px solid var(--border-light);
  margin-top: 8px;
}
.search-overlay__view-all:hover { color: var(--brown-dark); }

/* ═══ PRODUCT COMPARE ═══ */
.product-card__compare-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 8px; padding: 0; background: none; border: none;
  font-family: var(--sans); font-size: 12px; color: var(--text-muted);
  cursor: pointer; transition: color .2s; text-decoration: none;
}
.product-card__compare-link:hover { color: var(--brown); }
.product-card__compare-link.is-active .product-card__compare-link-text {
  color: var(--brown); font-weight: 500;
}
.product-card__img { position: relative; }

.compare-bar {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 950;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(44,33,24,.1);
  padding: 12px 0; transform: translateY(100%);
  transition: transform .3s ease;
}
.compare-bar.is-visible { transform: translateY(0); }
.compare-bar__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
}
.compare-bar__items { display: flex; gap: 10px; flex: 1; overflow-x: auto; }
.compare-bar__item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 10px; background: var(--beige-light); border-radius: 6px;
  font-size: 13px; color: var(--text-dark); white-space: nowrap;
  flex-shrink: 0;
}
.compare-bar__item img { width: 32px; height: 32px; border-radius: 4px; object-fit: cover; }
.compare-bar__item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 0; line-height: 0;
}
.compare-bar__item-remove:hover { color: var(--error); }
.compare-bar__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.compare-bar__btn { padding: 10px 24px; font-size: 13px; }
.compare-bar__clear {
  font-size: 12px; color: var(--text-muted); background: none;
  border: none; cursor: pointer; text-decoration: underline;
  font-family: var(--sans);
}

.compare-modal { position: fixed; inset: 0; z-index: 1000; }
.compare-modal__backdrop {
  position: absolute; inset: 0; background: rgba(44,33,24,.6);
}
.compare-modal__panel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 90vw; max-width: 900px; max-height: 85vh;
  background: var(--cream); border-radius: 12px;
  overflow-y: auto; box-shadow: 0 20px 60px rgba(44,33,24,.25);
}
.compare-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--border-light);
}
.compare-modal__title {
  font-family: var(--serif); font-size: 22px; color: var(--text-dark);
}
.compare-modal__close {
  background: none; border: none; cursor: pointer; color: var(--text-light);
  padding: 4px; line-height: 0;
}
.compare-modal__close:hover { color: var(--text-dark); }
.compare-modal__body { padding: 24px 28px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  text-align: center; padding: 12px 16px; vertical-align: top;
  border-bottom: 1px solid var(--border-light);
}
.compare-table th img {
  width: 120px; height: 120px; object-fit: cover; border-radius: 8px;
  margin-bottom: 8px;
}
.compare-table th .compare-table__name {
  font-family: var(--serif); font-size: 15px; color: var(--text-dark);
  display: block;
}
.compare-table th .compare-table__vendor {
  font-size: 10px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-muted); display: block; margin-bottom: 4px;
}
.compare-table th .compare-table__price {
  font-size: 14px; color: var(--brown); font-weight: 500; display: block;
}
.compare-table td {
  padding: 10px 16px; font-size: 14px; color: var(--text-medium);
  border-bottom: 1px solid var(--border-light); text-align: center;
}
.compare-table td:first-child {
  text-align: left; font-weight: 500; color: var(--text-dark);
  font-size: 13px; white-space: nowrap;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table__cta {
  display: inline-block; margin-top: 8px; font-size: 12px;
  color: var(--brown); text-decoration: underline; text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .compare-modal__panel { width: 95vw; max-height: 90vh; }
  .compare-modal__body { padding: 16px; overflow-x: auto; }
  .compare-bar__items { max-width: 50vw; }
}

/* ════════════════════════════════════════════════════════════════ */
/* BODY-TEXT LINKS — elegant treatment (v75)                          */
/* Nav, buttons, footer and headings are already underline-free.      */
/* In-content links: brand color, no persistent underline, subtle     */
/* underline on hover so they still read as clickable.                */
/* ════════════════════════════════════════════════════════════════ */
.product-page__showroom a,
.product-accordion__content a,
.legal-body a,
.prop65-warning a,
.quote-trust-card--highlight a,
.trade-form__terms-link {
  color: var(--brown);
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.product-page__showroom a:hover,
.product-accordion__content a:hover,
.legal-body a:hover,
.prop65-warning a:hover,
.quote-trust-card--highlight a:hover,
.trade-form__terms-link:hover {
  color: var(--brown-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════ */
/* FLOORING CALCULATOR SECTION (v75-2)                                */
/* On-brand styling using theme tokens. Scoped to .flooring-calc so   */
/* it never affects the in-blog calculators (which carry own styles). */
/* ════════════════════════════════════════════════════════════════ */
.flooring-calc { padding-top: 40px; }
.flooring-calc__header { text-align: center; margin-bottom: 28px; }
.flooring-calc__header .section__description { margin-top: 4px; }
.flooring-calc__divider {
  display: inline-block; width: 48px; height: 1px;
  background: var(--brown-pale); margin-top: 26px;
}

/* Calculator card */
.flooring-calc .aw-calc {
  max-width: 640px; margin: 0 auto;
  background: var(--beige-pale); border: 1px solid var(--border);
  border-radius: 10px; padding: 36px 36px 28px; color: var(--text-dark);
}
.flooring-calc .aw-calc__title {
  font-family: var(--serif); font-weight: 300; font-size: 24px;
  color: var(--brown-dark); margin: 0 0 4px;
}
.flooring-calc .aw-subtitle {
  font-family: var(--sans); font-size: 12px; color: var(--brown-light);
  letter-spacing: .08em; text-transform: uppercase; margin: 0 0 26px;
}
.flooring-calc .aw-floor-type { margin-bottom: 22px; }
.flooring-calc .aw-floor-type label,
.flooring-calc .aw-rooms-label {
  display: block; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--brown-medium); margin-bottom: 9px;
}
.flooring-calc .aw-floor-type select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 6px; background: var(--white); font-family: var(--serif);
  font-size: 16px; color: var(--text-dark); appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0845C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.flooring-calc .aw-floor-type select:focus { outline: none; border-color: var(--brown-pale); }
.flooring-calc .aw-room-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.flooring-calc .aw-room-row input {
  flex: 1; min-width: 0; padding: 11px 13px; border: 1px solid var(--border);
  border-radius: 6px; font-family: var(--serif); font-size: 16px; color: var(--text-dark); background: var(--white);
}
.flooring-calc .aw-room-row input:focus { outline: none; border-color: var(--brown-pale); }
.flooring-calc .aw-room-row .aw-x { color: var(--brown-light); font-size: 16px; }
.flooring-calc .aw-room-row .aw-ft { color: var(--brown-light); font-size: 13px; font-family: var(--sans); }
.flooring-calc .aw-add {
  background: none; border: none; color: var(--brown); font-family: var(--sans);
  font-size: 13px; font-weight: 600; letter-spacing: .02em; cursor: pointer; padding: 4px 0; margin-bottom: 22px;
}
.flooring-calc .aw-add:hover { color: var(--brown-dark); }
.flooring-calc .aw-calc-btn {
  width: 100%; padding: 15px; background: var(--brown); color: var(--white); border: none;
  border-radius: 6px; font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s ease;
}
.flooring-calc .aw-calc-btn:hover { background: var(--brown-dark); }
.flooring-calc .aw-results { display: none; margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--border); }
.flooring-calc .aw-results.visible { display: block; }
.flooring-calc .aw-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.flooring-calc .aw-result-cell {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 16px; text-align: center;
}
.flooring-calc .aw-result-cell .aw-label {
  display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brown-light); margin-bottom: 6px;
}
.flooring-calc .aw-result-cell .aw-value { font-family: var(--serif); font-size: 26px; color: var(--brown-dark); }
.flooring-calc .aw-cost-cell { grid-column: 1 / -1; background: var(--beige-pale); }
.flooring-calc .aw-cost-cell .aw-value { color: var(--brown); }
.flooring-calc .aw-waste-note {
  font-family: var(--sans); font-size: 12px; line-height: 1.6; color: var(--text-light);
  margin: 4px 0 0; text-align: center;
}

/* Trust badges */
.flooring-calc__trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 640px; margin: 28px auto 0;
}
.flooring-calc__badge { text-align: center; padding: 4px; }
.flooring-calc__badge svg { color: var(--brown); margin-bottom: 8px; }
.flooring-calc__badge-title { display: block; font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.flooring-calc__badge-sub { display: block; font-family: var(--sans); font-size: 11px; color: var(--text-light); margin-top: 3px; }

/* Dual CTA */
.flooring-calc__cta { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; max-width: 640px; margin: 40px auto 0; }
.flooring-calc__cta-primary, .flooring-calc__cta-secondary { border-radius: 10px; padding: 24px; text-decoration: none; display: block; transition: transform .2s ease; }
.flooring-calc__cta-primary:hover, .flooring-calc__cta-secondary:hover { transform: translateY(-2px); }
.flooring-calc__cta-primary { background: var(--brown); color: var(--white); }
.flooring-calc__cta-primary .flooring-calc__cta-k { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-bottom: 6px; }
.flooring-calc__cta-primary .flooring-calc__cta-h { display: block; font-family: var(--serif); font-size: 22px; font-weight: 300; margin-bottom: 5px; }
.flooring-calc__cta-primary .flooring-calc__cta-d { font-family: var(--sans); font-size: 13px; opacity: .92; line-height: 1.45; }
.flooring-calc__cta-secondary { background: var(--white); border: 1px solid var(--border); color: var(--text-dark); }
.flooring-calc__cta-secondary .flooring-calc__cta-k { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 6px; }
.flooring-calc__cta-secondary .flooring-calc__cta-h { display: block; font-family: var(--serif); font-size: 19px; font-weight: 300; color: var(--brown-dark); margin-bottom: 5px; }
.flooring-calc__cta-secondary .flooring-calc__cta-d { font-family: var(--sans); font-size: 13px; color: var(--text-light); line-height: 1.45; }

/* Buying guides */
.flooring-calc__guides-wrap { max-width: 640px; margin: 48px auto 0; }
.flooring-calc__guides-head { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--brown-dark); text-align: center; margin: 0 0 22px; }
.flooring-calc__guides { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.flooring-calc__guide { display: block; text-decoration: none; border: 1px solid var(--border); border-radius: 8px; padding: 20px; background: var(--white); transition: border-color .2s ease; }
.flooring-calc__guide:hover { border-color: var(--brown-pale); }
.flooring-calc__guide-k { font-family: var(--sans); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--brown-light); margin: 0 0 6px; }
.flooring-calc__guide-t { font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--brown-dark); margin: 0 0 6px; line-height: 1.35; }
.flooring-calc__guide-s { font-family: var(--sans); font-size: 12px; color: var(--text-light); margin: 0; }

@media (max-width: 560px) {
  .flooring-calc__trust { grid-template-columns: repeat(2, 1fr); }
  .flooring-calc__cta { grid-template-columns: 1fr; }
  .flooring-calc__guides { grid-template-columns: 1fr; }
  .flooring-calc .aw-calc { padding: 28px 22px 22px; }
}

/* ════════════════════════════════════════════════════════════════ */
/* BLOG CARD — whole-card clickable (v77)                             */
/* The card animates as one unit on hover; this makes the entire card */
/* a click target (not just the title/image) by stretching the title  */
/* link across it. Hover effect is unchanged.                         */
/* ════════════════════════════════════════════════════════════════ */
.blog-card { position: relative; }
.blog-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
