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

:root {
  --black: #111111;
  --dark: #1a1a1a;
  --white: #ffffff;
  --light: #e4e4e4;
  --font: 'Manrope', sans-serif;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
}

a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; color: inherit; font-family: inherit; }

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--white);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(238, 238, 238, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Main bar */
.main-bar { position: relative; }
.main-inner {
  display: flex;
  align-items: center;
  height: 5rem;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.8; }
.logo-img {
  width: 18rem;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) { .logo-text { display: none; } }

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: stretch;
  flex: 1;
  margin-left: 1rem;
}
.primary-nav .nav-btn {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.primary-nav .nav-btn:hover,
.primary-nav .nav-btn.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.primary-nav .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  height: 4rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}
.primary-nav .nav-link:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

@media (max-width: 1024px) { .primary-nav { display: none; } }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.nav-actions #search-btn {
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.15s;
}
.nav-actions #search-btn:hover { color: var(--black); }
.nav-actions #search-btn svg { width: 18px; height: 18px; display: block; }

.configure-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  transition: opacity 0.15s;
}
.configure-btn:hover { opacity: 0.88; }

.hamburger {
  display: none;
  padding: 0.5rem;
  color: rgba(0, 0, 0, 0.55);
  transition: color 0.15s;
}
.hamburger:hover { color: var(--black); }
.hamburger svg { width: 20px; height: 20px; display: block; }

@media (max-width: 1024px) {
  .configure-btn { display: none; }
  .hamburger { display: flex; }
}

/* ── Mega Menu ── */
.mega-menu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--light);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.5);
  z-index: 50;
  display: none;
  opacity: 0;
  transition: opacity 0.15s;
}
.mega-menu.open {
  display: block;
  opacity: 1;
}
.mega-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  gap: 3rem;
}
.mega-col-heading {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 600;
  margin-bottom: 1rem;
}
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.mega-col ul a {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 0.04em;
  display: block;
  padding: 2px 0;
  transition: color 0.15s;
}
.mega-col ul a:hover { color: var(--black); }

/* ── Backdrop ── */
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 8.5rem;
  background: rgba(255, 255, 255, 0.4);
  z-index: 40;
}
.backdrop.visible { display: block; }

/* ── Mobile Drawer ── */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--white);
  color: var(--black);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.mobile-logo {
  display: flex;
  align-items: center;
}
#mobile-close {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.15s;
}
#mobile-close:hover { color: var(--black); }

.mobile-drawer-body {
  overflow-y: auto;
  flex: 1;
  padding: 0 1.5rem 2rem;
}
@keyframes flyInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-drawer.open .mobile-section {
  opacity: 0;
  animation: flyInLeft 0.35s ease forwards;
}
.mobile-drawer.open .mobile-section:nth-child(1) { animation-delay: 0.08s; }
.mobile-drawer.open .mobile-section:nth-child(2) { animation-delay: 0.15s; }
.mobile-drawer.open .mobile-section:nth-child(3) { animation-delay: 0.22s; }
.mobile-drawer.open .mobile-section:nth-child(4) { animation-delay: 0.29s; }
.mobile-drawer.open .mobile-section:nth-child(5) { animation-delay: 0.36s; }
.mobile-drawer.open .mobile-section:nth-child(6) { animation-delay: 0.43s; }
.mobile-drawer.open .mobile-drawer-header {
  opacity: 0;
  animation: flyInLeft 0.3s ease 0.02s forwards;
}
.mobile-section { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.mobile-section-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
}
.mobile-section-btn .chevron {
  width: 16px; height: 16px;
  display: block;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mobile-section-btn.expanded .chevron { transform: rotate(180deg); }
.mobile-section-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-bottom 0.35s ease;
}
.mobile-section-content.open {
  max-height: 1200px;
  opacity: 1;
  padding-bottom: 1rem;
}
.mobile-section-link {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1rem 0;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-section-link:hover { color: rgba(0, 0, 0, 0.65); }
.mobile-col-heading {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.mobile-col ul { list-style: none; display: flex; flex-direction: column; }
.mobile-col ul a {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  padding: 3px 0;
  display: block;
  transition: color 0.15s;
}
.mobile-col ul a:hover { color: var(--black); }

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.15s;
}
.search-close:hover { color: var(--black); }
.search-inner { width: 100%; max-width: 40rem; padding: 0 1.5rem; }
.search-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 1rem;
}
.search-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 0.75rem;
}
.search-icon { width: 20px; height: 20px; color: rgba(0, 0, 0, 0.35); flex-shrink: 0; }
#search-input {
  background: none;
  border: none;
  outline: none;
  flex: 1;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--black);
  font-family: var(--font);
  letter-spacing: 0.04em;
}
#search-input::placeholder { color: rgba(0, 0, 0, 0.22); }
.search-popular { margin-top: 2rem; }
.popular-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  margin-bottom: 0.75rem;
}
.popular-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.popular-chips button {
  font-size: 11px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.55);
  padding: 0.35rem 0.75rem;
  letter-spacing: 0.1em;
  font-family: var(--font);
  transition: border-color 0.15s, color 0.15s;
}
.popular-chips button:hover {
  border-color: rgba(0, 0, 0, 0.5);
  color: var(--black);
}

