:root {
  --vls-blue-950: #001f4f;
  --vls-blue-900: #00306f;
  --vls-blue-800: #004494;
  --vls-blue-700: #0057b8;
  --vls-blue-600: #0b66d8;
  --vls-blue-100: #eaf3ff;
  --vls-blue-050: #f4f8ff;
  --vls-yellow-500: #ffcb05;
  --vls-yellow-600: #f0b900;
  --vls-ink-950: #111827;
  --vls-ink-800: #1f2a44;
  --vls-ink-600: #4b5875;
  --vls-ink-400: #7c879c;
  --vls-line: #dbe3ef;
  --vls-surface: #ffffff;
  --vls-surface-soft: #f6f8fb;
  --vls-footer: #1d1f22;
  --green: #2f7d5a;
  --red: #b8423a;
  --container: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 10px 24px rgba(15, 38, 78, 0.08);
  --shadow-float: 0 18px 48px rgba(15, 38, 78, 0.18);
  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Source Sans 3", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--vls-ink-950);
  font-family: var(--font-body);
  letter-spacing: 0;
  background: var(--vls-surface);
}

body {
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--vls-surface);
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

main {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.top-bar {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding: 0 max(16px, calc((100vw - var(--container)) / 2));
  background: var(--vls-blue-900);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.top-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 12px max(16px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(0, 31, 79, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.logo img {
  width: 145px;
}

.menu-toggle {
  display: none;
  width: 48px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--vls-blue-900);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--vls-ink-950);
  font-size: 14px;
  font-weight: 800;
}

.site-header nav a:hover {
  color: var(--vls-blue-800);
}

.site-header nav a.active::after {
  position: absolute;
  right: 13px;
  bottom: 4px;
  left: 13px;
  height: 3px;
  content: "";
  background: var(--vls-yellow-500);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.search-shortcut,
.quote-link,
.rep-link,
.button,
.product-card button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1;
}

.search-shortcut {
  position: relative;
  width: 48px;
  padding: 0;
  overflow: hidden;
  border-color: var(--vls-line);
  color: var(--vls-blue-900);
}

.search-shortcut svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.search-shortcut span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.quote-link {
  gap: 8px;
  border-color: var(--vls-yellow-600);
  background: var(--vls-yellow-500);
  color: var(--vls-blue-950);
  box-shadow: 0 8px 18px rgba(207, 150, 0, 0.16);
}

.quote-float {
  display: none;
}

.quote-link span,
.quote-float span,
.hero-actions span {
  min-width: 22px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--vls-blue-950);
  color: #fff;
  text-align: center;
}

.button.primary.yellow {
  border-color: var(--vls-yellow-600);
  background: var(--vls-yellow-500);
  color: var(--vls-blue-950);
  box-shadow: 0 8px 18px rgba(207, 150, 0, 0.18);
}

.rep-link {
  border-color: rgba(0, 68, 148, 0.2);
  background: #fff;
  color: var(--vls-blue-900);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: 100vw;
  min-height: 520px;
  margin-left: calc(50% - 50vw);
  padding: 62px max(16px, calc((100vw - var(--container)) / 2)) 92px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 31, 79, 0.94) 0%, rgba(0, 48, 111, 0.84) 34%, rgba(0, 68, 148, 0.3) 62%, rgba(0, 31, 79, 0.1) 100%),
    url("../img/hero-vls-desktop.webp") right 58% / cover no-repeat,
    var(--vls-blue-900);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(0, 31, 79, 0.26));
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  max-width: 620px;
  justify-items: start;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 5px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--vls-yellow-500);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.12;
}

h1 {
  max-width: 660px;
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 800;
}

h2 {
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
}

h3 {
  font-size: 18px;
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--vls-blue-800);
}

.hero h1 span,
.cta-band h2 span {
  color: var(--vls-yellow-500);
}

.hero-copy > p:not(.eyebrow),
.page-title p,
.product-info p,
.text-flow p,
.contact-card p,
.site-footer p,
.search-panel p,
.benefit-band p,
.about-split p,
.cta-band p {
  max-width: 650px;
  color: var(--vls-ink-600);
  font-size: 18px;
  line-height: 1.5;
}

.hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  justify-content: flex-start;
}

.button,
.product-card button {
  cursor: pointer;
  border: 1px solid var(--vls-line);
  background: var(--vls-surface);
  color: var(--vls-blue-900);
}

.button.primary,
.product-card button {
  border-color: var(--vls-blue-800);
  background: var(--vls-blue-800);
  color: #fff;
}

.button.outline,
.button.quiet {
  background: #fff;
  color: var(--vls-blue-800);
}

