/* Yes Appliances — Premium Canadian Retailer Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a5f;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(37, 99, 235, 0.14);
  --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1400px;
  --container-gutter: clamp(20px, 2.5vw, 36px);
  --nav-height: 88px;
  --logo-blue: #2563EB;
  --logo-charcoal: #2E2E2E;

  /* Spacing scale (8px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Layout rhythm */
  --section-padding: clamp(40px, 4.2vw, 58px);
  --section-padding-compact: clamp(28px, 3.2vw, 40px);
  --section-header-gap: clamp(20px, 2.4vw, 32px);
  --page-hero-padding: clamp(32px, 3.2vw, 44px);
  --grid-gap: 20px;
  --card-gap: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--blue-700); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 6px 28px rgba(0, 0, 0, 0.08);
}

.navbar--transparent {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar--transparent .logo-yes { color: #ffffff; }
.navbar--transparent .logo-appliances { color: rgba(255, 255, 255, 0.88); }
.navbar--transparent .logo-tagline { color: rgba(255, 255, 255, 0.62); }
.navbar--transparent .nav-links a { color: rgba(255, 255, 255, 0.85); }
.navbar--transparent .nav-links a:hover,
.navbar--transparent .nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.navbar--transparent .nav-phone {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.navbar--transparent .nav-phone:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.navbar--transparent .menu-toggle span { background: var(--white); }
.navbar--transparent.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 6px 28px rgba(0, 0, 0, 0.08);
}
.navbar--transparent.scrolled .logo-yes { color: var(--logo-blue); }
.navbar--transparent.scrolled .logo-appliances { color: var(--logo-charcoal); }
.navbar--transparent.scrolled .logo-tagline { color: var(--gray-500); }
.navbar--transparent.scrolled .nav-links a { color: var(--gray-600); }
.navbar--transparent.scrolled .nav-links a:hover,
.navbar--transparent.scrolled .nav-links a.active {
  color: var(--gray-900);
  background: rgba(0, 0, 0, 0.04);
}
.navbar--transparent.scrolled .nav-phone {
  background: var(--blue-50);
  color: var(--logo-blue);
  border-color: transparent;
}
.navbar--transparent.scrolled .menu-toggle span { background: var(--gray-800); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Manrope', 'Poppins', sans-serif;
  font-size: 1.73rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.logo-icon__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.logo-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.logo-yes {
  font-weight: 800;
  color: var(--logo-blue);
  letter-spacing: 0.05em;
}

.logo-appliances {
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.03em;
}

.logo-tagline {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.35;
  color: var(--gray-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--gray-600);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: 980px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gray-900);
  background: rgba(0, 0, 0, 0.04);
}

.nav-links a.active {
  color: var(--gray-900);
  font-weight: 600;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--logo-blue);
  background: rgba(15, 76, 222, 0.08);
  padding: 10px 18px;
  border-radius: 980px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-phone:hover {
  background: var(--logo-blue);
  color: var(--white);
  transform: scale(1.02);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero Banner ── */
.hero-banner {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-banner__bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/hero-showroom.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.68) 0%,
    rgba(30, 64, 175, 0.52) 45%,
    rgba(37, 99, 235, 0.38) 100%
  );
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-height) + 60px) 28px 80px;
  max-width: 820px;
  animation: heroFadeUp 1s ease forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 980px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-banner h1 {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.hero-banner__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 44px;
  line-height: 1.5;
}

.hero-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--blue-50);
  color: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-blue {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-blue:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: var(--white);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

/* ── Sections ── */
section { padding: var(--section-padding) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--section-header-gap);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Adjacent inner-page sections share rhythm */
section + section {
  padding-top: 0;
}

section + section.section-alt,
section.section-alt + section {
  padding-top: var(--section-padding);
}

@media (max-width: 768px) {
  section + section.section-alt,
  section.section-alt + section {
    padding-top: var(--space-12);
  }
}

.section-alt { background: var(--gray-50); }

/* ── Category Cards ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

a.category-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  opacity: 0;
  transition: opacity var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::before { opacity: 1; }
.category-card:hover .category-icon { background: rgba(255, 255, 255, 0.2); color: white; }
.category-card:hover .category-icon svg { stroke: white; }
.category-card:hover h3,
.category-card:hover p { color: white; position: relative; }

.category-icon {
  width: 72px;
  height: 72px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all var(--transition);
  position: relative;
}

.category-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--blue-600);
  fill: none;
  transition: stroke var(--transition);
}

.category-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  position: relative;
  transition: color var(--transition);
}

.category-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  position: relative;
  transition: color var(--transition);
}

/* ── Brand Cards ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

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

.brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.brand-card p {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-lg { color: #A50034; }
.brand-samsung { color: #1428A0; }
.brand-whirlpool { color: #FFB81C; text-shadow: 0 0 1px rgba(0,0,0,0.1); }
.brand-ge { color: #005CB9; }
.brand-frigidaire { color: #E31837; }
.brand-bosch { color: #E20015; }
.brand-kitchenaid { color: #C41230; }
.brand-maytag { color: #003087; }

/* Home page — clickable brand logo cards */
.brands-grid--home {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card--link {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.brand-card--link:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
  transform: scale(1.04);
}

.brand-card--link:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
}

.brand-card__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100px;
  max-height: 34px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.brand-card__logo--boost {
  max-width: 160px;
  max-height: 54px;
}

.brand-card__logo--boost-xl {
  max-width: 190px;
  max-height: 64px;
}

/* Home page — compact brands layout */
.brands-section--home {
  padding: var(--section-padding-compact) 0;
}

.brands-section--home .section-header {
  margin-bottom: var(--space-10);
}

.brands-section--home .brands-grid--home {
  grid-template-columns: repeat(5, 1fr);
  gap: 10px 12px;
}

.brands-section--home .brand-card--link {
  padding: 17px 14px;
  min-height: 72px;
  box-shadow: var(--shadow-xs);
}

.brands-section--home .brand-card--link:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
  transform: scale(1.04);
}

.brands-section--home .brand-card__logo,
.brands-section--home .brand-card__logo--boost,
.brands-section--home .brand-card__logo--boost-xl {
  max-width: 76px;
  max-height: 30px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.brands-section--home .brand-card__logo[alt="Maytag"],
.brands-section--home .brand-card__logo[alt="Midea"] {
  max-width: 112px;
  max-height: 44px;
}

.brands-section--home .brand-card__logo[alt="Samsung"],
.brands-section--home .brand-card__logo[alt="KitchenAid"],
.brands-section--home .brand-card__logo[alt="Frigidaire"],
.brands-section--home .brand-card__logo[alt="Fotile"] {
  max-width: 132px;
  max-height: 52px;
}

.brands-section--home .mt-48 {
  margin-top: var(--space-8);
}

/* ── Brand detail pages ── */
.brand-page-hero {
  padding: calc(var(--nav-height) + var(--page-hero-padding)) 0 var(--section-padding-compact);
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 60%, var(--blue-50) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.brand-page-hero .container {
  position: relative;
  z-index: 1;
}

.brand-page-hero__logo {
  width: auto;
  height: 64px;
  max-width: 220px;
  object-fit: contain;
  margin: 0 auto 28px;
  display: block;
}

.brand-page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.brand-page-hero p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.brand-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.brand-intro p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.brand-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 980px;
  transition: all var(--transition-fast);
}

.brand-tag:hover {
  border-color: var(--blue-300);
  color: var(--blue-700);
  background: var(--blue-50);
}

.brand-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.brand-product-placeholder {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.brand-product-placeholder:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.brand-product-placeholder__img {
  height: 180px;
  background: linear-gradient(145deg, var(--gray-50), var(--blue-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.brand-product-placeholder__body {
  padding: 24px;
}

.brand-product-placeholder__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.brand-product-placeholder__body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.brand-product-placeholder__body .placeholder-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.brand-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.brand-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
}

.brand-why-item__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-weight: 700;
}

.brand-why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.brand-why-item p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.brand-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  padding: var(--space-16) 0 var(--section-padding);
}

.brand-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.brand-card-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
}

.brand-card-links a:hover {
  color: var(--blue-800);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .brand-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-why-list { grid-template-columns: 1fr; }
  .brands-section--home .brands-grid--home { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .brands-grid--home { grid-template-columns: repeat(2, 1fr); }
  .brands-section--home .brands-grid--home { grid-template-columns: repeat(2, 1fr); }
  .brand-featured-grid { grid-template-columns: 1fr; }
  .brand-page-actions { flex-direction: column; align-items: center; }
  .brand-page-actions .btn { width: 100%; max-width: 300px; }
}

/* ── Google Reviews (Home) ── */
.reviews-stars {
  font-size: 1.375rem;
  letter-spacing: 0.15em;
  color: #f59e0b;
  margin-bottom: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.review-card__stars {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  line-height: 1;
}

.review-card__author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.review-card__text {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
}

.review-card__google-icon {
  flex-shrink: 0;
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.why-check {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Product cards (inner pages) ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-image {
  height: 180px;
  background: linear-gradient(145deg, var(--blue-50), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image svg {
  width: 56px;
  height: 56px;
  stroke: var(--blue-600);
}

.product-card-body { padding: 28px; }

.product-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.product-card-body p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
  max-width: 860px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.service-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.375rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.service-icon--brand {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  padding: 8px;
}

.service-icon__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── About ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray-500);
  margin-bottom: 18px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-item {
  background: var(--blue-50);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--blue-100);
}

.stat-item strong {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--blue-600);
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stat-item span {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.about-visual {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--radius-xl);
  padding: 52px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-visual h3 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.about-visual p {
  opacity: 0.92;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.value-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card .value-num {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--blue-200);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.value-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.contact-item-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 500;
}

.hours-table {
  width: auto;
  max-width: 100%;
  margin-top: 8px;
  border-collapse: collapse;
}
.hours-table tr td {
  padding: 7px 0;
  font-size: 0.9375rem;
  vertical-align: baseline;
}
.hours-table tr td:first-child {
  color: var(--gray-500);
  padding-right: 12px;
  white-space: nowrap;
}
.hours-table tr td:last-child {
  color: var(--gray-800);
  font-weight: 600;
  white-space: nowrap;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-xs);
}

.contact-form-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

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

.map-placeholder {
  margin-top: 56px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  height: 360px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + var(--page-hero-padding)) 0 var(--page-hero-padding);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1875rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-size: 1.125rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  position: relative;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--blue-700);
  position: relative;
}

.cta-banner .btn-primary:hover {
  background: var(--blue-50);
  color: var(--blue-800);
}

/* ── Footer ── */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand .logo { margin-bottom: 20px; font-size: 1.44rem; gap: 14px; }
.footer-brand .logo-icon { width: 56px; height: 56px; }
.footer-brand .logo-tagline { display: none; }
.footer-brand .logo-yes { color: #6ea3ff; }
.footer-brand .logo-appliances { color: rgba(255, 255, 255, 0.92); }

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-md);
}

.text-center { text-align: center; }
.mt-48 { margin-top: var(--space-12); }
.section-tight { padding-bottom: var(--section-padding); }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }
.fade-in:nth-child(7) { transition-delay: 0.48s; }
.fade-in:nth-child(8) { transition-delay: 0.56s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid,
  .brands-grid--home { grid-template-columns: repeat(3, 1fr); }
  .brands-section--home .brands-grid--home { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; gap: var(--space-12); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 80px; }

  .logo {
    font-size: 1.28rem;
    gap: 12px;
  }

  .logo-icon {
    width: 68px;
    height: 68px;
  }


  .logo-tagline {
    font-size: 0.5625rem;
    letter-spacing: 0.035em;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-bottom: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 14px;
    width: 100%;
    border-bottom: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    transition: color 0.25s ease, background-color 0.25s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(0, 0, 0, 0.04);
  }

  .nav-phone { display: none; }
  .menu-toggle { display: flex; }

  .hero-banner { min-height: 85vh; }
  .hero-banner h1 { font-size: clamp(2.25rem, 8vw, 3.25rem); }

  .categories-grid,
  .brands-grid,
  .brands-grid--home,
  .reviews-grid,
  .why-grid,
  .products-grid,
  .services-grid,
  .values-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-10); }

  section { padding: var(--space-12) 0; }
  .section-header { margin-bottom: var(--space-8); }

  .brands-section--home {
    padding: var(--space-10) 0;
  }

  .brands-section--home .section-header {
    margin-bottom: var(--space-8);
  }

  .brands-section--home .brands-grid--home {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 10px;
  }

  .cta-banner { padding: 52px 28px; }
  .about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-banner__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
}
/* ===== Hero Section Upgrade ===== */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;

  background:
      linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
      url("../images/hero-kitchen.jpg") center center/cover no-repeat;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  color: #f2f2f2;
}