/* Results container */
.search-results {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 50vh;
  overflow-y: auto;
}

/* Category group */
.search-group-heading {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  margin-bottom: 0.5rem;
}

/* Individual result row */
.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: padding-left 0.15s;
}
.search-result-item:hover { padding-left: 0.5rem; }

.result-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  transition: color 0.15s;
}
.search-result-item:hover .result-name { color: var(--black); }

.result-desc {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.03em;
}

/* Highlight matched text */
mark {
  background: none;
  color: var(--black);
  font-weight: 700;
}

/* No results */
.search-no-results {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  padding-top: 0.5rem;
}
.search-no-results strong { color: rgba(0, 0, 0, 0.6); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Optional dark overlay on top of the video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
/* ── Products Section ── */
.products-section {
  background: #fff;
  padding: 5rem 0 4rem;
  padding-top: 140px; 
  overflow: hidden;
}

.products-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}

.products-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.6rem;
}

.products-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
}

/* Track wrapper */
.products-track-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.products-track {
  --track-pad: clamp(2rem, calc((100vw - 1280px) / 2 + 2rem), 6rem);
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--track-pad);
  scroll-padding-inline: var(--track-pad);
  scrollbar-width: none;
}
.products-track::-webkit-scrollbar { display: none; }

@media (max-width: 470px) {
  .products-track {
    padding: 0 12%;               /* space on both edges — this creates the peek */
    scroll-padding-inline: 12%;   /* keeps snap points aligned with that padding */
  }

  .product-card {
    flex: 0 0 76%;                /* narrower than 100% so neighbors peek in */
    scroll-snap-align: center;    /* was "start" — now snaps to center of viewport */
  }

  .product-card img {
    height: 55vw;                 /* slightly reduced since the card itself is narrower */
  }
}

/* Cards */
.product-card {
  flex: 0 0 calc(33.333% - 0.67rem);
  max-width: none;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #e0e0e0;
  border: none;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 35vw;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 1.5rem;
  background: #e0e0e0;
  transition: transform 0.6s ease;
}
.product-card:hover img { transform: scale(1.04); }

.product-card-info {
  position: relative;
  padding: 1.25rem 1.5rem 1.5rem;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
  margin-top: auto;
  align-self: flex-start;
}
.product-link:hover {
  border-color: #111;
  gap: 0.7rem;
}