.button.full {
  width: 100%;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.hero-showcase {
  min-height: 360px;
}

.showcase-shelf {
  position: absolute;
  right: 1%;
  bottom: 16px;
  left: 2%;
  height: 70px;
  border-bottom: 8px solid var(--vls-yellow-500);
  border-radius: 50%;
  background: linear-gradient(180deg, #0c4f9d, #052d66);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.mock-product {
  position: absolute;
  bottom: 68px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.mock-product.bottle {
  width: 80px;
  height: 250px;
  border-radius: 28px 28px 10px 10px;
}

.mock-product.can {
  left: 28%;
  width: 86px;
  height: 160px;
  border-radius: 16px;
}

.mock-product.box {
  right: 16%;
  width: 118px;
  height: 210px;
  border-radius: 4px;
}

.mock-product.pack {
  right: 0;
  width: 112px;
  height: 142px;
  border-radius: 10px;
}

.mock-product.green {
  left: 12%;
  background: linear-gradient(160deg, #1f8c46, #075226);
}

.mock-product.red {
  background: linear-gradient(160deg, #db2d28, #8b1211);
}

.mock-product.amber {
  left: 47%;
  width: 86px;
  height: 270px;
  background: linear-gradient(160deg, #d58a20, #4a250c);
}

.mock-product.dark {
  background: linear-gradient(160deg, #35251d, #0e0d0c);
}

.mock-product.blue {
  background: linear-gradient(160deg, #1469d6, #07306f);
}

.search-panel {
  position: relative;
  z-index: 2;
  margin-top: -76px;
  padding: 24px;
  border: 1px solid rgba(0, 68, 148, 0.16);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-float);
}

@media (min-width: 901px) {
  .search-panel {
    margin-top: 28px;
    border-color: transparent;
    background: var(--vls-blue-900);
    color: #fff;
    box-shadow: none;
  }

  .search-panel h2,
  .search-panel p {
    color: #fff;
  }
}

.section,
.page-title,
.catalog-layout,
.quote-layout,
.contact-grid,
.product-detail,
.table-section {
  padding: clamp(40px, 6vw, 72px) 0;
}

.section-head {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.section-head.center,
.section-head.compact.center {
  display: grid;
  width: 100%;
  justify-items: center;
  justify-content: center;
  text-align: center;
}

.section-head.center > *,
.section-head.compact.center > * {
  justify-self: center;
  text-align: center;
}

.section-head.center .text-link {
  margin-top: -10px;
}

.section-head.compact {
  margin-bottom: 16px;
}

.section-head .eyebrow {
  color: var(--vls-blue-800);
}

.text-link {
  color: var(--vls-blue-800);
  font-weight: 800;
}

.catalog-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px 190px 160px;
  gap: 14px;
}

.search-panel .catalog-search .button.primary {
  border-color: var(--vls-yellow-600);
  background: var(--vls-yellow-500);
  color: var(--vls-blue-950);
}

.category-grid,
.product-grid,
.brand-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.featured-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-tile,
.brand-card,
.download-card,
.notice,
.contact-card,
.form-panel,
.product-card,
.filters,
.result-bar,
.quote-item,
.admin-panel,
.metric,
.admin-row {
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
}

.category-tile {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.category-art {
  display: block;
  height: 142px;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 203, 5, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(0, 31, 79, 0.12), rgba(0, 87, 184, 0.24)),
    linear-gradient(135deg, #dfe9f7, #ffffff);
}

.category-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #fff;
}

.category-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 70px;
  object-fit: contain;
  padding: 8px;
  background: #fff;
}

.category-cover {
  background: #fff;
}

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

.category-tile:nth-child(2n) .category-art {
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.55), transparent 25%),
    linear-gradient(135deg, #3b241b, #c18a53);
}

.category-tile:nth-child(3n) .category-art {
  background:
    radial-gradient(circle at 30% 45%, rgba(255, 203, 5, 0.35), transparent 24%),
    linear-gradient(135deg, #ece0c8, #8f5b2f);
}

.category-tile:nth-child(4n) .category-art {
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.5), transparent 22%),
    linear-gradient(135deg, #ea6128, #f7c77e);
}

.category-tile:nth-child(n) .category-cover {
  background: #fff;
}

.category-tile strong,
.category-tile small,
.category-tile em {
  display: block;
  margin-inline: 18px;
}

.category-tile strong {
  margin-top: 18px;
  color: var(--vls-blue-900);
  font-family: var(--font-heading);
  font-size: 18px;
}

.category-tile small {
  margin-top: 6px;
  color: var(--vls-ink-600);
  line-height: 1.35;
}

.category-tile em {
  margin-top: 12px;
  margin-bottom: 18px;
  color: var(--vls-blue-800);
  font-style: normal;
  font-weight: 800;
}

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

.product-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid.featured-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  padding: 14px;
  background: #fff;
}

.product-image img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 150px;
  place-items: center;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(0, 68, 148, 0.09), transparent),
    var(--vls-blue-050);
}

.placeholder span {
  display: grid;
  width: 72px;
  height: 92px;
  place-items: center;
  border: 2px solid rgba(0, 68, 148, 0.28);
  border-radius: 10px;
  background: #fff;
  color: var(--vls-blue-800);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}

.product-body {
  display: flex;
  min-height: 214px;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--vls-line);
}

.product-meta,
.product-body p,
.quote-item span,
.admin-row span {
  color: var(--vls-ink-600);
}

.product-meta {
  font-size: 13px;
  font-weight: 800;
}

.product-body h3 {
  min-height: 42px;
  color: var(--vls-ink-950);
  font-size: 16px;
}

.product-body p {
  margin: 0 0 8px;
  font-size: 14px;
}

.product-body form {
  margin-top: auto;
}

.product-body button {
  width: 100%;
  min-height: 38px;
}

.product-body button:hover,
.add-box .button:hover,
.quote-drawer-foot .button.primary:hover {
  border-color: var(--vls-yellow-600);
  background: var(--vls-yellow-500);
  color: var(--vls-blue-950);
}

.details-link {
  display: block;
  color: var(--vls-blue-800);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.benefit-band,
.about-split,
.cta-band {
  margin: 36px 0;
  border-radius: var(--radius-lg);
}

.benefit-band {
  padding: 30px;
  background: var(--vls-blue-050);
  text-align: center;
}

.benefit-grid {
  margin-top: 22px;
}

.benefit-grid div {
  padding: 18px;
  text-align: left;
}

.benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--vls-blue-800);
  box-shadow: var(--shadow-card);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.benefit-grid strong {
  display: block;
  color: var(--vls-blue-900);
  font-family: var(--font-heading);
}

.benefit-grid p {
  margin: 6px 0 0;
  font-size: 15px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 0.9fr);
  gap: 54px;
  align-items: center;
}