.hero .btn {
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.hero .btn:hover {
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   Homepage — Mockup Design (page-home)
   ══════════════════════════════════════════ */
.page-home {
  --royal-blue: #2563EB;
  --royal-blue-dark: #1d4ed8;
  --dark-text: #111827;
  --light-gray: #F8FAFC;
  font-size: 18px;
  color: var(--gray-600);
}

.page-home .nav-links a.active {
  background: rgba(37, 99, 235, 0.12);
  color: var(--royal-blue);
  font-weight: 600;
}

.page-home .logo {
  font-size: 1.5rem;
  gap: 14px;
}

.page-home .navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.page-home .logo {
  justify-self: start;
}

.page-home .nav-links {
  justify-self: center;
  gap: 28px;
}

.page-home .nav-phone {
  justify-self: end;
  background: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: var(--royal-blue);
}

.page-home .nav-phone:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

/* Hero — full-bleed luxury kitchen, text on image */
.mockup-hero {
  position: relative;
  height: 720px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--gray-900);
}

.mockup-hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/hero-kitchen.jpg') 82% center / cover no-repeat;
}

.mockup-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 18%,
    rgba(255, 255, 255, 0.72) 32%,
    rgba(255, 255, 255, 0.35) 46%,
    rgba(255, 255, 255, 0.08) 58%,
    transparent 68%
  );
  pointer-events: none;
}

.mockup-hero__main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.mockup-hero__inner {
  width: 100%;
  padding: 0 var(--container-gutter);
}

.mockup-hero__content {
  max-width: 580px;
}

.mockup-hero__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 18px;
}

.mockup-hero__content h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 22px;
}

.mockup-hero__title-main {
  display: block;
  color: var(--dark-text);
}

.mockup-hero__title-accent {
  display: block;
  color: var(--royal-blue);
}

.mockup-hero__sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.375rem);
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.5;
  max-width: 480px;
}

.mockup-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mockup-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--royal-blue);
  border: 1.5px solid var(--royal-blue);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 980px;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.05);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mockup-btn-outline:hover {
  background: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.page-home .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--royal-blue);
  color: var(--white);
  border-radius: 980px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .btn-primary:hover {
  background: var(--royal-blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.38);
}

/* Trust bar — inline below hero buttons */
.mockup-trust__grid--hero {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 36px;
  row-gap: 12px;
  list-style: none;
  margin-top: 28px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  max-width: 720px;
}

.mockup-trust__grid--hero .mockup-trust__item:nth-child(1) { grid-column: 1; grid-row: 1; }
.mockup-trust__grid--hero .mockup-trust__item:nth-child(2) { grid-column: 2; grid-row: 1; }
.mockup-trust__grid--hero .mockup-trust__item:nth-child(3) { grid-column: 1; grid-row: 2; }
.mockup-trust__grid--hero .mockup-trust__item:nth-child(4) { grid-column: 2; grid-row: 2; }

.mockup-trust__grid--hero .mockup-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-text);
  white-space: nowrap;
}

/* Trust badges standalone (legacy) */
.mockup-trust {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}

.mockup-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mockup-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
}

.mockup-trust__icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-trust__icon svg {
  display: block;
}

/* Sections */
.mockup-section {
  padding: 68px 0;
}

.page-home .mockup-section + .mockup-section {
  padding-top: 0;
}

/* Homepage section rhythm — compact premium spacing */
.page-home .mockup-brands {
  padding-top: 34px;
  padding-bottom: 41px;
}

.page-home .mockup-why.section-alt {
  background: var(--light-gray);
  padding-top: 41px;
  padding-bottom: 44px;
}

.page-home .mockup-reviews {
  padding-bottom: clamp(40px, 4.5vw, 52px);
}

.page-home .mockup-footer {
  padding-top: clamp(48px, 5vw, 64px);
}

.mockup-section__header {
  text-align: center;
  margin-bottom: 36px;
}

.mockup-section__label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 10px;
}

.mockup-section__header h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark-text);
}

/* Brands grid */
.mockup-brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mockup-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 124px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mockup-brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
  color: inherit;
}

.mockup-brand-card__logo {
  max-width: 110px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.mockup-brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--royal-blue);
}

.mockup-brand-card__link svg {
  flex-shrink: 0;
}

.mockup-brands__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 1rem;
  color: var(--gray-500);
}

.mockup-brands__note span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Why Choose */
.mockup-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mockup-why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.mockup-why-card__icon {
  width: auto;
  height: auto;
  margin: 0 auto 14px;
  border-radius: 0;
  background: none;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-why-card__icon svg {
  display: block;
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.mockup-why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.mockup-why-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Reviews */
.mockup-reviews__header {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.mockup-reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.mockup-reviews__score-text h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  text-align: left;
}

.mockup-reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-reviews__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1;
}

.mockup-reviews__stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.mockup-reviews__score p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  text-align: left;
}

.mockup-reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.mockup-reviews__track::-webkit-scrollbar {
  display: none;
}

.mockup-review-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mockup-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mockup-review-card__stars {
  color: #f59e0b;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.mockup-review-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}

.mockup-review-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.mockup-review-card__meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-review-card__meta strong {
  color: var(--gray-900);
}

.mockup-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.page-home .mt-48 {
  margin-top: var(--space-8);
}

.mockup-reviews__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: background 0.25s ease, transform 0.25s ease;
}

.mockup-reviews__dots span.active {
  background: var(--royal-blue);
  transform: scale(1.25);
  width: 10px;
  height: 10px;
}

.page-home .btn-blue {
  background: var(--royal-blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.page-home .btn-blue:hover {
  background: var(--royal-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

/* CTA Banner */
.mockup-cta-section {
  padding: clamp(56px, 6vw, 88px) 0;
}

.mockup-cta-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--container-gutter);
}

.mockup-cta {
  background: linear-gradient(
    135deg,
    #1e40af 0%,
    #2563eb 38%,
    #3b82f6 72%,
    #60a5fa 100%
  );
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px rgba(37, 99, 235, 0.18),
    0 32px 64px rgba(30, 58, 138, 0.12);
}

.mockup-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mockup-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 36vw, 420px);
  padding: clamp(64px, 8vw, 96px) clamp(32px, 5vw, 64px);
}

.mockup-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 760px;
  width: 100%;
  color: var(--white);
}

.mockup-cta__content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}

.mockup-cta__content > p:not(.mockup-cta__brands) {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 clamp(36px, 4vw, 48px);
  max-width: 560px;
  opacity: 0.95;
}

.mockup-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  color: var(--royal-blue);
  font-weight: 700;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  padding: clamp(16px, 2vw, 20px) clamp(36px, 4vw, 48px);
  min-height: 60px;
  min-width: min(100%, 320px);
  border-radius: 980px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.mockup-cta__btn svg {
  flex-shrink: 0;
}

.mockup-cta__btn:hover {
  color: var(--royal-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.2);
}

.mockup-cta__brands {
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  opacity: 0.82;
  max-width: 640px;
}

/* Footer */
.mockup-footer {
  background: var(--light-gray);
  border-top: 1px solid var(--gray-200);
  padding: clamp(48px, 5vw, 64px) 0 0;
}

.mockup-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
}

.mockup-footer__col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--royal-blue);
  margin-bottom: 14px;
}

.mockup-footer__col p,
.mockup-footer__col li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.mockup-footer__col ul li {
  margin-bottom: 6px;
}

.mockup-footer__col a {
  color: var(--gray-700);
}

.mockup-footer__col a:hover {
  color: var(--royal-blue);
}

.mockup-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--royal-blue) !important;
}

.mockup-footer__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.mockup-footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

.mockup-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 0.875rem;
  color: var(--gray-500);
}

.mockup-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mockup-footer__nav a {
  color: var(--gray-600);
  font-weight: 500;
}

.mockup-footer__nav a:hover {
  color: var(--royal-blue);
}

.mockup-reviews__google {
  flex-shrink: 0;
}

.mockup-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mockup-footer__contact-icon {
  flex-shrink: 0;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  margin-top: 2px;
}

