@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   VELVETANCHOR — GLOBAL STYLES
   ============================================ */

:root {
  --white:       #FFFFFF;
  --beige:       #EADBC8;
  --terracotta:  #C97B63;
  --walnut:      #6B4F3A;
  --graphite:    #374151;
  --light-gray:  #F8FAFC;
  --border:      #E8E0D8;
  --text-muted:  #8A7F78;
  --shadow-sm:   0 1px 3px rgba(55,65,81,.06);
  --shadow-md:   0 4px 16px rgba(55,65,81,.10);
  --shadow-lg:   0 8px 32px rgba(55,65,81,.13);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  all .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--walnut);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

a { color: var(--terracotta); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--walnut); }

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

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 900px; }
.container--wide   { max-width: 1400px; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-top {
  background: var(--walnut);
  padding: 8px 0;
  font-size: .82rem;
  color: var(--beige);
}

.nav-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav-top a { color: var(--beige); opacity: .85; }
.nav-top a:hover { opacity: 1; color: var(--white); }

.nav-top-left, .nav-top-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-main {
  padding: 16px 0;
}

.nav-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--walnut);
  letter-spacing: .04em;
  line-height: 1;
}

.logo-sub {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.nav-search input {
  width: 100%;
  padding: 10px 20px 10px 44px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  background: var(--light-gray);
  transition: var(--transition);
  color: var(--graphite);
}

.nav-search input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,123,99,.12);
}

.nav-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--graphite);
  font-size: .72rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.nav-icon-btn svg { width: 22px; height: 22px; }
.nav-icon-btn:hover { color: var(--terracotta); background: var(--light-gray); }

.nav-icon-btn .count-badge {
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -4px;
}

.nav-icon-btn-wrap { position: relative; }

.nav-categories {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.nav-categories .container {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-cat-item {
  position: relative;
}

.nav-cat-item > a {
  display: block;
  padding: 13px 18px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--graphite);
  white-space: nowrap;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.nav-cat-item > a:hover,
.nav-cat-item.active > a {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.nav-cat-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: .875rem;
  color: var(--graphite);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--terracotta);
  padding-left: 24px;
}

/* ============================================
   HAMBURGER / MOBILE MENU
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 9999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.open { display: flex; }

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--graphite);
  padding: 8px;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 14px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "›"; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb li:last-child { color: var(--graphite); font-weight: 500; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(55,65,81,.68) 0%,
    rgba(107,79,58,.42) 50%,
    rgba(201,123,99,.12) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,123,99,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--walnut);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}

.btn-outline-dark:hover {
  background: var(--walnut);
  color: var(--white);
}

.btn-secondary {
  background: var(--beige);
  color: var(--walnut);
  border-color: var(--beige);
}

.btn-secondary:hover {
  background: var(--walnut);
  color: var(--white);
  border-color: var(--walnut);
}

.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-icon {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--graphite);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }
.section--beige { background: var(--beige); }
.section--light { background: var(--light-gray); }
.section--walnut { background: var(--walnut); }

.section-header {
  margin-bottom: 48px;
}

.section-header--center { text-align: center; }

.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
  display: block;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
}

.section-header--center p { margin: 0 auto; }

/* ============================================
   CATEGORY GRID
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.cat-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--beige);
}

.cat-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.cat-card:hover .cat-card-img img { transform: scale(1.06); }

.cat-card-body {
  padding: 16px 18px 18px;
}

.cat-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--walnut);
}

.cat-card-body p {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--beige);
}

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-card-actions { opacity: 1; }

.product-card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--graphite);
  text-decoration: none;
}

.product-card-action-btn:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: .75rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}

.product-card-body h4 {
  font-size: 1rem;
  color: var(--walnut);
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.product-tag {
  font-size: .72rem;
  background: var(--light-gray);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: var(--text-muted);
}

.stars { color: #D4A853; letter-spacing: 1px; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 12px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--walnut);
}

.product-price span {
  font-size: .8rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* ============================================
   FILTER SIDEBAR
   ============================================ */
.catalog-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 32px;
  align-items: start;
}

.filter-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky;
  top: 120px;
}

.filter-group {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group h5 {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--graphite);
  margin-bottom: 14px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .875rem;
  color: var(--graphite);
}

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.filter-option:hover { color: var(--terracotta); }

.filter-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.color-swatch:hover,
.color-swatch.active {
  border-color: var(--terracotta);
  transform: scale(1.15);
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-range input[type="range"] {
  accent-color: var(--terracotta);
  width: 100%;
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .9rem;
}

.compare-table th {
  background: var(--walnut);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--graphite);
  vertical-align: top;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light-gray); }