/* Arrows */
.track-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(0,0,0,0.2);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.track-arrow:hover { background: #111; border-color: #111; }
.track-arrow:hover svg { stroke: #fff; }
.track-arrow svg { width: 18px; height: 18px; stroke: #111; display: block; transition: stroke 0.15s; }

.track-arrow-left  { left: 1rem; }
.track-arrow-right { right: 1rem; }

/* Dots */
.track-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.track-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.track-dot.active {
  background: #111;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .product-card { flex: 0 0 calc(50% - 0.5rem); }
  .track-arrow { display: none; }
}
.products-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.all-products-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  border: 1px solid #111;
  color: #111;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.4s, color 0.4s;
}
.all-products-btn:hover {
  background: #111;
  color: #fff;
}
@keyframes badgePulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25); }
  60%  { box-shadow: 0 0 0 6px rgba(0, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  pointer-events: none;
  animation: badgePulse 2s ease-out infinite;
}
/* ── About Section ── */
.about-section {
  border-top: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  padding: 4rem 2rem;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  background: #f2f2f2;
  overflow: hidden;
  border-radius: 12px;
}

.about-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.about-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #111;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.about-body {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.9;
  max-width: 38ch;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.2s, border-color 0.2s;
}
.about-link:hover { gap: 0.7rem; border-color: #111; }

.about-img-wrap {
  overflow: hidden;
  min-height: 380px;
  border-radius: 0 12px 12px 0;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-card:hover .about-img-wrap img { transform: scale(1.03); }

@media (max-width: 768px) {
  .about-card { grid-template-columns: 1fr; }
  .about-text { padding: 2.5rem 1.75rem; }
  .about-img-wrap { min-height: 240px; }
  .about-img-wrap { border-radius: 0 0 12px 12px;}
}

/* ── Prices Section ── */
.prices-section {
  background: #fff;
  padding: 7rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.prices-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.prices-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #111;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.prices-body {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  line-height: 1.9;
  max-width: 46ch;
}

.prices-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.9rem 2.5rem;
  border: 1px solid #111;
  color: #111;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.4s, color 0.4s;
}
.prices-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 600px) {
  .prices-section { padding: 5rem 1.5rem; }
  .prices-title { font-size: 2rem; }
}

.prices-actions {
  display: flex;
  justify-content: center;
  max-width: 1280px;
  margin: 1.5rem auto 0;
  padding: 0 2rem 1.5rem;
}

.prices-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.2);
  color: #111;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.4s, color 0.4s;
}
.prices-print-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.prices-print-btn:hover {
  background: #111;
  color: #fff;
}
.prices-print-btn:hover svg {
  stroke: #fff;
}

/* ── Contact Teaser ── */
.contact-teaser {
  background: #f2f2f2;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 4rem 2rem;
}

.contact-teaser-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.contact-teaser-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-teaser-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.contact-teaser-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
}

.contact-teaser-value {
  font-size: 15px;
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
}

.contact-teaser-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(0,0,0,0.12);
}

.contact-teaser-locations-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  border: 1px solid #111;
  color: #111;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.4s, color 0.4s;
}