.mockup-footer__social {
  display: flex;
  gap: 10px;
}

.mockup-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--royal-blue);
  font-weight: 800;
  font-size: 0.875rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mockup-footer__social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mockup-footer__social a[aria-label="Facebook"] {
  color: #1877F2;
}

.mockup-footer__social a[aria-label="Instagram"] {
  color: #E4405F;
}

.mockup-footer__social a[aria-label="Google"] {
  color: #4285F4;
}

@media (min-width: 1200px) {
  .mockup-hero__content h1 {
    font-size: 4.5rem;
  }

  .mockup-hero__sub {
    font-size: 1.375rem;
  }
}

@media (max-width: 1024px) {
  .mockup-hero {
    height: auto;
    min-height: 640px;
  }

  .mockup-hero__bg {
    background-position: 75% center;
  }

  .mockup-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.9) 35%,
      rgba(255, 255, 255, 0.5) 55%,
      transparent 80%
    );
  }

  .mockup-trust__grid--hero {
    gap: 16px 24px;
  }

  .mockup-trust__grid,
  .mockup-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mockup-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mockup-footer__map {
    grid-column: span 2;
  }

  .mockup-cta__inner {
    padding: 56px 28px;
  }

  .mockup-cta__brands {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .page-home .navbar .container {
    display: flex;
    justify-content: space-between;
  }

  .page-home .nav-links {
    justify-self: auto;
  }

  .page-home .nav-phone {
    justify-self: auto;
  }

  .mockup-hero {
    height: auto;
    min-height: auto;
  }

  .mockup-hero__bg {
    background-position: center center;
  }

  .mockup-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.65) 75%,
      rgba(15, 23, 42, 0.12) 100%
    );
  }

  .mockup-hero__inner {
    padding: 32px var(--container-gutter) 40px;
  }

  .mockup-hero__content {
    max-width: 100%;
  }

  .mockup-hero__actions {
    flex-direction: column;
  }

  .mockup-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .mockup-trust__grid--hero {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 14px;
    margin-top: 28px;
  }

  .mockup-trust__grid--hero .mockup-trust__item {
    white-space: normal;
    font-size: 0.8125rem;
  }

  .mockup-cta__inner {
    padding: 48px 20px;
  }

  .mockup-cta__btn {
    width: 100%;
  }

  .page-home .mockup-why.section-alt {
    padding-top: 29px;
    padding-bottom: 31px;
  }

  .page-home .mockup-brands {
    padding-top: 24px;
    padding-bottom: 29px;
  }

  .page-home .mockup-reviews {
    padding-bottom: clamp(32px, 5vw, 40px);
  }

  .page-home .mockup-footer {
    padding-top: clamp(40px, 5vw, 52px);
  }

  .mockup-section {
    padding: 48px 0;
  }

  .mockup-why__grid,
  .mockup-brands__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mockup-section {
    padding: 48px 0;
  }

  .page-home .mockup-section + .mockup-section {
    padding-top: 0;
  }

  .mockup-reviews__score {
    flex-direction: column;
    text-align: center;
  }

  .mockup-reviews__score-text h2,
  .mockup-reviews__score p {
    text-align: center;
  }

  .mockup-reviews__rating {
    justify-content: center;
  }

  .mockup-footer__grid {
    grid-template-columns: 1fr;
  }

  .mockup-footer__map {
    grid-column: span 1;
  }

  .mockup-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   Corporate / Showroom Styles
   ══════════════════════════════════════════ */
.category-card--info,
.home-category-card--info {
  cursor: default;
  text-decoration: none;
}

.category-card--info::before {
  display: none;
}

.category-card--info:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 94, 255, 0.18);
}

.category-card--info:hover h3,
.category-card--info:hover p {
  color: var(--gray-900);
}

.category-card--info:hover .category-icon {
  background: rgba(30, 94, 255, 0.08);
}

.category-card--info:hover .category-icon svg {
  stroke: var(--blue-600);
}

.corporate-categories {
  gap: var(--grid-gap);
}

.corporate-categories .category-icon--photo {
  width: 180px;
  height: 180px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 10px;
  overflow: hidden;
}

.corporate-categories .category-icon__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.category-card--info:hover .category-icon--photo {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.22);
}

.corporate-notice {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.corporate-notice h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.corporate-notice p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.cta-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

.page-home .home-category-card__tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal-blue);
  background: rgba(30, 94, 255, 0.08);
  border-radius: 980px;
}

.page-home .home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.page-home .home-service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.page-home .home-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 94, 255, 0.2);
}

.page-home .home-service-card__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1;
}

.page-home .home-service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.page-home .home-service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.page-home .home-contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.page-home .home-contact-cta__btn-outline {
  display: inline-flex;
  background: transparent;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 980px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.page-home .home-contact-cta__btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 768px) {
  .page-home .home-services-grid {
    grid-template-columns: 1fr;
  }

  .corporate-notice {
    padding: 36px 24px;
  }

  .page-products section + section.section-alt,
  .page-products section.section-alt + section {
    padding-top: 34px;
  }
}

/* ══════════════════════════════════════════
   Products Page — mockup layout
   ══════════════════════════════════════════ */
.page-products, .site-premium {
  --products-navy: #0b1a2e;
  --products-navy-mid: #122640;
  --products-gold: #c5a059;
  --products-gold-hover: #d4b06a;
  --products-topbar-h: 36px;
  --products-nav-h: 72px;
  --products-header-h: calc(var(--products-topbar-h) + var(--products-nav-h));
  background: var(--white);
}

.page-products .navbar,
.site-premium .navbar {
  display: none;
}

.page-products .products-topbar,
.site-premium .products-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--products-topbar-h);
  background: var(--products-navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}

.page-products .products-topbar__inner,
.site-premium .products-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.page-products .products-topbar__tagline,
.site-premium .products-topbar__tagline {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-products .products-topbar__right,
.site-premium .products-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.page-products .products-topbar__phone,
.site-premium .products-topbar__phone {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
}

.page-products .products-topbar__phone:hover,
.site-premium .products-topbar__phone:hover {
  color: var(--white);
}

.page-products .products-topbar__lang,
.site-premium .products-topbar__lang {
  white-space: nowrap;
}

.page-products .products-topbar__lang-active,
.site-premium .products-topbar__lang-active {
  color: var(--white);
  font-weight: 600;
}

.page-products .products-topbar__lang a,
.site-premium .products-topbar__lang a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.page-products .products-topbar__lang a:hover,
.site-premium .products-topbar__lang a:hover {
  color: var(--white);
}

.page-products .products-navbar,
.site-premium .products-navbar {
  position: fixed;
  top: var(--products-topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--products-nav-h);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 26, 46, 0.06);
}

.page-products .products-navbar__inner,
.site-premium .products-navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.page-products .products-navbar__logo,
.site-premium .products-navbar__logo {
  justify-self: start;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--products-navy);
  text-decoration: none;
  white-space: nowrap;
}

.page-products .products-navbar__links,
.site-premium .products-navbar__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}

.page-products .products-navbar__links a,
.site-premium .products-navbar__links a {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--products-navy);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-products .products-navbar__links a:hover,
.site-premium .products-navbar__links a:hover,
.page-products .products-navbar__links a.active,
.site-premium .products-navbar__links a.active {
  color: var(--products-navy);
  border-bottom-color: var(--products-gold);
}

.page-products .products-navbar__cta,
.site-premium .products-navbar__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--products-navy);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.page-products .products-navbar__cta:hover,
.site-premium .products-navbar__cta:hover {
  background: var(--products-navy-mid);
}

.page-products .products-navbar__toggle,
.site-premium .products-navbar__toggle {
  display: none;
}

.page-products .products-hero,
.site-premium .products-hero {
  position: relative;
  min-height: clamp(360px, 40vw, 460px);
  display: flex;
  align-items: center;
  padding: calc(var(--products-header-h) + 36px) 0 40px;
  overflow: hidden;
  background: var(--products-navy);
}

.page-products .products-hero__bg,
.site-premium .products-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-kitchen.jpg') center center / cover no-repeat;
}

.page-products .products-hero__overlay,
.site-premium .products-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 26, 46, 0.92) 0%,
    rgba(11, 26, 46, 0.78) 42%,
    rgba(11, 26, 46, 0.45) 68%,
    rgba(11, 26, 46, 0.2) 100%
  );
}

.page-products .products-hero__inner,
.site-premium .products-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--white);
}

.page-products .products-hero h1,
.site-premium .products-hero h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0 0 14px;
}

.page-products .products-hero__sub,
.site-premium .products-hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  margin: 0 0 22px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
}

.page-products .products-hero__actions,
.site-premium .products-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.page-products .products-hero__btn,
.site-premium .products-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--products-gold);
  color: var(--products-navy);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}

.page-products .products-hero__btn:hover,
.site-premium .products-hero__btn:hover {
  background: var(--products-gold-hover);
}

.page-products .products-hero__values,
.site-premium .products-hero__values {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.page-products .products-hero__values li,
.site-premium .products-hero__values li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-products .products-hero__value-icon,
.site-premium .products-hero__value-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
}

.page-products .products-hero__value-text,
.site-premium .products-hero__value-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-products .products-hero__value-text strong,
.site-premium .products-hero__value-text strong {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-products .products-hero__value-text span,
.site-premium .products-hero__value-text span {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.page-products .products-categories,
.site-premium .products-categories {
  padding: clamp(40px, 4.5vw, 52px) 0 clamp(28px, 3vw, 38px);
  background: var(--white);
}

.page-products .products-categories__header,
.site-premium .products-categories__header {
  text-align: center;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}

.page-products .products-categories__header h2,
.site-premium .products-categories__header h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 12px;
}

.page-products .products-categories__rule,
.site-premium .products-categories__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto;
  background: var(--products-gold);
  border-radius: 2px;
}

.page-products .products-categories__grid,
.site-premium .products-categories__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 1.8vw, 22px);
}

.page-products .products-category-card,
.site-premium .products-category-card {
  grid-column: span 3;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .products-category-card:hover,
.site-premium .products-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.page-products .products-category-card--row2:nth-child(5),
.site-premium .products-category-card--row2:nth-child(5) { grid-column: 2 / span 3; }
.page-products .products-category-card--row2:nth-child(6),
.site-premium .products-category-card--row2:nth-child(6) { grid-column: 5 / span 3; }
.page-products .products-category-card--row2:nth-child(7),
.site-premium .products-category-card--row2:nth-child(7) { grid-column: 8 / span 3; }

.page-products .products-category-card__photo,
.site-premium .products-category-card__photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--gray-100);
}

