﻿:root {
  --red: #ee1b24;
  --red-dark: #b71119;
  --ink: #151515;
  --muted: #686868;
  --line: #e5e2dc;
  --paper: #f7f5f0;
  --white: #ffffff;
  --charcoal: #24211f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", "DejaVu Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(90deg, #151515 0%, #24211f 62%, #3a1114 100%);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.brand span {
  font-size: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 800;
  border-radius: 6px;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 24px;
}

.hero,
.page-hero {
  position: relative;
  min-height: min(792px, calc(110vh - 84px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.page-hero.compact {
  min-height: 430px;
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 17, 16, 0.88), rgba(18, 17, 16, 0.52) 48%, rgba(18, 17, 16, 0.18));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 0 clamp(18px, 7vw, 92px);
  color: var(--white);
}

.eyebrow,
.tag {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-content h1,
.contact-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--red-dark);
}

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

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 86px) 0;
}

.intro,
.product-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
}

.service-band {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--charcoal);
}

.service-band .service-copy,
.service-band .service-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.service-copy {
  max-width: 780px;
  display: grid;
  gap: 16px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-copy p {
  color: #d4d0c8;
}

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

.service-grid article,
.product-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.service-grid article {
  min-height: 210px;
  padding: 24px;
}

.service-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.service-grid p {
  color: #d4d0c8;
  font-size: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
}

.split-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border-color: var(--line);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #efefef;
}

.product-card div {
  padding: 22px;
}

.product-card h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.product-card p {
  font-size: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.95fr);
  min-height: calc(90vh - 68px);
  align-items: stretch;
}

.contact-photo {
  order: 2;
  min-height: calc(90vh - 68px);
  background: #151515;
  overflow: hidden;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: calc(90vh - 68px);
  object-fit: cover;
  object-position: center center;
  display: block;
}

.contact-panel {
  order: 1;
  padding: clamp(38px, 5.4vw, 78px);
  background: var(--white);
  align-self: center;
}

.contact-panel > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.contact-list a,
.contact-list p {
  min-height: 96px;
  margin: 0;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.map-panel {
  overflow: hidden;
  margin: 0 0 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}
.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #383331;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: #fbfaf7;
}

.contact-form button {
  justify-self: start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: #eee8de;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #1f1d1b;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

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

  .hero,
  .page-hero.compact {
    min-height: 560px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(18, 17, 16, 0.9), rgba(18, 17, 16, 0.32));
  }

  .hero-content {
    margin-bottom: 38px;
  }

  .intro,
  .product-intro,
  .service-copy,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .products-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-photo img {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-content h1,
  .contact-panel h1 {
    font-size: 44px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

.catalog-page {
  background: var(--white);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}

.catalog-heading h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--ink);
  text-decoration: none;
}

.catalog-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.catalog-sidebar h2 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  font-size: 16px;
  text-transform: uppercase;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.category-link span::before {
  content: "▪";
  margin-right: 8px;
  color: var(--red);
}

.category-link strong {
  color: var(--muted);
  font-size: 14px;
}