.about-photo {
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--vls-blue-050);
  box-shadow: var(--shadow-card);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.about-split .button {
  display: flex;
  width: fit-content;
}

.cta-band {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 36px;
  margin-left: 0;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--vls-blue-900);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-strip a,
.pill {
  padding: 8px 11px;
  border: 1px solid var(--vls-line);
  border-radius: 999px;
  background: var(--vls-surface);
  font-weight: 800;
}

.brand-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  justify-content: center;
  padding: 38px 0 8px;
}

.brand-logo {
  display: grid;
  min-width: 112px;
  min-height: 62px;
  place-items: center;
  color: #8d98a8;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.82;
}

.brand-logo img {
  display: block;
  width: auto;
  max-width: clamp(112px, 14vw, 170px);
  max-height: 58px;
  filter: grayscale(1) contrast(0.35) brightness(0.95);
}

.brand-logo img[src*="red-bull"] {
  max-height: 72px;
  transform: scale(1.55);
}

.brand-logo:hover {
  color: var(--vls-blue-800);
  opacity: 1;
}

.brand-logo:hover img {
  filter: grayscale(1) contrast(0.55) brightness(0.8);
}

.page-title {
  border-bottom: 1px solid rgba(0, 31, 79, 0.1);
}

.page-title .eyebrow {
  color: var(--vls-blue-800);
}

.page-title h1 {
  color: var(--vls-blue-950);
  font-size: clamp(30px, 3.2vw, 44px);
}

.catalog-layout,
.contact-grid,
.product-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.filters,
.form-panel,
.contact-card {
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.filters {
  position: sticky;
  top: 110px;
}

.filters form {
  display: grid;
  gap: 8px;
}

.filters label {
  margin: 8px 0 0;
}

.filters .button {
  margin-top: 8px;
}

label {
  display: block;
  margin: 14px 0 6px;
  color: var(--vls-ink-600);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-sm);
  background: var(--vls-surface);
  color: var(--vls-ink-950);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 87, 184, 0.18);
  border-color: var(--vls-blue-700);
}

textarea {
  resize: vertical;
}

.result-bar {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 14px;
  padding: 14px 16px;
}

.result-bar strong {
  color: var(--vls-blue-900);
  font-family: var(--font-heading);
  font-size: 30px;
}