.page-products .products-category-card__photo img,
.site-premium .products-category-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-products .products-category-card__photo--fit,
.site-premium .products-category-card__photo--fit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef1ee;
  padding: 8px 10px;
}

.page-products .products-category-card__photo--fit img,
.site-premium .products-category-card__photo--fit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.page-products .products-category-card__badge,
.site-premium .products-category-card__badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: -26px auto 0;
  background: var(--products-navy);
  color: var(--white);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(11, 26, 46, 0.15);
}

.page-products .products-category-card__body,
.site-premium .products-category-card__body {
  padding: 18px 20px 22px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-products .products-category-card__body h3,
.site-premium .products-category-card__body h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 8px;
}

.page-products .products-category-card__types,
.site-premium .products-category-card__types {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 0 0 14px;
}

.page-products .products-category-card__brands-label,
.site-premium .products-category-card__brands-label {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 8px;
}

.page-products .products-category-card__logos,
.site-premium .products-category-card__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  margin-bottom: 16px;
  min-height: 28px;
}

.page-products .products-category-card__logos img,
.site-premium .products-category-card__logos img {
  height: 18px;
  width: auto;
  max-width: 48px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
}

.page-products .products-category-card__btn,
.site-premium .products-category-card__btn {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--products-navy);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}

.page-products .products-category-card__btn:hover,
.site-premium .products-category-card__btn:hover {
  background: var(--products-navy-mid);
}

/* Products page — premium refinements */
.page-products .products-hero {
  min-height: clamp(360px, 34vw, 440px);
  padding: calc(var(--products-header-h) + 28px) 0 32px;
}

.page-products .products-hero__bg {
  background-image: url('../images/products-hero-kitchen.png');
  background-position: center 35%;
}

.page-products .products-hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(11, 26, 46, 0.84) 0%,
    rgba(11, 26, 46, 0.64) 40%,
    rgba(11, 26, 46, 0.34) 66%,
    rgba(11, 26, 46, 0.14) 100%
  );
}

.page-products .products-hero h1 {
  text-shadow: 0 2px 20px rgba(11, 26, 46, 0.4);
}

.page-products .products-hero__sub {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 14px rgba(11, 26, 46, 0.35);
}

.page-products .products-hero__value-text strong {
  text-shadow: 0 1px 10px rgba(11, 26, 46, 0.3);
}

.page-products .products-hero__value-text span {
  color: rgba(255, 255, 255, 0.88);
}

.page-products .products-categories {
  padding: clamp(32px, 3.5vw, 44px) 0 clamp(24px, 2.8vw, 32px);
}

.page-products .products-categories__header {
  margin-bottom: clamp(20px, 2.4vw, 28px);
}

.page-products .products-category-card {
  height: 500px;
}

.page-products .products-category-card__photo {
  height: 295px;
  flex: 0 0 295px;
  background: var(--gray-100);
}

.page-products .products-category-card__photo--fit {
  padding: 0;
  display: block;
  background: var(--gray-100);
}

.page-products .products-category-card__photo img,
.page-products .products-category-card__photo--fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-products .products-category-card__body {
  padding: 6px 14px 12px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.page-products .products-category-card__body h3 {
  margin: 0 0 3px;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.page-products .products-category-card__types {
  margin: 0 0 4px;
  line-height: 1.35;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products .products-category-card__brands-label {
  display: none;
}

.page-products .products-category-card__logos {
  gap: 10px 14px;
  margin: 0 0 8px;
  min-height: 52px;
  flex: 1;
  align-content: center;
  justify-content: center;
}

.page-products .products-category-card__logos img {
  height: 24px;
  max-width: 64px;
}

.page-products .products-category-card__btn {
  padding: 15px 32px;
  margin-top: auto;
  align-self: stretch;
}

.page-products .products-info-bar {
  padding: 0 0 clamp(24px, 2.8vw, 32px);
}

.page-products .products-help-cta {
  padding: clamp(28px, 3.2vw, 40px) 0;
}

.page-products .products-services {
  padding: clamp(28px, 3.2vw, 40px) 0 clamp(18px, 2.4vw, 26px);
}

.page-products .products-services__brand {
  margin-top: clamp(22px, 2.6vw, 28px);
  padding-top: clamp(18px, 2.2vw, 24px);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.page-products .products-services__logo {
  display: inline-block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--products-navy);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-products .products-services__logo:hover {
  opacity: 0.82;
}

.page-products .products-info-bar,
.site-premium .products-info-bar {
  padding: 0 0 clamp(40px, 4vw, 56px);
  background: var(--white);
}

.page-products .products-info-bar__inner,
.site-premium .products-info-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--gray-100);
  border-radius: 8px;
  color: var(--gray-600);
}

.page-products .products-info-bar__inner svg,
.site-premium .products-info-bar__inner svg {
  flex-shrink: 0;
  color: var(--blue-600);
}

.page-products .products-info-bar__inner p,
.site-premium .products-info-bar__inner p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.page-products .products-help-cta,
.site-premium .products-help-cta {
  position: relative;
  padding: clamp(36px, 4.2vw, 48px) 0;
  overflow: hidden;
  background: var(--products-navy);
}

.page-products .products-help-cta__bg,
.site-premium .products-help-cta__bg {
  position: absolute;
  inset: 0;
  background: url('../images/brands/explore/showroom.png') center center / cover no-repeat;
}

.page-products .products-help-cta__overlay,
.site-premium .products-help-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 46, 0.88);
}

.page-products .products-help-cta__inner,
.site-premium .products-help-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
}

.page-products .products-help-cta__content,
.site-premium .products-help-cta__content {
  max-width: 560px;
}

.page-products .products-help-cta__content h2,
.site-premium .products-help-cta__content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 12px;
}

.page-products .products-help-cta__content p,
.site-premium .products-help-cta__content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.page-products .products-help-cta__actions,
.site-premium .products-help-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.page-products .products-help-cta__btn,
.site-premium .products-help-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-products .products-help-cta__btn--gold,
.site-premium .products-help-cta__btn--gold {
  background: var(--products-gold);
  color: var(--products-navy);
}

.page-products .products-help-cta__btn--gold:hover,
.site-premium .products-help-cta__btn--gold:hover {
  background: var(--products-gold-hover);
}

.page-products .products-help-cta__btn--outline,
.site-premium .products-help-cta__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.page-products .products-help-cta__btn--outline:hover,
.site-premium .products-help-cta__btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.page-products .products-services,
.site-premium .products-services {
  padding: clamp(36px, 4.2vw, 48px) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.page-products .products-services__grid,
.site-premium .products-services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.page-products .products-services__item,
.site-premium .products-services__item {
  text-align: center;
}

.page-products .products-services__icon,
.site-premium .products-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--products-navy);
}

.page-products .products-services__item h3,
.site-premium .products-services__item h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 8px;
}

.page-products .products-services__item p,
.site-premium .products-services__item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-500);
}

@media (max-width: 1100px) {
  .page-products .products-categories__grid,
  .site-premium .products-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .products-category-card,
  .site-premium .products-category-card,
  .page-products .products-category-card--row2:nth-child(5),
  .site-premium .products-category-card--row2:nth-child(5),
  .page-products .products-category-card--row2:nth-child(6),
  .site-premium .products-category-card--row2:nth-child(6),
  .page-products .products-category-card--row2:nth-child(7),
  .site-premium .products-category-card--row2:nth-child(7) {
    grid-column: auto;
  }

  .page-products .products-category-card {
    height: auto;
    min-height: 460px;
  }

  .page-products .products-category-card__photo {
    height: clamp(220px, 38vw, 310px);
    flex: 0 0 auto;
  }

  .page-products .products-category-card__types {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .page-products .products-topbar__tagline,
  .site-premium .products-topbar__tagline {
    display: none;
  }

  .page-products .products-hero__values,
  .site-premium .products-hero__values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-products .products-help-cta__inner,
  .site-premium .products-help-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-products .products-help-cta__actions,
  .site-premium .products-help-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .page-products .products-services__grid,
  .site-premium .products-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-products .products-navbar__inner,
  .site-premium .products-navbar__inner {
    grid-template-columns: 1fr auto;
  }

  .page-products .products-navbar__links,
  .site-premium .products-navbar__links {
    display: none;
    position: fixed;
    top: var(--products-header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(11, 26, 46, 0.1);
    gap: 0;
  }

  .page-products .products-navbar__links.open,
  .site-premium .products-navbar__links.open {
    display: flex;
  }

  .page-products .products-navbar__links a,
  .site-premium .products-navbar__links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .page-products .products-navbar__cta,
  .site-premium .products-navbar__cta {
    display: none;
  }

  .page-products .products-navbar__toggle,
  .site-premium .products-navbar__toggle {
    display: flex;
    justify-self: end;
  }

  .page-products .products-navbar__toggle span,
  .site-premium .products-navbar__toggle span {
    background: var(--products-navy);
  }
}

@media (max-width: 640px) {
  .page-products .products-categories__grid,
  .site-premium .products-categories__grid {
    grid-template-columns: 1fr;
  }

  .page-products .products-services__grid,
  .site-premium .products-services__grid {
    grid-template-columns: 1fr;
  }

  .page-products .products-help-cta__actions,
  .site-premium .products-help-cta__actions {
    flex-direction: column;
  }

  .page-products .products-help-cta__btn,
  .site-premium .products-help-cta__btn {
    width: 100%;
  }
}

/* ══════════════════════════════════════════
   Brands Page (page-brands)
   ══════════════════════════════════════════ */
.page-brands {
  --brands-section-padding: clamp(36px, 4.2vw, 52px);
  --brands-label-color: var(--products-gold);
}

.page-brands .products-hero__bg {
  background-image: url('../images/brands-hero-range.png?v=1');
  background-position: center 45%;
}

.page-brands .brands-section__label {
  color: var(--products-navy);
}

/* Hero — dark overlay, left-aligned white text */
.page-brands .brands-hero {
  position: relative;
  min-height: clamp(420px, 52vw, 560px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--gray-900);
}

.page-brands .brands-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-kitchen.jpg') center center / cover no-repeat;
}

.page-brands .brands-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.72) 40%,
    rgba(15, 23, 42, 0.45) 65%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}