.category-link.active,
.category-link:hover {
  color: var(--red);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar p {
  margin: 0 auto 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.view-tools {
  display: flex;
  gap: 6px;
  color: #8b8b8b;
  font-size: 24px;
  line-height: 1;
}

.view-toggle {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #8b8b8b;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.view-toggle.active,
.view-toggle:hover {
  color: var(--red);
}

.catalog-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.catalog-toolbar select {
  min-width: 120px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 10px;
  background: var(--white);
  color: var(--muted);
}

.catalog-grid[hidden],
.catalog-empty[hidden] {
  display: none !important;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 30px;
}

.catalog-card {
  display: grid;
  grid-template-rows: 230px auto auto auto;
  justify-items: center;
  text-align: center;
  background: var(--white);
}

.catalog-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 10px 18px;
}

.catalog-card h2 {
  margin: 12px 0 8px;
  color: #777;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
}

.catalog-price {
  min-height: 0 !important;
  margin: 2px 0 10px !important;
  color: var(--ink) !important;
  font-size: 18px !important;
  font-weight: 900;
}

.catalog-card p {
  min-height: 50px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.catalog-btn:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.catalog-empty {
  margin-top: 30px;
  padding: 48px 24px;
  border: 1px dashed #cfcac1;
  text-align: center;
  background: #fbfaf7;
}

.catalog-empty h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.catalog-empty p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .catalog-shell {
    grid-template-columns: 1fr;
  }

  .catalog-grid[hidden],
.catalog-empty[hidden] {
  display: none !important;
}

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

@media (max-width: 700px) {
  .catalog-heading,
  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar p {
    margin-right: 0;
  }

  .catalog-toolbar label,
  .catalog-toolbar select {
    width: 100%;
  }

  .catalog-grid[hidden],
.catalog-empty[hidden] {
  display: none !important;
}

.catalog-grid {
    grid-template-columns: 1fr;
  }
}
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.cart-toggle:hover {
  background: var(--red);
}

.cart-icon {
  font-size: 20px;
  line-height: 1;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.catalog-actions {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0 8px;
}

.catalog-btn {
  border-radius: 0;
  cursor: pointer;
}

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

.catalog-btn-primary:hover {
  background: var(--red-dark);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.62);
}

.cart-backdrop[hidden] {
  display: none !important;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(430px, 100%);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
  box-shadow: -24px 0 50px rgba(0, 0, 0, 0.28);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head h2 {
  margin: 0;
  font-size: 26px;
}

.cart-drawer-head button {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-drawer-items {
  overflow: auto;
  padding: 18px 20px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 0 0 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.drawer-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #f5f2ed;
}

.drawer-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
}

.drawer-item p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.remove-item {
  border: 0;
  align-self: start;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 40px 46px 40px;
  align-items: center;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  overflow: hidden;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(238, 27, 36, 0.12);
}

.qty-control button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, transform 120ms ease;
}

.qty-control button:hover {
  background: var(--red-dark);
}

.qty-control button:active {
  transform: scale(0.92);
}

.qty-control button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--ink);
  outline-offset: -4px;
}

.qty-control span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 40px;
  text-align: center;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  font-weight: 800;
}

.cart-empty-message {
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 900;
}

.cart-drawer-footer p {
  margin: 0 0 10px;
}

.cart-phone-note {
  color: var(--muted);
  line-height: 1.6;
}

.cart-phone-note a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.cart-drawer-link,
.cart-checkout-btn,
.cart-tools-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border: 0;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-drawer-link:hover,
.cart-checkout-btn:hover,
.cart-tools-row button:hover {
  background: var(--red-dark);
}