.pagination {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pagination a {
  flex: 0 0 auto;
  min-width: 38px;
  padding: 9px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-sm);
  background: var(--vls-surface);
  text-align: center;
  font-weight: 800;
}

.pagination .active {
  background: var(--vls-blue-900);
  color: #fff;
}

.pagination .dots {
  flex: 0 0 auto;
  min-width: 28px;
  color: var(--vls-ink-600);
  text-align: center;
  font-weight: 800;
}

.product-detail {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.product-media {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 20px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: var(--vls-surface);
  box-shadow: var(--shadow-card);
}

.back-link {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--vls-blue-800);
  font-weight: 800;
}

.product-breadcrumb {
  display: block;
  width: auto;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  color: var(--vls-ink-600);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.product-info h1 {
  max-width: 720px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.specs div {
  padding: 14px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: var(--vls-blue-050);
}

.specs dt {
  color: var(--vls-ink-600);
  font-weight: 800;
}

.specs dd {
  margin: 5px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.add-box {
  display: grid;
  grid-template-columns: 96px minmax(180px, 260px);
  gap: 10px 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: var(--vls-surface);
  box-shadow: var(--shadow-card);
}

.add-box label {
  grid-column: 1 / -1;
  margin: 0;
}

.add-box input {
  min-height: 42px;
}

.quote-list {
  min-width: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 24, 39, 0.46);
  backdrop-filter: blur(3px);
}

.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100vw);
  height: 100vh;
  border-left: 1px solid var(--vls-line);
  background: #fff;
  box-shadow: -24px 0 60px rgba(17, 24, 39, 0.22);
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.quote-drawer[aria-hidden="false"] {
  visibility: visible;
  transform: translateX(0);
}

.quote-drawer-head,
.quote-drawer-foot {
  padding: 20px;
}

.quote-drawer-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--vls-line);
}

.quote-drawer-head .eyebrow {
  color: var(--vls-blue-800);
}

.quote-drawer-head h2 {
  font-size: 27px;
}

.drawer-close {
  flex: 0 0 auto;
  width: 34px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--vls-ink-600);
  font-size: 24px;
  box-shadow: none;
  cursor: pointer;
}

.quote-drawer-body {
  overflow: auto;
  padding: 14px 20px;
}

.quote-drawer-foot {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--vls-line);
  background: var(--vls-surface-soft);
}

.drawer-empty {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 20px;
  border: 1px dashed var(--vls-line);
  border-radius: var(--radius-md);
  color: var(--vls-ink-600);
  text-align: center;
}

.drawer-empty strong {
  color: var(--vls-ink-950);
  font-size: 20px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 58px 1fr 34px;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--vls-line);
}

.drawer-thumb,
.quote-thumb {
  width: 58px;
  height: 58px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.drawer-item strong {
  display: block;
}

.drawer-item span {
  display: block;
  margin-top: 4px;
  color: var(--vls-ink-600);
}

.quote-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 82px 34px;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  padding: 14px;
}

.icon-button {
  display: inline-grid;
  width: 34px;
  min-height: 34px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--vls-ink-600);
  box-shadow: none;
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-button:hover {
  color: var(--red);
  background: transparent;
}

.remove-button {
  justify-self: center;
}

.quote-remove-form {
  margin: 0;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.form-privacy-note {
  margin: 16px 0;
  color: var(--vls-ink-600);
  font-size: 14px;
  line-height: 1.45;
}

.form-privacy-note a {
  color: var(--vls-blue-800);
  font-weight: 700;
  text-decoration: underline;
}

.data-table {
  display: grid;
  gap: 8px;
}

.data-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--vls-line);
  background: rgba(255, 255, 255, 0.92);
}

.data-row .muted {
  color: var(--vls-ink-500);
  font-weight: 700;
}

.brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.brand-card {
  padding: 18px;
  color: var(--vls-blue-900);
  font-weight: 800;
}

.catalog-download {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin-top: 48px;
  margin-bottom: clamp(48px, 6vw, 64px);
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--vls-surface);
  box-shadow: inset 0 0 0 1px var(--vls-line);
}

.catalog-download-cover {
  padding: 12px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 31, 79, 0.2);
  transform: rotate(-1.5deg);
}

.catalog-download-cover img {
  width: 100%;
  border-radius: 4px;
}

.catalog-download-content {
  max-width: 590px;
}

.catalog-download-content h2 {
  margin: 16px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
}

.catalog-download-content > p:not(.catalog-file-meta) {
  color: var(--vls-ink-600);
  font-size: 18px;
  line-height: 1.55;
}

.catalog-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--vls-blue-100);
  color: var(--vls-blue-900);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-file-meta {
  margin: 22px 0;
  color: var(--vls-ink-400);
  font-size: 14px;
  font-weight: 700;
}