.contact-teaser-locations-btn:hover {
  background: #111;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-teaser-top { gap: 1.5rem; }
  .contact-teaser-divider { display: none; }
  .contact-teaser-locations-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ── Footer ── */
.footer {
  background: #111;
  color: #fff;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  justify-items: start;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-logo {
  width: 14rem;
  height: 4.5rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-contact-heading {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-contact-item {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.7;
  transition: color 0.15s;
}
a.footer-contact-item:hover { color: #fff; }

/* Bottom bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .footer-col-location2 { order: 3; }
  .footer-col-explore   { order: 2; }
}
/* Only apply left alignment on mobile */
@media (max-width: 600px) {
  .footer-logo {
    object-position: left;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .footer-col-explore {
    margin-left: 2rem;   /* adjust to taste */
  }
}

/* ── All Products Page ── */
.all-products-page {
  padding-top: 6rem;
  min-height: 100vh;
  background: #fff;
}

.all-products-header {
  text-align: center;
  padding: 3rem 2rem 2rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.15s;
}
.back-link:hover { color: #111; }

.all-products-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 2rem 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font);
  border: 1px solid rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.45);
  background: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-tab:hover { border-color: #111; color: #111; }
.filter-tab.active { background: #111; color: #fff; border-color: #111; }

/* Product grid */
.all-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 0 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.all-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #e0e0e0;
  transition: box-shadow 0.2s;
}
.all-product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.all-product-img-wrap {
  background: radial-gradient(ellipse at center, #ffffff 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.all-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}
.all-product-card:hover .all-product-img-wrap img { transform: scale(1.04); }

.all-product-info {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
  background: #f5f5f5;
}

.all-product-desc {
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  flex: 1;
  display: none;
}

@media (max-width: 1024px) {
  .all-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .all-products-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.25rem 4rem; }
  .filter-tabs { gap: 0.4rem; }
    .products-search-wrap {
    max-width: 100%;
    margin: 0 1.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .all-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1.25rem 4rem;
  }
  .all-product-img-wrap {
    padding: 14%;
  }
}

/* ── Products page search bar ── */
.products-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.12);
  background: #f9f9f9;
}

.products-search-wrap svg {
  width: 16px;
  height: 16px;
  color: rgba(0,0,0,0.35);
  flex-shrink: 0;
}

#products-search {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 13px;
  font-family: var(--font);
  color: #111;
  letter-spacing: 0.02em;
}
#products-search::placeholder { color: rgba(0,0,0,0.3); }

#products-search-clear {
  display: none;
  background: none;
  border: none;
  font-size: 14px;
  color: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: color 0.15s;
  font-family: var(--font);
}
#products-search-clear:hover { color: #111; }

/* Show more toggle button */
.filter-tab-toggle {
  padding: 0.5rem 1.25rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font);
  border: 1px dashed rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.4);
  background: none;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.filter-tab-toggle:hover { color: #111; border-color: #111; }

/* No results message */
.no-products-msg {
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
}
.no-products-msg strong { color: #111; }
@media (max-width: 600px) {
  .products-search-wrap {
    max-width: 100%;
    margin: 0 1.5rem 2rem;
  }
}
@media (max-width: 600px) {
  .filter-tab-toggle {
    display: inline-flex;
  }
}
/* ── Prices Page ── */
.prices-page {
  padding-top: 6rem;
  min-height: 100vh;
  background: #fff;
}

.prices-page-subtitle {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

.prices-table-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.prices-table {
  width: 100%;
  border-collapse: separate;
  font-size: 13px;
  border-spacing: 0;
}

.prices-table thead tr {
  position: sticky;
  top: 5rem;
  z-index: 10;
}
.prices-table thead th {
  background: #fff;
  padding-top: 1.5rem; 
  padding-bottom: 1.5rem; 
  border-bottom: 2px solid #111;
  text-align: left;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 700;
  padding-right: 1rem;
}
.prices-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.15s;
}


.prices-table td {
  padding: 1.1rem 1rem 1.1rem 0;
  color: rgba(0,0,0,0.6);
  vertical-align: middle;
}

.prices-model-name {
  padding-left: 0.75rem !important;
  font-weight: 600;
  color: #111 !important;
  letter-spacing: 0.02em;
}

.prices-price {
  font-weight: 600;
  color: #111 !important;
  letter-spacing: 0.02em;
}

.prices-discover {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.prices-discover:hover { border-color: #111; }
.prices-category-row td {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
  padding: 2.5rem 0 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.filter-tabs-sub {
  padding-top: 0;
  margin-top: -1rem;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

.filter-tabs-sub .filter-tab {
  font-size: 10px;
  color: rgba(0,0,0,0.35);
  border-color: rgba(0,0,0,0.1);
  padding: 0.35rem 0.9rem;
}

.filter-tabs-sub .filter-tab.active {
  background: #555;
  border-color: #555;
  color: #fff;
}

/* Only hide tabs on mobile for the products page, not prices page */



.prices-table th:nth-child(2),
.prices-table th:nth-child(3),
.prices-table th:nth-child(4) {
  text-align: center;
}

.prices-table td:nth-child(2),
.prices-table td:nth-child(3),
.prices-table td:nth-child(4) {
  text-align: center;
}

.prices-table tbody tr:not(.prices-category-row):hover { background: #f9f9f9; }
.prices-table th:nth-child(1) {
  padding-left: 0.75rem !important;
}

@media (max-width: 600px) {
  
  /* Make sure sub-tabs are never hidden */
  #sub-tabs .filter-tab {
    display: inline-flex !important;
  }
}

/* ── Product Page ── */
.product-page {
  padding-top: 4rem;
  min-height: 100vh;
  background: #fff;
}

.product-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  display: grid;
  gap: 5rem;
  align-items: start;
}

/* Images */
.product-images {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.product-img-wrap {
  background: radial-gradient(ellipse at center, #fff 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex: 1;
  max-height: 300px;
}

.product-stacked-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Details */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.product-subtitle {
  font-size: 13px;
  color: rgba(0,0,0,0.45);
  line-height: 1.8;
  max-width: 38ch;
}

.product-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 0.5rem 0;
}

.product-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  font-weight: 700;
}

.product-images-mobile {
  display: none;
}

/* Variants Table */
.product-variants-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.product-variants-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12px;
}

.product-variants-table thead tr:first-child th {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  font-weight: 700;
  padding: 0.9rem 1rem 0.75rem;
  text-align: center;
  border-bottom: none;
  background: #efefef;
}

.product-variants-table thead tr:first-child th:first-child {
  border-radius: 6px 0 0 0;
}

.product-variants-table thead tr:first-child th:last-child {
  border-radius: 0 6px 0 0;
}

.dimensions-header {
  border-left: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
}

.product-variants-table thead tr:last-child th {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  font-weight: 700;
  padding: 0.65rem 1rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #efefef;
}

.product-variants-table td {
  padding: 0.9rem 1rem;
  color: rgba(0,0,0,0.65);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  vertical-align: middle;
  text-align: center;
}

.product-variants-table tbody tr:last-child td {
  border-bottom: none;
}

.product-variants-table tbody tr:hover { 
  background: #f4f4f4;
  transition: background 0.15s; 
}

.variant-number {
  font-size: 11px;
  color: rgba(0,0,0,0.25);
  font-weight: 600;
  width: 2rem;
  text-align: center;
}

.variant-name {
  font-weight: 600;
  color: #111 !important;
  letter-spacing: 0.02em;
  text-align: left;
}

.variant-price {
  font-weight: 700;
  color: #111 !important;
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* CTAs */
.product-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.8; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(0,0,0,0.3);
  color: #111;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: #111; }

/* Desktop only */
@media (min-width: 1025px) {
  .product-images-desktop {
    position: sticky;
    top: 6rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .product-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-images-desktop {
    display: none;
  }
  .product-images-mobile {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  .product-img-wrap {
    flex: 1;
    max-height: 200px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-images-desktop {
    display: none;
  }
  .product-images-mobile {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .product-img-wrap {
    max-height: 160px;
    padding: 0.75rem;
  }
  .product-variants-table {
    font-size: 10px;
  }
  .product-variants-table thead tr:first-child th,
  .product-variants-table thead tr:last-child th {
    font-size: 7px;
    letter-spacing: 0.1em;
    padding: 0.65rem 0.4rem;
  }
  .product-variants-table td {
    padding: 0.75rem 0.4rem;
  }
  .variant-price {
    font-size: 11px;
  }
  .product-ctas {
    flex-direction: column;
  }
  .product-ctas a {
    text-align: center;
    justify-content: center;
  }
}

.product-variants-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  position: relative;
}

.wide-table .product-variants-table {
  min-width: 900px;
}

.scroll-arrow-hint {
  display: none;
  position: absolute;
  right: 0;
  top: 8rem;
  width: 48px;
  height: 48px;
  background: #111;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 10;
  animation: hint-slide 1.2s ease-in-out infinite;
}

@keyframes hint-slide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

@media (max-width: 1188px) {
  .wide-table .scroll-arrow-hint {
    display: flex;
  }
}

.single-col {
  grid-template-columns: 1fr;
}

.single-col .product-images {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  position: static;
}

.single-col .product-img-wrap {
  flex: 1;
  max-height: 280px;
}

.single-col .product-variants-table-wrap {
  overflow-x: auto;
}

@media (min-width: 1025px) {
  .single-col .product-details {
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .product-page,
  .product-inner,
  .product-details {
    max-width: 100%;
    overflow-x: hidden;
  }
  .product-variants-table-wrap {
    overflow-x: auto !important;
  }
  .product-variants-table {
    overflow-x: auto !important;
  }
}

@media (max-width: 1024px) {
  .product-variants-table-wrap:not(.wide-table) thead th {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 600px) {
  .product-page,
  .product-inner,
  .product-details {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 600px) {
  .product-page,
  .product-inner,
  .product-details {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 722px) {
  .product-variants-table-wrap:not(.wide-table) th,
  .product-variants-table-wrap:not(.wide-table) td {
    padding: 0.65rem 0.3rem;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .product-variants-table-wrap:not(.wide-table) thead tr:first-child th,
  .product-variants-table-wrap:not(.wide-table) thead tr:last-child th {
    font-size: 7px;
    letter-spacing: 0.08em;
    padding: 0.65rem 0.4rem;
  }
}

@media (max-width: 466px) {
  .logo-img {
    max-width: 250px; /* adjust to taste */
  }
}

.logo-img-small {
  display: none;
  height: 60px;
  width: auto;
}

@media (max-width: 410px) {
  .logo-img {
    display: none;
  }
  .logo-img-small {
    display: block;
  }
}

@media (max-width: 450px) {
  .main-inner {
    position: relative;
    justify-content: space-between;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-actions {
    display: contents;
  }

  #search-btn {
    order: 3;
  }

  #mobile-open {
    order: -1;
  }
}

@media (max-width: 500px) {
  .prices-page {
    overflow-x: hidden;
  }

  .prices-table-wrap {
    padding: 0 0.75rem 5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .prices-table {
    min-width: unset;
    width: 100%;
  }

  .prices-table thead tr {
    position: static;
  }

  .all-products-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .filter-tabs {
    padding: 0 0.75rem 2.5rem;
  }
  .prices-table {
    font-size: 10px;
  }

  .prices-table thead th {
    font-size: 7px;
    letter-spacing: 0.1em;
    padding-right: 0.5rem;
  }

  .prices-table td {
    padding: 0.85rem 0.5rem 0.85rem 0;
  }
  .prices-category-row td {
    padding-left: 0.75rem;
  }
}

.contact-teaser-note {
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  margin-top: 0.25rem;
}

.mega-group {
  margin-bottom: 1.5rem;
}
.mega-group:last-child {
  margin-bottom: 0;
}

.mobile-group {
  margin-bottom: 1rem;
}
.mobile-group:last-child {
  margin-bottom: 0;
}

.product-variants-table tbody td {
  transition: none;
}

.product-variants-table tbody tr.hovered td {
  background: #f4f4f4;
}

.product-variants-table .variant-img-cell {
  transition: none;
}

.product-variants-table .variant-img-cell.img-hovered {
  background: #f4f4f4 !important;
}

.product-inner {
  grid-template-columns: 1fr;
}

.variant-img-cell {
  padding: 0.5rem;
  width: 120px;
}

.variant-thumbnail {
  width: 200px;
  height: 90px;
  object-fit: contain;
  display: block;
}

.variant-thumbnaill {
  width: 200px;
  height: 110px;
  object-fit: contain;
  display: block;
}

.variant-thumbnailll {
  width: 300px;
  height: 180px;
  object-fit: contain;
  display: block;
}

.mobile-see-all {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  text-decoration: none;
  padding: 0.75rem 0 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 0.5rem;
  transition: color 0.15s;
}

.mobile-see-all:hover {
  color: #111;
}

.variant-img-pair {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.variant-img-pair .variant-thumbnail {
  width: 120px;
  height: 70px;
  object-fit: contain;
}

.variant-img-pair .variant-thumbnaill {
  width: 200px;
  height: 90px;
  object-fit: contain;
}

.variant-img-pairr {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Contact page */

.contact-page {
  padding-top: 6rem;
  background: #fff;
}

/* Hero */
.contact-hero {
  text-align: center;
  padding: 3rem 2rem 5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.contact-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.contact-hero-sub {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.03em;
}

/* Location sections */
.contact-location {
  padding: 0;
}

.contact-location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.contact-location-inner-reverse {
  direction: rtl;
}

.contact-location-inner-reverse > * {
  direction: ltr;
}

.contact-location-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.contact-location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-location-info {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
}

.contact-location-alt .contact-location-info {
  background: #f7f7f7;
}

.contact-location-eyebrow {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  font-weight: 700;
}

.contact-location-name {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: #111;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.contact-location-divider {
  width: 2rem;
  height: 2px;
  background: #111;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  font-weight: 700;
}

.contact-info-value {
  font-size: 14px;
  color: #111;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.contact-info-link {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding-bottom: 1px;
  display: inline-block;
  transition: border-color 0.15s;
}
.contact-info-link:hover {
  border-color: #111;
}

/* Section divider */
.contact-section-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.07);
}

/* Socials */
.contact-socials {
  text-align: center;
  padding: 5rem 2rem;
}

.contact-socials-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-socials-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-social-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.contact-social-link:hover {
  border-color: #111;
}

.contact-social-dot {
  color: rgba(0,0,0,0.2);
  font-size: 18px;
}

/* Tablet */
@media (max-width: 1024px) {
  .contact-location-inner,
  .contact-location-inner-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .contact-location-map {
    min-height: 350px;
  }

  .contact-location-info {
    padding: 3rem 2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contact-hero {
    padding: 4rem 1.5rem 3rem;
  }

  .contact-location-map {
    min-height: 260px;
  }

  .contact-location-info {
    padding: 2.5rem 1.5rem;
  }

  .contact-socials {
    padding: 3rem 1.5rem;
  }
}

.contact-info-icon {
  width: 13px;
  height: 13px;
  vertical-align: middle;
  margin-right: 0.4rem;
  color: rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.contact-info-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #111;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  width: fit-content;
  transition: opacity 0.2s;
}

.contact-social-btn:hover {
  opacity: 0.75;
}

@media (max-width: 470px) {
  .product-card {
    flex: 0 0 100%;
  }
  .product-card img {
    height: 60vw;
    max-height: none;
  }
}

@media (max-width: 350px) {
  .prices-table {
    font-size: 8px;
  }

  .prices-table thead th {
    font-size: 6px;
    letter-spacing: 0.05em;
    padding-right: 0.25rem;
  }

  .prices-table td {
    padding: 0.6rem 0.25rem;
  }

  .prices-table-wrap {
    padding: 0 0.5rem 5rem;
  }
}

/* ═══ About-page ══ */

:root {
  --ab-ink:      var(--black);
  --ab-ink-soft: #444444;
  --ab-line:     rgba(0, 0, 0, 0.1);
  --ab-panel:    var(--light);      /* #e4e4e4 */
  --ab-panel-2:  #f5f5f5;           /* matches .product-card-info */
  --ab-white:    var(--white);
  --ab-dark:     var(--dark);       /* #1a1a1a — for inverted sections */
  --ab-accent:      #c9a96e;
  --ab-accent-soft: rgba(201, 169, 110, 0.14);
}

/* ── Keyframes ─────────────────────────────────────────────────── */
@keyframes ab-heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── Scroll-reveal ─────────────────────────────────────────────── */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-fade  { transform: translateY(16px); }
.reveal-up    { transform: translateY(20px); }
.reveal-left  { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }

.reveal-fade.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-fade, .reveal-up, .reveal-left, .reveal-right {
    transition: none;
  }
}

/* ── Shared helpers ────────────────────────────────────────────── */
.ab-rule {
  width: 2rem;
  height: 2px;
  margin-bottom: 1.5rem;
  background: var(--ab-accent);
}
.ab-rule-gold,
.ab-rule-amber {
  background: var(--ab-accent); /* both variants collapse to one line style */
}
.ab-rule-centered { margin-left: auto; margin-right: auto; }
 
.about-section-eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: var(--ab-accent) !important;
}
.ab-eyebrow-gold,
.ab-eyebrow-amber { color: var(--ab-accent) !important; }
.ab-eyebrow-centered { text-align: center; }
 
.about-today .about-section-eyebrow { color: var(--ab-accent) !important; }
.about-today .ab-rule { background: var(--ab-accent); }
 
.about-section-title {
  font-family: var(--font) !important;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  margin-bottom: 1.5rem !important;
  color: var(--ab-ink) !important;
}
.about-section-title em { font-style: normal !important; font-weight: 500 !important; }
.ab-title-white,
.ab-title-dark { color: var(--ab-ink) !important; }
.about-today .about-section-title { color: #fff !important; }
.ab-title-dark em,
.ab-title-white em { color: inherit !important; }
 
/* ═══════════════════════════════════════════════════════════
   OUR STORY
════════════════════════════════════════════════════════════ */
.about-story {
  background: var(--ab-white) !important;
  padding: 5rem 0 !important;
  border-top: 1px solid var(--ab-line);
}
@media (min-width: 768px) { .about-story { padding: 6rem 0 !important; } }

.about-story { padding-top: 9rem !important; }
@media (min-width: 768px) { .about-story { padding-top: 10rem !important; } }
 

.about-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 820px) {
  .about-story-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
 

.about-story-images {
  position: relative !important;
  padding-bottom: 2rem !important;
}
.ab-story-img-main {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  overflow: hidden;
  background: var(--ab-panel);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
}
.ab-story-img-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.ab-story-img-secondary {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  z-index: 1;
  overflow: hidden;
  background: var(--ab-accent);
  border: 5px solid var(--ab-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.ab-story-img-secondary img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.ab-story-stamp {
  position: absolute;
  bottom: 0;
  left: 1rem;
  z-index: 20;
  background: var(--ab-ink);
  padding: 0.65rem 1.1rem;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ab-accent);
}

.about-story-body {
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: 400 !important;
  margin-bottom: 1.25rem !important;
}
.about-story-body:last-child { margin-bottom: 0 !important; }
/* ═══════════════════════════════════════════════════════════
   WHO WE ARE TODAY  —  deep navy, gold stats
════════════════════════════════════════════════════════════ */
.about-today {
  background: var(--ab-ink) !important;
  padding: 5rem 0 !important;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .about-today { padding: 6rem 0 !important; } }
 
.about-today::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 45%;
  height: 140%;
  background: radial-gradient(ellipse, var(--ab-accent-soft), transparent 70%);
  pointer-events: none;
}

.about-today-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-today-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-today-body {
  font-size: 13px !important;
  line-height: 1.9 !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 1.25rem !important;
}
.about-today-body:last-of-type { margin-bottom: 0 !important; }
 
.about-today-stats {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
}
.about-stat {
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.about-stat-number {
  font-family: var(--font) !important;
  font-size: clamp(2.2rem, 4.2vw, 3rem) !important;
  font-weight: 300 !important;
  color: var(--ab-accent) !important;
  line-height: 1 !important;
  margin-bottom: 0.25rem !important;
  letter-spacing: 0 !important;
}
.about-stat-unit {
  font-family: var(--font) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: 0.04em !important;
}
.about-stat-label {
  font-size: 9px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin: 0 !important;
}