.cart-page {
  background: var(--white);
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 190px;
  color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(90deg, #151515 0%, #24211f 58%, #3a1114 100%);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid rgba(238, 27, 36, 0.42);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-steps strong,
.checkout-steps a {
  color: var(--white);
  text-decoration: none;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 82px;
}

.cart-table {
  border-top: 1px solid var(--line);
}

.cart-row,
.cart-table-head {
  display: grid;
  grid-template-columns: 40px 86px minmax(0, 1fr) 150px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-table-head {
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.cart-row img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  background: #f5f2ed;
}

.cart-row h2 {
  margin: 0;
  font-size: 17px;
}

.cart-tools-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.cart-tools-row button {
  width: auto;
  min-width: 190px;
  background: #c9c5bd;
  color: var(--white);
}

.cart-summary-card {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
}

.cart-summary-card h1 {
  margin: 0 0 28px;
  font-size: 26px;
}

.cart-offer-note {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cart-contact-link {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

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

  .cart-row,
  .cart-table-head {
    grid-template-columns: 34px 72px minmax(0, 1fr);
  }

  .cart-table-head span:nth-child(n+4),
  .cart-row .qty-control {
    grid-column: 3;
  }

  .cart-tools-row {
    justify-content: stretch;
  }

  .cart-tools-row button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .checkout-steps {
    min-height: 140px;
    flex-wrap: wrap;
  }

  .drawer-item {
    grid-template-columns: 58px minmax(0, 1fr) auto;
  }
}
.summary-total {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 22px;
}

.site-footer {
  display: block;
  justify-content: initial;
  gap: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(90deg, #151515 0%, #24211f 62%, #3a1114 100%);
  border-top: 4px solid var(--red);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.75fr) minmax(170px, 0.8fr) minmax(130px, 0.6fr);
  gap: 52px;
  width: min(920px, calc(100% - 96px));
  margin: 0 auto;
  padding: 42px 0 34px;
  justify-content: center;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.footer-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  padding: 7px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand h2,
.footer-info h3 {
  margin: 0 0 10px;
  color: var(--white);
}

.footer-brand p,
.footer-info p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-info {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.footer-info a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  width: min(920px, calc(100% - 96px));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .footer-inner {
    width: min(720px, calc(100% - 48px));
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    width: min(720px, calc(100% - 48px));
  }
}

@media (max-width: 560px) {
  .footer-inner {
    width: min(420px, calc(100% - 36px));
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    width: min(420px, calc(100% - 36px));
  }

  .footer-brand {
    flex-direction: column;
  }
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d8a84;
  font-weight: 400;
  opacity: 1;
}
.map-panel-wide {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper);
}

.map-panel-wide iframe {
  height: clamp(360px, 42vw, 520px);
}
.contact-title-block {
  margin: 0 0 24px;
}

.contact-title-block h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-title-block span {
  display: block;
  width: min(240px, 70%);
  height: 3px;
  margin: 22px 0 16px;
  background: linear-gradient(90deg, var(--red), #171514);
}

.contact-title-block p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}
.service-title-divider {
  display: block;
  justify-self: center;
  width: min(260px, 72vw);
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ffffff);
}
.split-cta {
  min-height: 56px;
  margin-top: 26px;
  padding-inline: 30px;
  border: 2px solid var(--red);
  box-shadow: 0 14px 28px rgba(237, 28, 36, 0.22);
  font-size: 16px;
}

.split-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(237, 28, 36, 0.28);
}
/* Maintenance callout background */
.section.split {
  width: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  justify-content: center;
  margin: 0;
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(18, 17, 16, 0.66), rgba(18, 17, 16, 0.66)), url("../images/maintenance2.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.section.split .split-image {
  display: none;
}

.section.split .split-copy {
  max-width: 820px;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.section.split .split-copy h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.38);
}

.section.split .split-cta {
  margin-top: 0;
}
.catalog-grid.catalog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.catalog-grid.catalog-list .catalog-card {
  grid-template-columns: 150px minmax(180px, 1fr) auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  justify-items: start;
  gap: 4px 22px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  text-align: left;
}

.catalog-grid.catalog-list .catalog-card img {
  grid-row: 1 / 4;
  width: 150px;
  height: 130px;
  padding: 0;
}

.catalog-grid.catalog-list .catalog-card h2 {
  margin: 0;
  font-size: 18px;
  color: var(--ink);
}

.catalog-grid.catalog-list .catalog-price {
  margin: 0 !important;
}

.catalog-grid.catalog-list .catalog-card p:not(.catalog-price) {
  min-height: 0;
  margin: 0;
  max-width: 430px;
}

.catalog-grid.catalog-list .catalog-actions {
  grid-column: 3;
  grid-row: 1 / 4;
  align-self: center;
  width: 190px;
  padding: 0;
}

@media (max-width: 700px) {
  .catalog-grid.catalog-list .catalog-card {
    grid-template-columns: 96px 1fr;
    padding: 14px;
  }

  .catalog-grid.catalog-list .catalog-card img {
    width: 96px;
    height: 96px;
  }

  .catalog-grid.catalog-list .catalog-actions {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    margin-top: 8px;
  }
}
.catalog-card[data-product-url] {
  cursor: pointer;
}

.catalog-card[data-product-url]:hover h2 {
  color: var(--red);
}

.product-detail-page {
  background: var(--white);
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  color: var(--red);
}

.product-breadcrumbs strong {
  color: var(--ink);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 72px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 76px;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 620px;
  background: transparent;
  border: 0;
}

.product-detail-media img {
  width: min(640px, 100%);
  max-height: 620px;
  object-fit: contain;
}

.product-detail-info {
  align-self: start;
  padding-top: 8px;
}

.product-detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.product-detail-summary {
  margin: 0 0 18px;
  color: #45413d;
  font-size: 18px;
}

.product-detail-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: #383331;
  font-size: 16px;
}