.catalog-download-button {
  gap: 10px;
  min-height: 50px;
  padding-inline: 22px;
}

.catalog-download-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid var(--vls-line);
  color: var(--vls-ink-950);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.8fr;
  gap: 34px;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-grid img {
  width: 150px;
}

.footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: var(--vls-ink-600);
}

.footer-link,
.privacy-settings-link {
  width: fit-content;
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--vls-ink-600);
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.footer-bottom {
  padding: 12px;
  border-top: 1px solid var(--vls-line);
  background: #fff;
  color: var(--vls-ink-600);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(680px, calc(100% - 40px));
  padding: 18px 20px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  color: var(--vls-blue-900);
}

.cookie-banner p {
  margin: 0;
  color: var(--vls-ink-600);
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.admin-body {
  background: var(--vls-surface-soft);
}

.admin-body main {
  width: auto;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.admin-nav {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100vh;
  padding: 20px;
  border-right: 1px solid var(--vls-line);
  background: var(--vls-blue-950);
  color: #fff;
}

.admin-logo-link {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: #fff;
}

.admin-logo-link img {
  width: 132px;
}

.admin-nav a,
.admin-nav button {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  font-weight: 800;
}

.admin-nav form {
  margin-top: auto;
}

.admin-main {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.admin-main > header,
.admin-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-main > header h1 {
  font-size: 30px;
  line-height: 1.1;
}

.admin-eyebrow {
  margin: 0;
  color: var(--vls-ink-600);
  font-weight: 800;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--vls-blue-900);
  font-family: var(--font-heading);
  font-size: 40px;
}

.admin-panel,
.admin-form {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: #fff;
}

.admin-list {
  display: grid;
  gap: 8px;
}

.admin-filter-panel {
  margin-top: 0;
  margin-bottom: 18px;
}

.admin-filter-form {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) repeat(4, minmax(120px, 0.7fr)) auto;
  gap: 12px;
  align-items: end;
}

.admin-filter-form label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--vls-ink-600);
  font-size: 13px;
  font-weight: 800;
}

.admin-filter-actions,
.admin-bulk-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.admin-bulk-form {
  display: grid;
  gap: 10px;
}

.admin-bulk-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: #fff;
}

.admin-select-all {
  margin: 0;
  white-space: nowrap;
}

.admin-row.admin-product-row {
  grid-template-columns: 34px 56px minmax(0, 1fr) auto 38px;
  min-height: 76px;
}

.admin-row-select {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0;
  border: 0;
  background: transparent;
}

.admin-row-select input,
.admin-select-all input {
  display: grid;
  width: 22px;
  height: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  place-content: center;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  border: 2px solid #c9d6e6;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  box-shadow: none;
}

.admin-row-select input::before,
.admin-select-all input::before {
  width: 12px;
  height: 12px;
  content: "";
  transform: scale(0);
  transform-origin: center;
  clip-path: polygon(14% 44%, 0 59%, 42% 100%, 100% 21%, 84% 8%, 39% 68%);
  background: #fff;
}

.admin-row-select input:checked,
.admin-select-all input:checked {
  border-color: var(--vls-blue-700);
  background: var(--vls-blue-700);
}

.admin-row-select input:checked::before,
.admin-select-all input:checked::before {
  transform: scale(1);
}

.admin-row-select input:focus,
.admin-select-all input:focus {
  outline: none;
  box-shadow: none;
}

.admin-row-select input:focus-visible,
.admin-select-all input:focus-visible {
  outline: 2px solid var(--vls-yellow-500);
  outline-offset: 2px;
}

