/* ==========================================================================
   Hilux Decor — design system
   Charcoal / white / orange, industrial-catalog feel
   ========================================================================== */

:root {
  --charcoal: #1a1a1c;
  --charcoal-soft: #242426;
  --charcoal-2: #2e2e31;
  --ink: #17181a;
  --white: #ffffff;
  --off-white: #f4f3f1;
  --grey-100: #eceae6;
  --grey-300: #c9c7c2;
  --grey-500: #8a8884;
  --grey-700: #55534f;
  --accent: #ff6a2f;
  --accent-dark: #e2551f;
  --accent-light: #ffe3d4;
  --teal: #146b63;
  --teal-light: #e2f2f0;
  --star: #ffb400;
  --shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1240px;
  --font-head: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 56px 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.section-head p {
  color: var(--grey-700);
  font-size: 1.05rem;
  margin-top: 14px;
}

.section-head.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(255, 106, 47, 0.55);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--grey-300);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ---------- top bar + nav ---------- */

.topbar {
  background: var(--ink);
  color: var(--grey-300);
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-item strong { color: var(--white); }
.topbar-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.topbar-links { display: flex; gap: 22px; }
.topbar-links a:hover { color: var(--white); }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 28, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}

.brand-text .name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-text .sub {
  font-size: 0.72rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

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

.nav-links a {
  color: var(--grey-300);
  font-family: var(--font-head);
  font-size: 1.02rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  color: var(--white);
  background: var(--charcoal);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,20,22,0.55) 0%, rgba(20,20,22,0.75) 55%, rgba(20,20,22,0.97) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 0 90px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pill svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.pill.pill-teal svg { color: #4fd1c3; }

.hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  max-width: 600px;
  font-size: 1.15rem;
  color: var(--grey-300);
  margin-bottom: 34px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.rating-strip .stars { display: flex; gap: 3px; }
.rating-strip .stars svg { width: 20px; height: 20px; color: var(--star); }
.rating-strip .score { font-family: var(--font-head); font-size: 1.9rem; color: var(--white); line-height: 1; }
.rating-strip .meta { font-size: 0.85rem; color: var(--grey-300); }
.rating-strip .divider { width: 1px; height: 34px; background: rgba(255,255,255,0.18); }
.rating-strip .quote { max-width: 300px; font-size: 0.92rem; color: var(--grey-100); font-style: italic; }

/* ---------- trust strip ---------- */

.trust-strip {
  background: var(--charcoal-soft);
  color: var(--white);
  padding: 30px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item .num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--accent);
}
.trust-item .label {
  font-size: 0.85rem;
  color: var(--grey-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- category / catalog grid ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}

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

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,28,0) 35%, rgba(26,26,28,0.92) 100%);
}

.cat-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 20px;
  color: var(--white);
}

.cat-card-body .tag {
  font-size: 0.72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.cat-card-body h3 { font-size: 1.35rem; margin-bottom: 6px; }
.cat-card-body p { font-size: 0.85rem; color: var(--grey-300); max-width: 90%; }

/* ---------- filter bar ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--grey-300);
  background: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--grey-700);
}

.filter-btn:hover { border-color: var(--accent); color: var(--accent-dark); }

.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* ---------- catalog sections (full page) ---------- */

.catalog-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--grey-100);
  opacity: 1;
  transition: opacity 0.35s ease;
}

.catalog-section.is-hidden { display: none; }

.catalog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.catalog-section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.catalog-section-head .desc { max-width: 560px; color: var(--grey-700); margin-top: 8px; }

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.swatch {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.swatch:hover img { transform: scale(1.12); }

.swatch .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(26,26,28,0), rgba(26,26,28,0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- why us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent);
}

.why-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card .icon svg { width: 26px; height: 26px; color: var(--accent-dark); }

.why-card h3 { text-transform: none; font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { color: var(--grey-700); font-size: 0.95rem; }

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-media img { width: 100%; height: 480px; object-fit: cover; }

.why-media .badge-float {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-media .badge-float .stars { color: var(--star); display: flex; gap: 2px; }
.why-media .badge-float .stars svg { width: 15px; height: 15px; }
.why-media .badge-float strong { font-family: var(--font-head); font-size: 1.2rem; }
.why-media .badge-float span { font-size: 0.78rem; color: var(--grey-700); display: block; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.check-list svg {
  width: 22px; height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list strong { display: block; }
.check-list span { color: var(--grey-700); font-size: 0.92rem; }

/* ---------- testimonials ---------- */

.reviews-strip {
  background: var(--ink);
  color: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--charcoal-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.08);
}

.review-card .stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--star); }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p.quote { font-size: 1.02rem; color: var(--grey-100); margin-bottom: 18px; }
.review-card .who { font-family: var(--font-head); letter-spacing: 0.5px; color: var(--white); font-size: 0.95rem; }
.review-card .who span { display: block; color: var(--grey-500); font-size: 0.78rem; text-transform: none; font-family: var(--font-body); margin-top: 2px; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.google-badge .stars { color: var(--star); display: flex; gap: 1px; }
.google-badge .stars svg { width: 14px; height: 14px; }

/* ---------- gallery ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-grid .g-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }

.g-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.08); }

.g-item .g-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(26,26,28,0.75);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}

.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-row:last-child { border-bottom: none; }

.contact-row .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 22px; height: 22px; color: var(--accent-dark); }

.contact-row h4 { text-transform: none; font-size: 1.02rem; margin-bottom: 3px; }
.contact-row p, .contact-row a.link { color: var(--grey-700); font-size: 0.95rem; }
.contact-row a.link:hover { color: var(--accent-dark); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.hours-badge svg { width: 20px; height: 20px; }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 60px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-banner h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.9); margin-top: 8px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */

footer.site-footer {
  background: var(--ink);
  color: var(--grey-300);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p { margin-top: 14px; font-size: 0.92rem; color: var(--grey-500); max-width: 320px; }

.footer-col h4 {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .credit { color: var(--grey-700); }
.footer-bottom .credit a { color: var(--grey-500); }
.footer-bottom .credit a:hover { color: var(--accent); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,28,0.55), rgba(26,26,28,0.98));
}
.page-hero .inner { position: relative; z-index: 2; }
.page-hero .crumb { color: var(--grey-500); font-size: 0.9rem; margin-bottom: 10px; }
.page-hero .crumb a:hover { color: var(--white); }
.page-hero p.lead { max-width: 600px; color: var(--grey-300); margin-top: 14px; font-size: 1.05rem; }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .cat-grid, .swatch-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .why-split { gap: 36px; }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-outline-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-ghost-desktop { display: none; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .why-split, .contact-grid { grid-template-columns: 1fr; }
  .why-media img { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid .g-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 640px) {
  .cat-grid, .swatch-grid, .why-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-strip { flex-wrap: wrap; }
  .rating-strip .quote { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { text-align: center; justify-content: center; }
  .section { padding: 60px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-links { display: none; }
}

@media (max-width: 460px) {
  .cat-grid, .swatch-grid, .why-grid, .review-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