.product-detail-price {
  margin: 0 0 18px !important;
  color: var(--red-dark) !important;
  font-size: clamp(28px, 3vw, 36px) !important;
  font-weight: 900;
}

.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.product-detail-meta span {
  display: inline-flex;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fbfaf7;
  font-size: 14px;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(160px, 210px);
  gap: 10px;
}

.product-detail-actions .catalog-btn {
  min-height: 44px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .product-detail-actions {
    grid-template-columns: 1fr;
  }
}
.model-picker {
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.model-picker h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.model-picker p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

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

.model-option {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.model-option.active,
.model-option:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}
.checkout-page {
  background: #fff;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 82px;
}

.checkout-form {
  padding: 0;
}

.checkout-form h1 {
  margin: 0 0 26px;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
}

.checkout-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.checkout-form label span {
  color: var(--red);
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 0;
  background: #f5f4f1;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: 1px solid transparent;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline-color: rgba(238, 27, 36, 0.35);
  background: #fff;
}

.checkout-form textarea {
  resize: vertical;
  min-height: 118px;
}

.checkout-summary-card {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.checkout-summary-card h2 {
  margin: 0 0 24px;
  font-size: 26px;
  text-transform: uppercase;
}

.checkout-order-head,
.checkout-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.checkout-order-head {
  padding: 0 0 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-order-item {
  grid-template-columns: 64px minmax(0, 1fr) 110px;
  padding: 16px 0;
}

.checkout-order-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
}

.checkout-order-item h3 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.35;
}

.checkout-order-item strong,
.checkout-total-line strong {
  color: #174c70;
}

.checkout-line {
  padding-top: 16px;
}

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

@media (max-width: 640px) {
  .checkout-field-grid {
    grid-template-columns: 1fr;
  }

  .checkout-order-head {
    display: none;
  }

  .checkout-order-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .checkout-order-item strong {
    grid-column: 2;
  }
}
.order-complete-panel {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 96px;
  text-align: center;
}

.order-complete-panel h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
}

.order-complete-panel p:not(.section-kicker) {
  margin: 0 auto 28px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.order-complete-panel .cart-checkout-btn {
  width: auto;
  min-width: 240px;
  padding: 0 26px;
}
.catalog-model-select,
.product-model-select {
  display: grid;
  gap: 6px;
  width: 100%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.catalog-model-select select,
.product-model-select select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.catalog-model-select select:focus,
.product-model-select select:focus {
  outline: 2px solid rgba(238, 27, 36, 0.22);
  border-color: var(--red);
}

.model-select-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(238, 27, 36, 0.18);
}

.model-select-panel {
  margin: 24px 0;
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: #fbfaf7;
}

.model-select-panel h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.model-select-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.product-model-select {
  max-width: 360px;
}

.product-model-select select {
  min-height: 44px;
}

.catalog-grid.catalog-list .catalog-model-select {
  min-width: 190px;
}
.catalog-actions [data-cart-add],
.product-detail-actions [data-cart-add] {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  box-shadow: 0 12px 22px rgba(238, 27, 36, 0.22);
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease, background 160ms ease;
}

.catalog-actions [data-cart-add]:hover,
.product-detail-actions [data-cart-add]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(238, 27, 36, 0.28);
}

.catalog-actions [data-cart-add]:disabled,
.product-detail-actions [data-cart-add]:disabled {
  color: #8d8984;
  background: #e5e1db;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 1;
}

.product-detail-actions {
  grid-template-columns: minmax(200px, 280px) !important;
}