.admin-product-thumb {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 5px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.admin-product-info {
  min-width: 0;
}

.admin-product-info strong,
.admin-product-info span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-product-info strong {
  color: var(--vls-ink-950);
}

.admin-empty {
  padding: 22px;
  border: 1px dashed var(--vls-line);
  border-radius: var(--radius-md);
  background: #fff;
}

.admin-empty p {
  margin: 6px 0 0;
  color: var(--vls-ink-600);
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.pill.ok {
  border-color: rgba(47, 125, 90, 0.35);
  color: var(--green);
}

.quote-new-pill {
  padding: 4px 8px;
  border-color: rgba(47, 125, 90, 0.24);
  background: rgba(47, 125, 90, 0.06);
  color: #2f7d5a;
  font-size: 12px;
  line-height: 1;
}

.pill.muted {
  border-color: rgba(180, 35, 24, 0.24);
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}

.button.danger {
  border-color: rgba(180, 35, 24, 0.22);
  color: #b42318;
}

.button.danger:hover {
  border-color: rgba(180, 35, 24, 0.35);
  background: rgba(180, 35, 24, 0.08);
  color: #912018;
}

.edit-button {
  width: 38px;
  min-height: 38px;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.edit-button:hover {
  border-color: rgba(0, 68, 148, 0.28);
  background: var(--vls-blue-050);
  color: var(--vls-blue-800);
}

.admin-copy-table {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: var(--vls-ink-600);
  font-size: 13px;
  font-weight: 800;
}

.admin-copy-table-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.admin-template-copy-source {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.admin-template-grid {
  overflow-x: auto;
  border: 1px solid var(--vls-line);
  border-radius: var(--radius-md);
  background: #fff;
}

.admin-template-grid table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.5;
}

.admin-template-grid th,
.admin-template-grid td {
  padding: 10px 12px;
  border-right: 1px solid var(--vls-line);
  border-bottom: 1px solid var(--vls-line);
  text-align: left;
  white-space: nowrap;
}

.admin-template-grid th {
  background: var(--vls-blue-050);
  color: var(--vls-blue-900);
}

.admin-template-grid tr:last-child td {
  border-bottom: 0;
}

.admin-template-grid th:last-child,
.admin-template-grid td:last-child {
  border-right: 0;
}

.admin-photo-panel {
  width: 100%;
  border-color: #ccd8e8;
  border-radius: 8px;
}

.admin-photo-page-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.admin-photo-panel h2 {
  margin: 0;
  color: #071b45;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0;
}

.admin-photo-page-head p {
  margin: 6px 0 0;
  color: #31405f;
  font-size: 14px;
  line-height: 1.35;
}

.admin-photo-upload {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px dashed #b6c8e0;
  border-radius: 6px;
  background: #fff;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.admin-photo-upload.is-dragover {
  border-color: var(--vls-blue-700);
  background: #f1f7ff;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.08);
  transform: translateY(-1px);
}

.admin-photo-dropzone {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
  margin: 0;
  cursor: pointer;
  transition: transform 140ms ease;
}

.admin-photo-dropzone.is-dragover {
  color: var(--vls-blue-800);
  transform: scale(1.01);
}

.admin-photo-dropzone.is-dragover .admin-photo-upload-copy strong,
.admin-photo-dropzone.is-dragover .admin-photo-upload-copy span,
.admin-photo-dropzone.is-dragover .admin-photo-upload-copy small {
  color: var(--vls-blue-800);
}

.admin-photo-upload-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  color: #2456b8;
}

.admin-photo-upload-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.admin-photo-upload-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.admin-photo-upload-copy strong {
  color: #071b45;
  font-size: 14px;
  line-height: 1.2;
}

.admin-photo-upload-copy span,
.admin-photo-upload-copy small {
  overflow: hidden;
  color: #31405f;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-photo-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.admin-photo-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.admin-photo-summary.compact {
  grid-template-columns: repeat(3, minmax(72px, 1fr));
  min-width: min(260px, 100%);
  margin: 0;
}

.admin-photo-summary span {
  padding: 10px 12px;
  border: 1px solid var(--vls-line);
  border-radius: 6px;
  background: #f7faff;
  color: #071b45;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.admin-photo-summary strong {
  display: block;
  color: #071b45;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.1;
}

.admin-photo-results .admin-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-photo-results .admin-row strong,
.admin-photo-results .admin-row span {
  display: block;
}

.admin-photo-results .admin-row div > span {
  margin-top: 4px;
  color: var(--vls-ink-600);
}

.admin-photo-alert {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 125, 90, 0.24);
  border-radius: 6px;
  background: rgba(47, 125, 90, 0.08);
  color: #225f45;
}

.admin-photo-alert.warning {
  border-color: rgba(240, 185, 0, 0.36);
  background: rgba(255, 203, 5, 0.14);
  color: #6f5300;
}

.admin-photo-alert .admin-photo-results {
  margin-top: 4px;
}

.admin-photo-preview-head {
  margin-bottom: 16px;
}

.admin-photo-preview-head p {
  margin: 6px 0 0;
  color: #31405f;
  font-size: 14px;
}

.admin-photo-apply-form {
  display: grid;
  gap: 18px;
}

.admin-photo-card-grid {
  display: grid;
  gap: 16px;
}

.admin-photo-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  border: 1px solid #ccd8e8;
  border-radius: 8px;
  background: #fff;
}

.admin-photo-card-title {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 16px;
  border-bottom: 1px solid #ccd8e8;
  background: #fff;
}

.admin-photo-card-title > div {
  min-width: 0;
}

