/* ==========================================================================
   APEX Catalog — main styles
   ========================================================================== */

:root {
  --bg: #070d16;
  --bg-elevated: #0e1726;
  --bg-card: #121c2e;
  --bg-soft: #182338;
  --text: #f2f5f9;
  --text-muted: #93a0b5;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #c8f542;
  --accent-dim: #9bc41f;
  --accent-ink: #0a1628;
  --orange: #ff5a1f;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --max: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* Layout ----------------------------------------------------------------- */

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0;
  font-weight: 400;
}

.section__sub {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0.75rem 0 0;
}

/* Header ----------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(7, 13, 22, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #7dd3fc);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.35rem;
}

.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-search {
  position: relative;
}

.header-search input {
  width: 180px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  outline: none;
  transition: border-color 0.2s, width 0.25s var(--ease);
}

.header-search input:focus {
  border-color: rgba(200, 245, 66, 0.45);
  width: 220px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  background: #d6ff5c;
}

.btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(200, 245, 66, 0.4);
  color: var(--accent);
}

.btn--sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
}

.btn--block {
  width: 100%;
}

/* Hero ------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200, 245, 66, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30, 100, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #0a1424 0%, var(--bg) 100%);
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 245, 66, 0.3);
  background: rgba(200, 245, 66, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin: 0 0 1.25rem;
  font-weight: 400;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 32rem;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.hero__stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
  min-height: 380px;
}

.hero-card {
  position: absolute;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card--main {
  inset: 0 0 40px 20px;
  background: linear-gradient(145deg, #13233d, #0b3d91 45%, #c8f542);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.hero-card--float {
  width: 180px;
  right: 0;
  bottom: 0;
  background: var(--bg-card);
  padding: 1rem;
  z-index: 2;
}

.hero-card--float.alt {
  left: 0;
  right: auto;
  top: 20px;
  bottom: auto;
  width: 160px;
  background: linear-gradient(135deg, #ff6a00, #c2410c);
}

.hero-card__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.hero-card__title {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 0.35rem;
}

.hero-card__meta {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Category cards --------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.category-card {
  position: relative;
  min-height: 240px;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 245, 66, 0.35);
}

.category-card--apparel {
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 13, 22, 0.92) 100%),
    linear-gradient(135deg, #0b3d91, #1a8cff 55%, #0a1628);
}

.category-card--sports {
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 13, 22, 0.92) 100%),
    linear-gradient(135deg, #7c2d12, #ff5a1f 50%, #1a1a1a);
}

.category-card__count {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.category-card h3 {
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
  line-height: 1;
}

.category-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 22rem;
}

/* Product grid ----------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 245, 66, 0.28);
  box-shadow: var(--shadow);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.product-card__placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.55;
  color: #fff;
}

.product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(7, 13, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}

.product-card__brand {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.product-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 600;
}

.product-card__title a:hover {
  color: var(--accent);
}

.product-card__excerpt {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__footer {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.price-current {
  font-weight: 700;
  font-size: 1.05rem;
}

.price-compare {
  margin-left: 0.4rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.88rem;
}

/* Filters ---------------------------------------------------------------- */

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

/* Single product --------------------------------------------------------- */

.product-hero {
  padding: 3rem 0 4rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--bg-card);
}

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

.product-gallery__placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.product-gallery__placeholder span {
  font-size: 4rem;
  color: #fff;
  opacity: 0.5;
}

.product-info__brand {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.product-info__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
  font-weight: 400;
}

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.product-info__price .price-current {
  font-size: 1.8rem;
  font-family: var(--display);
  letter-spacing: 0.04em;
}

.product-info__excerpt {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.product-spec {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.product-spec dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.product-spec dd {
  margin: 0;
  font-weight: 600;
}

.product-content {
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.product-content p {
  margin: 0 0 0.85rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.related-section {
  border-top: 1px solid var(--border);
}

/* Page chrome ------------------------------------------------------------ */

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(200, 245, 66, 0.08), transparent 50%),
    var(--bg);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
  line-height: 0.95;
  font-weight: 400;
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
  max-width: 36rem;
}

.page-content {
  padding: 3rem 0 4rem;
}

.prose {
  max-width: 42rem;
  color: var(--text-muted);
}

.prose h2,
.prose h3 {
  color: var(--text);
}

/* Contact form ----------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card,
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-card h2,
.form-card h2 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: rgba(200, 245, 66, 0.45);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.flash {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.flash--success {
  background: rgba(200, 245, 66, 0.12);
  border: 1px solid rgba(200, 245, 66, 0.35);
  color: var(--accent);
}

.flash--error {
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.35);
  color: #ffb199;
}

/* Brand strip / CTA ------------------------------------------------------ */

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
  border-block: 1px solid var(--border);
}

.brand-strip__item {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem;
}

.cta-band {
  margin: 2rem 0 0;
  padding: 3rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(200, 245, 66, 0.15), transparent 55%),
    linear-gradient(135deg, #13233d, #0a1628);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
  line-height: 1;
  font-weight: 400;
}

.cta-band p {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
}

/* Empty / search --------------------------------------------------------- */

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.empty-state h2 {
  color: var(--text);
  font-family: var(--display);
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: 2.2rem;
}

/* Footer ----------------------------------------------------------------- */

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: #050a12;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 0;
  max-width: 22rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Screen reader / WP pagination ---------------------------------------- */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navigation.pagination {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.nav-links .current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.nav-links a:hover {
  border-color: rgba(200, 245, 66, 0.4);
  color: var(--accent);
}

/* Responsive ------------------------------------------------------------- */

@media (max-width: 960px) {
  .hero__grid,
  .product-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 300px;
    max-width: 420px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 13, 22, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .header-search {
    display: none;
  }

  .category-grid,
  .product-grid,
  .product-specs {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .cta-band {
    padding: 1.75rem;
  }
}