.compare-table tr:hover td { background: #FDF6EF; }

.compare-table .feature-label {
  font-weight: 600;
  color: var(--walnut);
  white-space: nowrap;
}

.compare-check { color: #22C55E; font-size: 1.1rem; }
.compare-cross { color: #EF4444; font-size: 1.1rem; }

/* ============================================
   GUIDES / ARTICLES
   ============================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--beige);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.article-card:hover .article-card-img img { transform: scale(1.05); }

.article-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--walnut);
}

.article-card-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: .78rem;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ============================================
   STATS / INFO BOXES
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat-box {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .85rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-text {
  font-style: italic;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: .95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--walnut);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author-info strong {
  display: block;
  font-size: .9rem;
  color: var(--walnut);
}

.testimonial-author-info span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ============================================
   INSPIRATION GALLERY
   ============================================ */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.insp-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insp-item:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.insp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  min-height: 220px;
}

.insp-item:hover img { transform: scale(1.05); }

.insp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(55,65,81,.6) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.insp-item:hover .insp-overlay { opacity: 1; }

.insp-overlay span {
  color: var(--white);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
}

/* ============================================
   FORM
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--graphite);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201,123,99,.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #166534;
  font-size: .9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.form-success.show { display: flex; }

/* ============================================
   INFO CARDS / FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--beige);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--terracotta);
}

.feature-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--walnut);
  transition: var(--transition);
}

.faq-question:hover { background: var(--light-gray); }
.faq-question.open { background: var(--beige); }

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   NEWSLETTER STRIP
   ============================================ */
.newsletter-strip {
  background: var(--walnut);
  padding: 56px 0;
}

.newsletter-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 { color: var(--beige); margin-bottom: 6px; }
.newsletter-text p { color: rgba(234,219,200,.7); font-size: .9rem; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  min-width: 280px;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,.22);
  border-color: var(--beige);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text { color: var(--beige); }
.footer-brand .logo-sub { color: rgba(234,219,200,.55); }

.footer-brand p {
  margin: 16px 0 20px;
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a:hover { color: var(--beige); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--beige);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

.footer-col ul a:hover { color: var(--beige); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--beige); }

/* ============================================
   BADGE TAGS
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
}

.tag--beige { background: var(--beige); color: var(--walnut); }
.tag--terracotta { background: var(--terracotta); color: var(--white); }
.tag--light { background: var(--light-gray); color: var(--graphite); border: 1px solid var(--border); }

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */
.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
}

.widget h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--beige);
  color: var(--walnut);
}

/* ============================================
   ALERT BOXES
   ============================================ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.alert--info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1D4ED8; }
.alert--success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.alert--warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-gray);
  aspect-ratio: 4/3;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumb.active, .thumb:hover { border-color: var(--terracotta); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.product-info-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--terracotta);
  font-weight: 700;
  margin: 16px 0;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .9rem;
}

.product-specs-table tr td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.product-specs-table tr td:first-child {
  font-weight: 600;
  color: var(--walnut);
  width: 40%;
  background: var(--light-gray);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--graphite);
  text-decoration: none;
  transition: var(--transition);
}

.page-link:hover, .page-link.active {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

/* ============================================
   TABS
   ============================================ */
.tabs {
  border-bottom: 2px solid var(--border);
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.tab-btn {
  padding: 12px 22px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab-btn:hover { color: var(--graphite); }
.tab-btn.active { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
}

.policy-content h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.policy-meta {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  color: var(--walnut);
}

.policy-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--graphite);
}

.policy-content p {
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--graphite);
}

.policy-content ul, .policy-content ol {
  padding-left: 22px;
  margin-bottom: 16px;
}

.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }

.policy-content li {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 6px;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .88rem;
}

.policy-content table th {
  background: var(--walnut);
  color: var(--white);
  padding: 11px 14px;
  text-align: left;
  font-size: .82rem;
}

.policy-content table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}

.policy-content table tr:nth-child(even) td { background: var(--light-gray); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 500;
  border: none;
  font-size: 1.2rem;
}

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

.back-to-top:hover {
  background: var(--walnut);
  transform: translateY(-3px);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graphite);
  color: rgba(255,255,255,.88);
  padding: 18px 24px;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .875rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}

.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--beige); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   RECENTLY VIEWED
   ============================================ */
.recently-viewed {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.recently-viewed::-webkit-scrollbar { height: 4px; }
.recently-viewed::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.recently-viewed::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 2px; }

.rv-card {
  flex-shrink: 0;
  width: 160px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition);
}

.rv-card:hover { box-shadow: var(--shadow-md); }
.rv-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.rv-card-body { padding: 10px 12px; }
.rv-card-body p { font-size: .78rem; color: var(--graphite); line-height: 1.4; }
.rv-card-body span { font-size: .82rem; font-weight: 600; color: var(--terracotta); }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex   { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ============================================
   STYLE PAGE
   ============================================ */
.style-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.style-section:last-of-type { border-bottom: none; }
.style-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 40px;
}
.style-layout--reverse { direction: rtl; }
.style-layout--reverse > * { direction: ltr; }
.style-img-col img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.style-list {
  padding-left: 20px;
  margin: 12px 0 24px;
  line-height: 1.8;
  color: var(--graphite);
}
.style-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.style-specs-table { margin-top: 32px; }
.style-specs-table h4 { margin-bottom: 16px; color: var(--graphite); }