.page-brands .brands-hero__main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
}

.page-brands .brands-hero__inner {
  width: 100%;
  padding: clamp(48px, 6vw, 80px) var(--container-gutter);
}

.page-brands .brands-hero__content {
  max-width: 620px;
}

.page-brands .brands-hero__label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.page-brands .brands-hero__content h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

.page-brands .brands-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 540px;
}

.page-brands .brands-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 980px;
  border: none;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.page-brands .brands-hero__cta:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
  color: var(--white);
}

.page-brands .brands-hero__cta svg {
  flex-shrink: 0;
}

/* Section labels */
.page-brands .brands-section__label {
  display: block;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brands-label-color);
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.page-brands .brands-section__label--left {
  text-align: left;
  margin-bottom: 14px;
}

/* Brands We Carry — horizontal logo row */
.page-brands .brands-carry {
  padding: clamp(20px, 2.5vw, 28px) 0;
}

.page-brands .brands-carry .brands-section__label {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.page-brands .brands-carry__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
}

.page-brands .brands-carry__logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 64px;
  max-width: 148px;
  padding: 0;
  overflow: visible;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.page-brands .brands-carry__logo:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.page-brands .brands-carry__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Optical sizing — tuned per brand within identical 148×64px cells */
.page-brands .brands-carry__logo--samsung img {
  max-height: 58px;
  max-width: 128px;
}

.page-brands .brands-carry__logo--lg img {
  max-height: 48px;
  max-width: 95px;
}

.page-brands .brands-carry__logo--whirlpool img {
  max-height: 40px;
  max-width: 142px;
}

.page-brands .brands-carry__logo--ge img {
  max-height: 56px;
  max-width: 120px;
}

.page-brands .brands-carry__logo--kitchenaid img {
  max-height: 36px;
  max-width: 125px;
}

.page-brands .brands-carry__logo--frigidaire img {
  max-height: 46px;
  max-width: 142px;
}

.page-brands .brands-carry__logo--maytag img {
  max-height: 54px;
  max-width: 128px;
}

.page-brands .brands-carry__logo--fotile img {
  max-height: 56px;
  max-width: 138px;
}

.page-brands .brands-carry__logo--midea img {
  max-height: 54px;
  max-width: 120px;
}

@media (min-width: 1400px) {
  .page-brands .brands-carry__row {
    flex-wrap: nowrap;
  }
}

.page-brands .site-brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  height: 40px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.page-brands .site-brand-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: none;
  transform-origin: center;
}

.page-brands .site-brand-card__logo--fotile img {
  max-height: 100%;
  max-width: 48px;
}

.page-brand-detail .brand-detail-hero__logo[alt="FOTILE"] {
  height: 40px;
  max-width: 100px;
  width: auto;
}

/* Explore Our Brands — card grid */
.page-brands .brands-explore {
  padding: 0 0 var(--brands-section-padding);
}

.page-brands .brands-explore__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--grid-gap);
}

.page-brands .brands-explore__grid .brands-card {
  flex: 0 0 calc((100% - 4 * var(--grid-gap)) / 5);
  max-width: calc((100% - 4 * var(--grid-gap)) / 5);
}

.page-brands .brands-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.page-brands .brands-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.18);
}

.page-brands .brands-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 18px;
  min-height: 88px;
}

.page-brands .brands-card__logo {
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-brands .brands-card__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.page-brands .brands-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-brands .brands-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}

.page-brands .brands-card__body p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.page-brands .brands-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap 0.2s ease, color 0.2s ease;
}

.page-brands .brands-card__link:hover {
  color: var(--blue-800);
  gap: 10px;
}

/* Why Buy section */
.page-brands .brands-why {
  padding: var(--brands-section-padding) 0;
  background: var(--gray-100);
}

.page-brands .brands-why__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
}

.page-brands .brands-why__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.page-brands .brands-why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-brands .brands-why__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-brands .brands-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}

.page-brands .brands-why__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.page-brands .brands-why__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-sm);
  color: var(--blue-600);
}

.page-brands .brands-why__feature h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.page-brands .brands-why__feature p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* CTA banner — full-width edge to edge */
.page-brands .brands-cta-section {
  padding: 0;
}

.page-brands .brands-cta {
  background: var(--blue-600);
  width: 100%;
}

.page-brands .brands-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  min-height: clamp(140px, 16vw, 180px);
  padding: clamp(40px, 5vw, 56px) var(--container-gutter);
}

.page-brands .brands-cta__content {
  flex: 1;
  min-width: 0;
  color: var(--white);
  text-align: left;
}

.page-brands .brands-cta__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.page-brands .brands-cta__content > p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.92;
  max-width: 520px;
}

.page-brands .brands-cta__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
}

.page-brands .brands-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  padding: clamp(14px, 1.8vw, 18px) clamp(28px, 3.5vw, 40px);
  min-height: 56px;
  border-radius: 980px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}

.page-brands .brands-cta__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-brands .brands-cta__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
  color: var(--white);
}

.page-brands .brands-cta__btn--white {
  background: var(--white);
  color: var(--blue-600);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.14);
}

.page-brands .brands-cta__btn--white:hover {
  color: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.2);
}

.page-brands .brands-cta__btn svg {
  flex-shrink: 0;
}

/* Footer */
.page-brands .brands-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(48px, 5vw, 64px) 0 0;
}

.page-brands .brands-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(28px, 3vw, 40px);
  padding-bottom: clamp(32px, 4vw, 48px);
}

.page-brands .brands-footer__logo {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.page-brands .brands-footer__logo .logo-yes {
  color: #6ea3ff;
}

.page-brands .brands-footer__logo .logo-appliances {
  color: rgba(255, 255, 255, 0.92);
}

.page-brands .brands-footer__logo .logo-tagline {
  display: none;
}

.page-brands .brands-footer__col p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.page-brands .brands-footer__col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 14px;
}

.page-brands .brands-footer__hours,
.page-brands .brands-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-brands .brands-footer__hours li,
.page-brands .brands-footer__contact li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.page-brands .brands-footer__contact a {
  color: rgba(255, 255, 255, 0.85);
}

.page-brands .brands-footer__contact a:hover {
  color: var(--white);
}

.page-brands .brands-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-brands .brands-footer__links li {
  margin-bottom: 8px;
}

.page-brands .brands-footer__links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.page-brands .brands-footer__links a:hover {
  color: var(--white);
}

.page-brands .brands-footer__col--brand .brands-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.page-brands .brands-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-brands .brands-footer__social a:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

.page-brands .brands-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .page-brands .brands-explore__grid .brands-card {
    flex: 0 0 calc((100% - 2 * var(--grid-gap)) / 3);
    max-width: calc((100% - 2 * var(--grid-gap)) / 3);
  }
}

@media (max-width: 900px) {
  .page-brands .navbar .container {
    display: flex;
    justify-content: space-between;
  }

  .page-brands .nav-links {
    justify-self: auto;
  }

  .page-brands .nav-phone {
    justify-self: auto;
  }

  .page-brands .brands-explore__grid .brands-card {
    flex: 0 0 calc((100% - var(--grid-gap)) / 2);
    max-width: calc((100% - var(--grid-gap)) / 2);
  }

  .page-brands .brands-why__panel {
    grid-template-columns: 1fr;
  }

  .page-brands .brands-why__photo {
    max-height: 360px;
  }

  .page-brands .brands-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .page-brands .brands-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-brands .brands-hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.88) 0%,
      rgba(15, 23, 42, 0.75) 100%
    );
  }

  .page-brands .brands-carry__row {
    gap: clamp(8px, 2vw, 14px);
  }

  .page-brands .brands-carry__logo {
    width: min(148px, calc(50% - 12px));
    height: 64px;
    max-width: 148px;
  }

  .page-brands .brands-explore__grid .brands-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-brands .brands-why__features {
    grid-template-columns: 1fr;
  }

  .page-brands .brands-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .page-brands .brands-cta__btn {
    width: 100%;
    max-width: 320px;
  }

  .page-brands .brands-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   Brand Detail Pages (page-brand-detail)
   Template for Samsung, LG, Whirlpool, etc.
   ══════════════════════════════════════════ */
.page-brand-detail {
  background: var(--white);
}

.page-brand-detail .brand-detail-hero {
  padding: calc(var(--nav-height) + clamp(32px, 5vw, 56px)) 0 clamp(48px, 6vw, 72px);
  background: var(--white);
}

.page-brand-detail .brand-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.page-brand-detail .brand-detail-back {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.page-brand-detail .brand-detail-back:hover {
  color: var(--blue-600);
}

.page-brand-detail .brand-detail-hero__logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.page-brand-detail .brand-detail-hero__content h1 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.page-brand-detail .brand-detail-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.page-brand-detail .brand-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-brand-detail .brand-detail-hero__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.page-brand-detail .brand-detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-brand-detail .brand-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 980px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.page-brand-detail .brand-detail-btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.page-brand-detail .brand-detail-btn--primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  color: var(--white);
}

.page-brand-detail .brand-detail-btn--outline {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--blue-200);
}

.page-brand-detail .brand-detail-btn--outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
  color: var(--blue-700);
}

.page-brand-detail .brand-detail-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--white);
}

.page-brand-detail .brand-detail-section--soft {
  background: var(--gray-50);
}

.page-brand-detail .brand-detail-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(36px, 4vw, 52px);
}

.page-brand-detail .brand-detail-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}

.page-brand-detail .brand-detail-section__header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.page-brand-detail .brand-detail-section__header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.page-brand-detail .brand-detail-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.page-brand-detail .brand-detail-category {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px) 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-brand-detail .brand-detail-section--soft .brand-detail-category {
  background: var(--white);
}

.page-brand-detail .brand-detail-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.page-brand-detail .brand-detail-category__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  color: var(--blue-600);
}

.page-brand-detail .brand-detail-category h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
}

.page-brand-detail .brand-detail-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.page-brand-detail .brand-detail-feature {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px) 24px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-brand-detail .brand-detail-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-brand-detail .brand-detail-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-sm);
  color: var(--blue-600);
}

.page-brand-detail .brand-detail-feature h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.page-brand-detail .brand-detail-feature p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.page-brand-detail .brand-detail-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.page-brand-detail .brand-detail-collection {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 44px) 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-brand-detail .brand-detail-collection:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.page-brand-detail .brand-detail-collection h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
}