.admin-photo-card-title strong {
  display: block;
  overflow: hidden;
  color: #071b45;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-photo-card-status {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 4px;
  color: #2f7d5a;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.admin-photo-card-status span {
  display: grid;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  place-items: center;
  border-radius: 50%;
  background: #2f7d5a;
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.admin-photo-card.is-missing .admin-photo-card-status {
  color: #b42318;
}

.admin-photo-card.is-missing .admin-photo-card-status span {
  background: #b42318;
}

.admin-photo-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 16px 24px 18px;
  align-items: start;
}

.admin-photo-compare figure {
  display: grid;
  gap: 8px;
  margin: 0;
  position: relative;
}

.admin-photo-compare figure > span {
  color: #1d2d50;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.admin-photo-compare img {
  width: 100%;
  max-width: 178px;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: center;
  padding: 10px;
  border: 1px solid #d7e1ee;
  border-radius: 5px;
  background: #fff;
}

.admin-photo-compare figure:not(:last-child)::after {
  position: absolute;
  top: calc(50% + 8px);
  right: -22px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d6e1ef;
  border-radius: 50%;
  background: #fff;
  color: #2456b8;
  content: ">";
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(15, 38, 78, 0.08);
}

.admin-photo-apply-check {
  flex: 0 0 auto;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid #b9c9df;
  border-radius: 5px;
  background: #f7faff;
  color: #071b45;
  font-size: 13px;
  font-weight: 800;
}

.admin-photo-apply-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  min-height: 58px;
  padding: 12px 12px 0;
  border-top: 1px solid rgba(204, 216, 232, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), #fff 45%);
}

.admin-photo-apply-actions .button.primary {
  border-color: #efb300;
  background: var(--vls-yellow-500);
  color: #071b45;
}

.admin-photo-selection-status {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-right: auto;
  color: #071b45;
  font-size: 13px;
}

.admin-photo-selection-status button {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2456b8;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.admin-login .form-panel {
  width: min(420px, calc(100vw - 32px));
}

.admin-login .form-panel .button {
  margin-top: 16px;
}

.admin-login .form-panel small {
  display: block;
  margin-top: 12px;
  color: var(--vls-ink-600);
}

.admin-login img {
  width: 150px;
  margin-bottom: 18px;
}

.admin-pagination .pagination {
  justify-content: center;
  margin-top: 20px;
}

code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #e8edf1;
}

.narrow {
  width: min(780px, 100%);
  margin-inline: auto;
}

.center {
  text-align: center;
}

.nowrap-title {
  white-space: nowrap;
}