/* ============================================
   MATERIAL PAGE
   ============================================ */
.material-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.material-section:last-of-type { border-bottom: none; }
.material-intro { font-size: 1.08rem; color: var(--graphite); max-width: 780px; margin-bottom: 32px; line-height: 1.7; }
.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.material-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.material-img img { width: 100%; height: 180px; object-fit: cover; }
.material-info { padding: 20px; }
.material-info h4 { margin-bottom: 8px; }
.material-badge {
  display: inline-block;
  background: var(--beige);
  color: var(--walnut);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mini-specs-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 0.85rem; }
.mini-specs-table td {
  padding: 5px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--graphite);
}
.mini-specs-table td:first-child { color: var(--text-light); }
.mini-specs-table th { background: var(--light-gray); padding: 6px 8px; text-align: left; font-size: 0.8rem; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.three-col-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

/* ============================================
   BRANDS PAGE
   ============================================ */
.brands-category-block { margin-bottom: 56px; }
.brands-category-block h3 { font-size: 1.35rem; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--terracotta); display: inline-block; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.brand-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.brand-card:hover { box-shadow: var(--shadow-md); }
.brand-logo-placeholder {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--beige);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--walnut);
  font-size: 1rem;
}
.brand-info h4 { margin-bottom: 6px; }
.brand-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.brand-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.brand-meta span { font-size: 0.78rem; color: var(--text-light); background: var(--light-gray); padding: 2px 8px; border-radius: 12px; }
.partner-cta-box {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-top: 40px;
}
.partner-cta-box h3 { margin-bottom: 12px; }
.partner-cta-box p { margin-bottom: 24px; color: var(--graphite); }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-col h3 { font-size: 1.1rem; margin-bottom: 16px; margin-top: 32px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.sitemap-col h3:first-child { margin-top: 0; }
.sitemap-list { list-style: none; padding: 0; margin: 0 0 8px; }
.sitemap-list li { padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sitemap-list a { color: var(--graphite); font-size: 0.9rem; }
.sitemap-list a:hover { color: var(--terracotta); }

/* ============================================
   GUIDE LAYOUT
   ============================================ */
.guide-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.guide-sidebar { position: sticky; top: 100px; }
.toc-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.toc-box h3 { margin-bottom: 16px; font-size: 1rem; }
.toc-list { padding-left: 18px; margin: 0; }
.toc-list li { padding: 4px 0; }
.toc-list a { color: var(--graphite); font-size: 0.88rem; }
.toc-list a:hover { color: var(--terracotta); }
.guide-sidebar-cta {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-sidebar-cta h4 { margin-bottom: 8px; font-size: 0.95rem; }
.guide-content h2 { font-size: 1.6rem; margin: 48px 0 16px; padding-top: 8px; border-top: 2px solid var(--beige); }
.guide-content h2:first-of-type { margin-top: 32px; border-top: none; }
.guide-content h3 { font-size: 1.25rem; margin: 32px 0 12px; }
.guide-content p { line-height: 1.75; margin-bottom: 16px; color: var(--graphite); }
.guide-hero-image { margin-bottom: 40px; border-radius: var(--radius); overflow: hidden; }
.guide-hero-image img { width: 100%; height: 420px; object-fit: cover; }
.guide-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 16px; font-size: 0.85rem; color: var(--text-light); }
.guide-tip-box {
  background: var(--beige);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.guide-tip-box h4 { margin-bottom: 12px; font-size: 1rem; }
.guide-tip-box ul { padding-left: 18px; line-height: 1.8; }
.guide-tip-box--info { background: var(--light-gray); border-left-color: var(--graphite); }
.guide-list { padding-left: 20px; line-height: 1.9; color: var(--graphite); }
.guide-cta-inline {
  margin: 48px 0 0;
  padding: 36px;
  background: var(--beige);
  border-radius: var(--radius);
  text-align: center;
}
.guide-cta-inline h3 { margin-bottom: 10px; }
.guide-cta-inline p { margin-bottom: 20px; color: var(--graphite); }
.page-hero-content--wide { max-width: 780px; }

/* ============================================
   INFO CARDS ROW
   ============================================ */
.info-cards-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.info-card-sm {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card-sm h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--walnut); }
.info-card-sm p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; }
  .insp-item:first-child { grid-row: auto; grid-column: auto; }
  .nav-categories { display: none; }
  .hamburger { display: flex; }
  .style-layout { grid-template-columns: 1fr; gap: 28px; }
  .style-layout--reverse { direction: ltr; }
  .two-col-grid { grid-template-columns: 1fr; }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-search { display: none; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 0; }
  .newsletter-strip .container { flex-direction: column; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: auto; flex: 1; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .nav-top-left { display: none; }
  .section { padding: 56px 0; }
  .three-col-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .material-grid { grid-template-columns: 1fr; }
  .info-cards-row { grid-template-columns: 1fr 1fr; }
  .guide-hero-image img { height: 260px; }
  .partner-cta-box { padding: 28px 20px; }
}