.page-brand-detail .brand-detail-showroom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.page-brand-detail .brand-detail-showroom__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.page-brand-detail .brand-detail-showroom__content p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.page-brand-detail .brand-detail-showroom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-brand-detail .brand-detail-showroom__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.page-brand-detail .brand-detail-showroom__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-brand-detail .brand-detail-official {
  padding: clamp(48px, 5vw, 64px) 0 clamp(64px, 7vw, 88px);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.page-brand-detail .brand-detail-official__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.page-brand-detail .brand-detail-official__inner p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .page-brand-detail .brand-detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-brand-detail .brand-detail-hero__media {
    order: -1;
    max-height: 360px;
  }

  .page-brand-detail .brand-detail-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-brand-detail .brand-detail-collections {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-brand-detail .brand-detail-showroom {
    grid-template-columns: 1fr;
  }

  .page-brand-detail .brand-detail-showroom__photo {
    order: -1;
  }
}

@media (max-width: 640px) {
  .page-brand-detail .brand-detail-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-brand-detail .brand-detail-features,
  .page-brand-detail .brand-detail-collections {
    grid-template-columns: 1fr;
  }

  .page-brand-detail .brand-detail-hero__actions,
  .page-brand-detail .brand-detail-showroom__actions {
    flex-direction: column;
  }

  .page-brand-detail .brand-detail-btn {
    width: 100%;
  }
}

/* ══════════════════════════════════════════
   Site Premium — Brand Detail overrides
   Navy/gold tokens aligned with Products page
   ══════════════════════════════════════════ */

/* Reset broken legacy .site-premium body rules */
body.site-premium {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  height: auto;
  min-height: 100vh;
  display: block;
  overflow: visible;
  background: var(--white);
  color: inherit;
  font-size: inherit;
  letter-spacing: normal;
  white-space: normal;
  transform: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  grid-template-columns: none;
  gap: 0;
  flex-direction: unset;
  align-items: unset;
  justify-content: unset;
  justify-self: auto;
  flex-wrap: unset;
  flex-shrink: unset;
  text-align: inherit;
  text-transform: none;
  font-weight: inherit;
  text-decoration: none;
  border: none;
  z-index: auto;
}

body.site-premium::before,
body.site-premium::after {
  display: none;
}

/* Shared premium chrome (topbar, navbar, footer sections) */
.site-premium .navbar {
  display: none;
}

.site-premium .products-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--products-topbar-h);
  background: var(--products-navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
}

.site-premium .products-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.site-premium .products-topbar__tagline {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-premium .products-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-premium .products-topbar__phone {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
}

.site-premium .products-topbar__phone:hover {
  color: var(--white);
}

.site-premium .products-topbar__lang {
  white-space: nowrap;
}

.site-premium .products-topbar__lang-active {
  color: var(--white);
  font-weight: 600;
}

.site-premium .products-topbar__lang a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-premium .products-topbar__lang a:hover {
  color: var(--white);
}

.site-premium .products-navbar {
  position: fixed;
  top: var(--products-topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--products-nav-h);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 26, 46, 0.06);
}

.site-premium .products-navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.site-premium .products-navbar__logo {
  justify-self: start;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--products-navy);
  text-decoration: none;
  white-space: nowrap;
}

.site-premium .products-navbar__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}

.site-premium .products-navbar__links a {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--products-navy);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-premium .products-navbar__links a:hover,
.site-premium .products-navbar__links a.active {
  color: var(--products-navy);
  border-bottom-color: var(--products-gold);
}

.site-premium .products-navbar__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--products-navy);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.site-premium .products-navbar__cta:hover {
  background: var(--products-navy-mid);
  color: var(--white);
}

.site-premium .products-navbar__toggle {
  display: none;
}

.site-premium .products-help-cta {
  position: relative;
  padding: clamp(36px, 4.2vw, 48px) 0;
  overflow: hidden;
  background: var(--products-navy);
}

.site-premium .products-help-cta__bg {
  position: absolute;
  inset: 0;
  background: url('../images/brands/explore/showroom.png') center center / cover no-repeat;
}

.site-premium .products-help-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 46, 0.88);
}

.site-premium .products-help-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
}

.site-premium .products-help-cta__content {
  max-width: 560px;
}

.site-premium .products-help-cta__content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 12px;
}

.site-premium .products-help-cta__content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.site-premium .products-help-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.site-premium .products-help-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-premium .products-help-cta__btn--gold {
  background: var(--products-gold);
  color: var(--products-navy);
}

.site-premium .products-help-cta__btn--gold:hover {
  background: var(--products-gold-hover);
  color: var(--products-navy);
}

.site-premium .products-help-cta__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.site-premium .products-help-cta__btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-premium .products-services {
  padding: clamp(36px, 4.2vw, 48px) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.site-premium .products-services--footer {
  margin-top: clamp(-20px, -2vw, -12px);
  padding: clamp(24px, 2.8vw, 32px) 0 clamp(20px, 2.4vw, 28px);
  background: var(--gray-50);
}

.page-home .site-reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.page-home .site-reviews__track::-webkit-scrollbar {
  display: none;
}

.page-home .site-reviews__cta {
  text-align: center;
}

/* Homepage — restore original spacious layout */
.page-home .products-hero {
  min-height: clamp(420px, 48vw, 520px);
  padding: calc(var(--products-header-h) + 48px) 0 56px;
}

.page-home .products-hero h1 {
  margin: 0 0 18px;
}

.page-home .products-hero__sub {
  margin: 0 0 32px;
}

.page-home .products-hero__actions {
  margin-bottom: 32px;
}

.page-home .products-hero__values {
  gap: 24px;
}

.page-home .products-categories {
  padding: clamp(56px, 6vw, 72px) 0 clamp(40px, 4vw, 56px);
}

.page-home .products-categories__header {
  margin-bottom: clamp(36px, 4vw, 48px);
}

.page-home .products-info-bar {
  padding: 0 0 clamp(20px, 2vw, 28px);
}

.page-home .products-services {
  padding: clamp(24px, 2.8vw, 32px) 0 clamp(28px, 3vw, 36px);
}

.page-home .products-services .products-categories__header {
  margin-bottom: clamp(18px, 2vw, 24px);
}

.page-home .products-services--footer {
  margin-top: 0;
  padding: clamp(48px, 5vw, 64px) 0;
  background: var(--white);
}

.page-home .products-services__grid {
  gap: clamp(14px, 1.6vw, 20px);
}

.page-home .products-services__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.page-home .products-services__item h3 {
  margin-bottom: 6px;
}

.page-home .products-services__item p {
  font-size: 0.8125rem;
  line-height: 1.45;
}

.page-home .site-section {
  padding: clamp(56px, 6vw, 72px) 0;
}

.page-home .site-section__header {
  margin-bottom: clamp(36px, 4vw, 48px);
}

.page-home .site-section.site-reviews {
  padding: clamp(56px, 6vw, 72px) 0 clamp(24px, 2.8vw, 32px);
}

.page-home .site-reviews__header {
  margin-bottom: clamp(36px, 4vw, 48px);
}

.page-home .site-reviews__cta {
  margin-top: clamp(20px, 2.2vw, 28px);
  margin-bottom: 0;
}

.site-premium .products-services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.site-premium .products-services__item {
  text-align: center;
}

.site-premium .products-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--products-navy);
}

.site-premium .products-services__item h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 8px;
}

.site-premium .products-services__item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .site-premium .products-help-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-premium .products-help-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .site-premium .products-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-premium .products-navbar__inner {
    grid-template-columns: 1fr auto;
  }

  .site-premium .products-navbar__links {
    display: none;
    position: fixed;
    top: var(--products-header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(11, 26, 46, 0.1);
    gap: 0;
  }

  .site-premium .products-navbar__links.open {
    display: flex;
  }

  .site-premium .products-navbar__links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .site-premium .products-navbar__cta {
    display: none;
  }

  .site-premium .products-navbar__toggle {
    display: flex;
    justify-self: end;
  }

  .site-premium .products-navbar__toggle span {
    background: var(--products-navy);
  }
}

@media (max-width: 640px) {
  .site-premium .products-services__grid {
    grid-template-columns: 1fr;
  }

  .site-premium .products-help-cta__actions {
    flex-direction: column;
  }

  .site-premium .products-help-cta__btn {
    width: 100%;
  }
}

/* Brand detail — premium navy/gold theming */
.site-premium.page-brand-detail .brand-detail-hero {
  padding: calc(var(--products-header-h) + clamp(32px, 5vw, 56px)) 0 clamp(48px, 6vw, 72px);
}

.site-premium.page-brand-detail .brand-detail-back:hover {
  color: var(--products-navy);
}

.site-premium.page-brand-detail .brand-detail-label {
  color: var(--products-gold);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-premium.page-brand-detail .brand-detail-section__header h2,
.site-premium.page-brand-detail .brand-detail-showroom__content h2 {
  color: var(--products-navy);
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-premium.page-brand-detail .brand-detail-category,
.site-premium.page-brand-detail .brand-detail-feature,
.site-premium.page-brand-detail .brand-detail-collection,
.site-premium.page-brand-detail .brand-detail-showroom {
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium.page-brand-detail .brand-detail-category:hover,
.site-premium.page-brand-detail .brand-detail-feature:hover,
.site-premium.page-brand-detail .brand-detail-collection:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.site-premium.page-brand-detail .brand-detail-category__icon,
.site-premium.page-brand-detail .brand-detail-feature__icon {
  color: var(--products-navy);
  background: rgba(11, 26, 46, 0.06);
}

.site-premium.page-brand-detail .brand-detail-btn--primary {
  background: var(--products-navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(11, 26, 46, 0.2);
}

.site-premium.page-brand-detail .brand-detail-btn--primary:hover {
  background: var(--products-navy-mid);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 26, 46, 0.28);
}

.site-premium.page-brand-detail .brand-detail-btn--outline {
  color: var(--products-navy);
  border-color: rgba(11, 26, 46, 0.2);
}

.site-premium.page-brand-detail .brand-detail-btn--outline:hover {
  border-color: var(--products-navy);
  background: rgba(11, 26, 46, 0.04);
  color: var(--products-navy);
}

.site-premium.page-brand-detail .brand-detail-official {
  background: var(--products-navy);
}

.site-premium.page-brand-detail .brand-detail-official__inner p {
  color: rgba(255, 255, 255, 0.9);
}

/* ══════════════════════════════════════════
   Site Premium — shared page sections
   ══════════════════════════════════════════ */
.site-premium .site-section {
  padding: clamp(36px, 4.2vw, 48px) 0;
  background: var(--white);
}

.site-premium .site-section--alt {
  background: var(--gray-50);
}

.site-premium .site-section__header {
  text-align: center;
  margin-bottom: clamp(24px, 2.8vw, 32px);
}

.site-premium .site-section__header h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 12px;
}

.site-premium .site-section__header p {
  margin: 12px auto 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.site-premium .site-section__label {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--products-gold);
  margin-bottom: 10px;
}

.site-premium .site-section__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto;
  background: var(--products-gold);
  border-radius: 2px;
}

.site-premium .site-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  padding: clamp(24px, 3vw, 32px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium .site-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.site-premium .site-card h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 10px;
}

.site-premium .site-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-500);
}