.danger {
  border-color: rgba(184, 66, 58, 0.35);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-header nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid.featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .site-header,
  .hero,
  .catalog-layout,
  .quote-layout,
  .contact-grid,
  .product-detail,
  .admin-shell,
  .about-split,
  .catalog-download {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .catalog-download-cover {
    width: min(320px, 100%);
    margin-inline: auto;
  }

  .catalog-download-content {
    max-width: none;
    text-align: center;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(0, 31, 79, 0.86) 0%, rgba(0, 48, 111, 0.72) 33%, rgba(0, 48, 111, 0.34) 64%, rgba(0, 31, 79, 0.12) 100%),
      url("../img/hero-vls-mobile.webp") center bottom / cover no-repeat,
      var(--vls-blue-900);
  }

  .hero-showcase {
    min-height: 300px;
  }

  .catalog-search {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid,
  .product-grid,
  .product-grid.compact,
  .brand-grid,
  .admin-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters,
  .admin-nav {
    position: static;
    height: auto;
  }

  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-logo-link {
    margin-bottom: 0;
  }

  .admin-logo-link img {
    width: 100px;
  }

  .data-row,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-filter-form,
  .admin-bulk-toolbar,
  .admin-photo-summary {
    grid-template-columns: 1fr;
  }

  .admin-photo-page-head {
    flex-direction: column;
  }

  .admin-photo-upload,
  .admin-photo-card,
  .admin-photo-summary.compact,
  .admin-photo-compare {
    grid-template-columns: 1fr;
  }

  .admin-photo-card-title strong {
    white-space: normal;
  }

  .admin-photo-card-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-photo-compare figure::after {
    display: none;
  }

  .admin-photo-apply-actions {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-filter-actions,
  .admin-bulk-actions {
    justify-content: stretch;
  }

  .admin-filter-actions .button,
  .admin-bulk-actions .button {
    flex: 1;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    width: calc(100% - 32px);
  }

  .cookie-actions .button {
    flex: 1;
  }

  .admin-row.admin-product-row {
    grid-template-columns: 34px 52px minmax(0, 1fr) 38px;
  }

  .admin-product-thumb {
    width: 52px;
    height: 52px;
  }

  .admin-product-row .pill {
    grid-column: 3 / 5;
    justify-self: start;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    width: 100vw;
    max-width: 100vw;
    gap: 8px 12px;
    grid-template-columns: auto 44px;
    min-height: 64px;
    padding: 8px 12px;
    overflow: visible;
  }

  .logo img {
    width: 108px;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 70;
    display: block;
    width: 44px;
    min-height: 40px;
    justify-self: end;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    gap: 2px;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(0, 31, 79, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(0, 31, 79, 0.12);
  }

  .site-header.menu-open nav {
    display: grid;
  }

  .site-header nav a {
    justify-content: flex-start;
    min-width: 0;
    padding-inline: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    white-space: normal;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + 182px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    gap: 8px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    margin-left: 0;
    padding: 0 12px 12px;
    border-bottom: 1px solid rgba(0, 31, 79, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(0, 31, 79, 0.12);
  }

  .site-header.menu-open .header-actions {
    display: grid;
  }

  .search-shortcut {
    width: 100%;
    color: var(--vls-blue-900);
    justify-content: flex-start;
    padding-inline: 12px;
  }

  .search-shortcut span {
    position: static;
    width: auto;
    height: auto;
    margin-left: 8px;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .rep-link {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  main {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    width: 100vw;
    max-width: 100vw;
    gap: 8px 12px;
    grid-template-columns: auto 44px;
    min-height: 64px;
    padding: 8px 12px;
    overflow: visible;
  }

  .logo img {
    width: 108px;
  }

  .menu-toggle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 70;
    display: block;
    width: 44px;
    min-height: 40px;
    justify-self: end;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    gap: 2px;
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 10px 12px 8px;
    border-bottom: 1px solid rgba(0, 31, 79, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(0, 31, 79, 0.12);
  }

  .site-header.menu-open nav {
    display: grid;
  }

  .site-header nav a {
    justify-content: flex-start;
    min-width: 0;
    padding-inline: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    white-space: normal;
  }

  .header-actions {
    position: absolute;
    top: calc(100% + 182px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    gap: 8px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    margin-left: 0;
    padding: 0 12px 12px;
    border-bottom: 1px solid rgba(0, 31, 79, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(0, 31, 79, 0.12);
  }

  .site-header.menu-open .header-actions {
    display: grid;
  }

  .search-shortcut {
    width: 100%;
    color: var(--vls-blue-900);
    justify-content: flex-start;
    padding-inline: 12px;
  }

  .search-shortcut span {
    position: static;
    width: auto;
    height: auto;
    margin-left: 8px;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }

  .quote-link {
    min-width: 0;
    padding-inline: 10px;
  }

  .rep-link {
    display: inline-flex;
  }

  .quote-float {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 72;
    gap: 8px;
    width: 100vw;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    border-radius: 0;
    background: var(--vls-yellow-500);
    color: var(--vls-blue-950);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 38, 78, 0.16);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  body.has-quote:not(.drawer-open) .quote-float {
    display: inline-flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.has-quote {
    padding-top: 44px;
  }

  h1 {
    font-size: 32px;
  }

  .hero {
    max-width: 100vw;
    min-height: 760px;
    align-items: start;
    padding-top: 56px;
    padding-inline: 16px;
    padding-bottom: 0;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    max-width: min(100%, 340px);
    justify-self: center;
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    max-width: 340px;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-showcase {
    display: none;
  }

  .search-panel {
    max-width: calc(100vw - 24px);
    margin-top: -92px;
    padding: 18px;
  }

  .search-panel h2 {
    max-width: 300px;
    font-size: 26px;
  }

  .catalog-search,
  .category-grid,
  .product-grid,
  .product-grid.compact,
  .brand-grid,
  .specs,
  .admin-grid,
  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .category-art {
    height: 190px;
  }

  .product-grid.featured-grid .product-card:nth-child(n + 5) {
    display: none;
  }

  .category-cover img {
    object-fit: contain;
  }

  .benefit-grid div {
    text-align: center;
  }

  .benefit-icon {
    margin-inline: auto;
  }

  .product-body {
    min-height: 236px;
    padding: 13px;
  }

  .product-body h3 {
    font-size: 15px;
  }

  .product-body button {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .section-head,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-item {
    grid-template-columns: 58px minmax(0, 1fr) 64px 34px;
    gap: 8px;
    padding: 12px;
  }

  .cta-band {
    display: grid;
    margin-bottom: 28px;
    border-radius: var(--radius-lg);
  }
}