.site-premium .site-brand-card .products-category-card__body {
  padding: 14px 18px 16px;
}

.site-premium .site-brand-card .products-category-card__photo {
  height: 216px;
  flex-shrink: 0;
}

.site-premium .site-brand-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-bottom: 10px;
}

.site-premium .site-brand-card__logo img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}

.site-premium .site-brand-card__desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-500);
  margin: 0 0 12px;
  flex: 1;
}

.site-premium .site-review-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium .site-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.site-premium .site-review-card__stars {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #f59e0b;
  margin-bottom: 12px;
}

.site-premium .site-review-card__text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 0 16px;
}

.site-premium .site-review-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.site-premium .site-review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--products-navy);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.site-premium .site-review-card__meta strong {
  display: block;
  font-size: 0.875rem;
  color: var(--products-navy);
}

.site-premium .site-review-card__meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.site-premium .site-reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.site-premium .site-reviews__number {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--products-navy);
}

.site-premium .site-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
}

.site-premium .site-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.site-premium .site-stat {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  padding: 28px 20px;
  text-align: center;
}

.site-premium .site-stat strong {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--products-navy);
  margin-bottom: 6px;
}

.site-premium .site-stat span {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-premium .site-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
}

.site-premium .site-value-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  padding: clamp(28px, 3vw, 36px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium .site-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.site-premium .site-value-card__num {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--products-gold);
  margin-bottom: 12px;
}

.site-premium .site-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.site-premium .site-about-grid h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 20px;
}

.site-premium .site-about-grid p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin: 0 0 16px;
}

.site-premium .site-promise {
  background: var(--products-navy);
  border-radius: 12px;
  padding: clamp(36px, 4vw, 48px);
  color: var(--white);
  text-align: center;
}

.site-premium .site-promise h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-premium .site-promise p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
}

.site-premium .site-promise__badge {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-about .site-stats {
  grid-template-columns: repeat(3, 1fr);
}

.page-about .about-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 22px);
  align-items: stretch;
}

.page-about .about-trust-card {
  grid-column: auto;
  height: 100%;
  min-height: 220px;
}

.page-about .about-trust-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  flex-shrink: 0;
  background: var(--gray-100);
  color: var(--products-navy);
}

.page-about .about-trust-card .products-category-card__body {
  padding: 14px 16px 16px;
  flex: 1;
}

.page-about .about-trust-card .products-category-card__body h3 {
  margin: 0 0 8px;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
}

.page-about .about-trust-card .products-category-card__types {
  margin: 0;
}

/* About page — tighter vertical spacing */
.page-about .products-hero {
  min-height: clamp(280px, 30vw, 360px);
  padding: calc(var(--products-header-h) + 22px) 0 24px;
}

.page-about .products-hero h1 {
  margin-bottom: 10px;
}

.page-about .products-hero__sub {
  margin-bottom: 0;
}

.page-about .site-section {
  padding: clamp(28px, 3.2vw, 40px) 0;
}

.page-about .site-section__header {
  margin-bottom: clamp(18px, 2.2vw, 24px);
}

.page-about .site-section__header p {
  margin-top: 6px;
}

.page-about .site-about-grid {
  gap: clamp(18px, 2.4vw, 28px);
}

.page-about .site-about-grid h2 {
  margin-bottom: 10px;
}

.page-about .site-about-grid p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-about .site-promise {
  padding: clamp(22px, 2.6vw, 28px);
}

.page-about .site-stat {
  padding: 20px 16px;
}

.page-about .site-split {
  gap: clamp(18px, 2.4vw, 28px);
}

.page-about .site-split__content h2 {
  margin-bottom: 10px;
}

.page-about .site-split__content p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-about .site-feature-list {
  margin-top: 12px;
  gap: 8px;
}

.page-about .site-values-grid {
  gap: clamp(14px, 1.8vw, 18px);
}

.page-about .site-value-card {
  padding: clamp(18px, 2.2vw, 22px);
}

.page-about .site-reviews__grid {
  gap: clamp(14px, 1.8vw, 18px);
}

.page-about .site-review-card {
  padding: 22px;
}

.page-about .products-services__grid {
  gap: clamp(16px, 2.2vw, 26px);
}

.page-about .products-help-cta {
  padding: clamp(28px, 3.2vw, 38px) 0;
}

.page-about .products-services {
  padding: clamp(24px, 2.8vw, 32px) 0 clamp(14px, 1.8vw, 20px);
}

.page-about .products-services__brand {
  margin-top: clamp(14px, 1.8vw, 20px);
  padding-top: clamp(14px, 1.8vw, 18px);
}

.site-premium .site-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2.8vw, 40px);
  align-items: center;
}

.site-premium .site-split__photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
}

.site-premium .site-split__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}

.site-premium .site-split__content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 16px;
}

.site-premium .site-split__content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0 0 12px;
}

.site-premium .site-feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.site-premium .site-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.site-premium .site-feature-list svg {
  flex-shrink: 0;
  color: var(--products-gold);
  margin-top: 2px;
}

.page-brands .brands-carry {
  padding: clamp(20px, 2.5vw, 28px) 0;
  background: var(--gray-50);
}

.page-brands .brands-explore__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2vw, 28px);
}

.page-brands .brands-explore__grid .products-category-card {
  grid-column: auto;
}

.page-brands .brands-why {
  padding: clamp(36px, 4vw, 48px) 0;
  background: var(--white);
}

.page-brands .brands-why__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2.8vw, 36px);
  align-items: center;
  background: var(--gray-50);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
}

.page-brands .brands-why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.page-brands .brands-why__content {
  padding: clamp(24px, 3vw, 36px);
}

.page-brands .brands-why__content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 24px;
}

.page-brands .brands-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-brands .brands-why__feature {
  display: flex;
  gap: 12px;
}

.page-brands .brands-why__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--products-navy);
  color: var(--white);
  border-radius: 8px;
}

.page-brands .brands-why__feature h3 {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 4px;
}

.page-brands .brands-why__feature p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 0;
}

.page-contact .products-hero__bg {
  background-image: url('../images/contact-hero-kitchen.png?v=1');
  background-position: center center;
}

.page-contact .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 28px);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-contact .contact-cards {
  display: grid;
  gap: 16px;
}

.page-contact .site-contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-contact .site-contact-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--products-navy);
  color: var(--white);
  border-radius: 8px;
}

.page-contact .site-contact-card h4 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 6px;
}

.page-contact .site-contact-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.page-contact .site-contact-card a {
  color: var(--products-navy);
  text-decoration: none;
  font-weight: 600;
}

.page-contact .site-contact-card a:hover {
  color: var(--products-gold);
}

.page-contact .hours-table {
  width: auto;
  max-width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.page-contact .hours-table td {
  padding: 4px 0;
  color: var(--gray-600);
  vertical-align: baseline;
}

.page-contact .hours-table td:first-child {
  padding-right: 12px;
  white-space: nowrap;
}

.page-contact .hours-table td:last-child {
  text-align: left;
  font-weight: 600;
  color: var(--products-navy);
  white-space: nowrap;
}

.page-contact .contact-form-card h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 20px;
}

.site-premium .site-value-card h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 10px;
}

.site-premium .site-reviews__subtitle {
  margin: 4px 0 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.page-contact .contact-form-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin-bottom: 6px;
}

.page-contact .contact-form-card input,
.page-contact .contact-form-card select,
.page-contact .contact-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.page-contact .contact-form-card input:focus,
.page-contact .contact-form-card select:focus,
.page-contact .contact-form-card textarea:focus {
  outline: none;
  border-color: var(--products-gold);
}

.page-contact .contact-form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.page-contact .contact-form-card button {
  width: 100%;
  padding: 14px 24px;
  background: var(--products-navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.page-contact .contact-form-card button:hover {
  background: var(--products-navy-mid);
}

.page-contact .site-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  aspect-ratio: 16 / 7;
}

.page-contact .site-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .site-premium .site-about-grid,
  .site-premium .site-split,
  .page-brands .brands-why__panel,
  .page-contact .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-premium .site-stats,
  .site-premium .site-values-grid,
  .site-premium .site-reviews__grid,
  .page-about .about-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-brands .brands-explore__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-brands .brands-why__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-premium .site-stats,
  .site-premium .site-values-grid,
  .site-premium .site-reviews__grid,
  .page-brands .brands-explore__grid,
  .page-about .about-trust__grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   Site Premium — shared components
   ══════════════════════════════════════════ */
.site-premium .site-section {
  padding: clamp(36px, 4.2vw, 48px) 0;
  background: var(--white);
}

.site-premium .site-section__header {
  text-align: center;
  margin-bottom: clamp(24px, 2.8vw, 32px);
}

.site-premium .site-section__header h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 12px;
}

.site-premium .site-section__header p {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.site-premium .site-section__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 auto;
  background: var(--products-gold);
  border-radius: 2px;
}

.site-premium .site-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium .site-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.site-premium .site-feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.site-premium .site-feature-grid__item {
  text-align: center;
}

.site-premium .site-feature-grid__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--products-navy);
}

.site-premium .site-feature-grid__item h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
  margin: 0 0 8px;
}

.site-premium .site-feature-grid__item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gray-500);
}

.site-premium .site-review-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium .site-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
}

.site-premium .site-review-card__stars {
  color: var(--products-gold);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.site-premium .site-review-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}

.site-premium .site-review-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.site-premium .site-review-card__meta strong {
  color: var(--products-navy);
}

.site-premium .site-review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 26, 46, 0.08);
  color: var(--products-navy);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-premium .site-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 124px;
  padding: 24px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-premium .site-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
  color: inherit;
}

.site-premium .site-brand-card__logo {
  max-width: 110px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-premium .site-brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
}

.site-premium .site-brand-card__link svg {
  flex-shrink: 0;
}

.site-premium .site-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.2vw, 28px);
}

.site-premium .products-hero__values--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .site-premium .site-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-premium .products-hero__values--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-premium .site-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-premium .site-brands-grid,
  .site-premium .site-feature-grid {
    grid-template-columns: 1fr;
  }

  .site-premium .products-hero__values--4 {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   Brand Detail — site-premium overrides
   ══════════════════════════════════════════ */
.page-brand-detail.site-premium {
  --products-navy: #0b1a2e;
  --products-navy-mid: #122640;
  --products-gold: #c5a059;
  --products-gold-hover: #d4b06a;
}

.page-brand-detail.site-premium .brand-detail-back:hover {
  color: var(--products-gold);
}

.page-brand-detail.site-premium .brand-detail-hero__content h1 {
  color: var(--products-navy);
}

.page-brand-detail.site-premium .brand-detail-hero__media {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
}

.page-brand-detail.site-premium .brand-detail-btn {
  border-radius: 6px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  box-shadow: none;
}

.page-brand-detail.site-premium .brand-detail-btn--primary {
  background: var(--products-navy);
  color: var(--white);
  border-color: transparent;
}

.page-brand-detail.site-premium .brand-detail-btn--primary:hover {
  background: var(--products-navy-mid);
  transform: none;
  box-shadow: none;
  color: var(--white);
}

.page-brand-detail.site-premium .brand-detail-btn--outline {
  background: transparent;
  color: var(--products-navy);
  border-color: rgba(11, 26, 46, 0.25);
}

.page-brand-detail.site-premium .brand-detail-btn--outline:hover {
  border-color: var(--products-navy);
  background: rgba(11, 26, 46, 0.04);
  color: var(--products-navy);
  transform: none;
}

.page-brand-detail.site-premium .brand-detail-label {
  color: var(--products-gold);
}

.page-brand-detail.site-premium .brand-detail-section__header h2 {
  color: var(--products-navy);
}

.page-brand-detail.site-premium .brand-detail-category,
.page-brand-detail.site-premium .brand-detail-feature,
.page-brand-detail.site-premium .brand-detail-collection {
  border-radius: 12px;
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
}

.page-brand-detail.site-premium .brand-detail-category:hover,
.page-brand-detail.site-premium .brand-detail-feature:hover,
.page-brand-detail.site-premium .brand-detail-collection:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
  border-color: transparent;
}

.page-brand-detail.site-premium .brand-detail-category__icon,
.page-brand-detail.site-premium .brand-detail-feature__icon {
  background: rgba(11, 26, 46, 0.06);
  color: var(--products-navy);
}

.page-brand-detail.site-premium .brand-detail-category h3,
.page-brand-detail.site-premium .brand-detail-feature h3,
.page-brand-detail.site-premium .brand-detail-collection h3 {
  color: var(--products-navy);
}

.page-brand-detail.site-premium .brand-detail-showroom__content h2 {
  color: var(--products-navy);
}

.page-brand-detail.site-premium .brand-detail-showroom__photo {
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
}

.page-brand-detail.site-premium .brand-detail-section--soft {
  background: var(--gray-50);
}

/* ══════════════════════════════════════════
   Homepage — mockup layout
   ══════════════════════════════════════════ */
.page-home .products-hero__bg {
  background-image: url('../images/products-hero-kitchen.png');
  background-position: center 35%;
}

.page-home .products-hero__label {
  display: block;
  margin: 0 0 12px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.page-home .products-hero__values--four .products-hero__value-text span {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-featured-collections {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.page-home .home-brands {
  padding-top: clamp(32px, 4vw, 48px);
}

.page-home .home-featured-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  align-items: stretch;
}

.page-home .home-featured-card {
  position: relative;
  display: block;
  min-height: clamp(280px, 28vw, 340px);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(11, 26, 46, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-home .home-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 26, 46, 0.18);
}

.page-home .home-featured-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.45s ease;
}

.page-home .home-featured-card:hover .home-featured-card__img {
  transform: scale(1.04);
}

.page-home .home-featured-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 26, 46, 0.08) 0%,
    rgba(11, 26, 46, 0.22) 42%,
    rgba(11, 26, 46, 0.72) 100%
  );
  pointer-events: none;
}

.page-home .home-featured-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(20px, 2.2vw, 28px);
}

.page-home .home-featured-card__content h3 {
  margin: 0;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
}

.page-home .home-featured-card__content p {
  margin: 0 0 4px;
  max-width: 22ch;
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.page-home .home-featured-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 12px 16px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .home-featured-card:hover .home-featured-card__btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.page-home .home-featured-card--graphic .home-featured-card__img {
  object-position: center center;
}

.page-home .home-featured-card--graphic:hover .home-featured-card__img {
  transform: none;
}

.page-home .home-brands__grid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
}

.page-home .home-brand-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(18px, 2.2vw, 24px) clamp(16px, 1.8vw, 20px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 26, 46, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-brand-card:nth-child(6) { grid-column: 3 / span 4; }
.page-home .home-brand-card:nth-child(7) { grid-column: 7 / span 4; }
.page-home .home-brand-card:nth-child(8) { grid-column: 11 / span 4; }
.page-home .home-brand-card:nth-child(9) { grid-column: 15 / span 4; }

.page-home .home-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 26, 46, 0.12);
  color: inherit;
}

.page-home .home-brand-card__logo {
  max-width: 110px;
  max-height: 38px;
  min-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-home .home-brand-card__logo[alt="FOTILE"] {
  max-width: 48px;
}

.page-home .home-brand-card__types {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--gray-500);
  flex: 1;
}

.page-home .home-brand-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--products-navy);
}

.page-home .site-reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 22px);
}

.page-home .site-reviews__grid .site-review-card {
  flex: none;
}

.page-home .home-footer-cta {
  background: var(--products-navy);
  padding: clamp(52px, 5.5vw, 72px) 0;
}

.page-home .home-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 3.5vw, 48px);
}

.page-home .home-footer-cta__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: var(--white);
}

.page-home .home-footer-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
}

.page-home .home-footer-cta__content h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--white);
}

.page-home .home-footer-cta__content p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.page-home .home-footer-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .home-footer-cta__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 1200px) {
  .page-home .home-featured-collections__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-brand-card,
  .page-home .home-brand-card:nth-child(n) {
    grid-column: auto;
  }

  .page-home .site-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-home .home-featured-collections__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-featured-card {
    min-height: 260px;
  }

  .page-home .home-brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .site-reviews__grid {
    grid-template-columns: 1fr;
  }

  .page-home .home-footer-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .home-footer-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Pre-deploy mobile responsive polish ── */
@media (max-width: 768px) {
  html,
  body.site-premium,
  body.page-products {
    overflow-x: hidden;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .site-premium .products-navbar__toggle,
  .page-products .products-navbar__toggle,
  .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    justify-content: center;
    align-items: center;
  }

  .site-premium .products-navbar__logo {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }

  .site-premium .products-hero {
    min-height: auto;
    padding: calc(var(--products-header-h) + 24px) 0 28px;
  }

  .site-premium .products-hero h1 {
    font-size: clamp(1.625rem, 7vw, 2.125rem);
    letter-spacing: 0.04em;
    line-height: 1.15;
  }

  .site-premium .products-hero__sub {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .site-premium .products-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-premium .products-hero__actions .products-navbar__cta,
  .site-premium .products-hero__actions .products-help-cta__btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .site-premium .products-help-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .site-premium .products-help-cta__btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .page-home .home-brand-card__link {
    font-size: 0.75rem;
  }

  .page-home .home-brand-card__types {
    font-size: 0.75rem;
  }

  .page-home .home-brand-card {
    padding: 18px 14px;
  }

  .page-home .home-featured-card {
    min-height: 220px;
  }

  .page-home .home-footer-cta__content {
    flex-direction: column;
    gap: 12px;
  }

  .page-brands .brands-carry__logo {
    width: calc(33.333% - 8px);
    height: 52px;
    max-width: none;
  }

  .page-brands .brands-hero h1,
  .page-brands .products-hero h1 {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .page-brand-detail .brand-detail-hero {
    padding-top: calc(var(--products-header-h) + 20px);
    padding-bottom: 32px;
  }

  .page-brand-detail .brand-detail-hero__content h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .page-brand-detail .brand-detail-hero__sub {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .page-brand-detail .brand-detail-hero__media {
    min-height: 200px;
  }

  .page-brand-detail .brand-detail-hero__media img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 200px;
  }

  .page-contact .contact-layout {
    gap: 20px;
  }

  .page-contact .site-map iframe {
    min-height: 220px;
  }

  .site-premium .site-reviews__grid {
    gap: 14px;
  }

  .site-premium .site-review-card {
    padding: 22px 20px;
  }

  .site-premium .site-review-card p {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .site-premium .products-categories__header h2,
  .site-premium .products-services .products-categories__header h2 {
    font-size: clamp(1.125rem, 5vw, 1.375rem);
  }

  .site-premium .products-category-card__photo {
    aspect-ratio: 16 / 10;
  }

  .site-premium .site-brand-card .products-category-card__photo {
    height: auto;
    aspect-ratio: 16 / 12;
  }

  .site-premium .products-category-card__photo img {
    object-fit: cover;
  }

  .site-premium .products-topbar__phone,
  .page-products .products-topbar__phone {
    font-size: 0.75rem;
  }

  /* Homepage hero — compact mobile (~20% shorter, desktop unchanged) */
  .page-home .products-hero {
    padding: calc(var(--products-header-h) + 19px) 0 22px;
    align-items: flex-start;
  }

  .page-home .products-hero__label {
    margin-bottom: 10px;
  }

  .page-home .products-hero h1 {
    margin-bottom: 14px;
  }

  .page-home .products-hero__sub {
    margin-bottom: 26px;
  }

  .page-home .products-hero__actions {
    margin-bottom: 26px;
    gap: 10px;
  }

  .page-home .products-hero__values,
  .page-home .products-hero__values--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
  }

  .page-home .products-hero__values li {
    gap: 10px;
  }

  .page-home .products-hero__value-icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 375px) {
  .page-brands .brands-carry__logo {
    width: calc(50% - 6px);
    height: 48px;
  }
}