/* FONT */
@font-face {
  font-family: 'Talina';
  src: url('../fonts/talina-font.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Greater Theory';
  src: url('../fonts/greater-theory.otf') format('opentype');
  font-display: swap;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
main,
section,
div,
p,
h1,
h2,
h3,
li,
a,
span,
label,
button {
  min-width: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  z-index: 2000;
  padding: 12px 16px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  border-radius: 10px;
}

.skip-link:focus {
  top: 14px;
}

/* BODY */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;

  background: url('../images/steel.jpg') center center / cover no-repeat;
  background-attachment: fixed;

  padding-top: 132px;
  overflow-x: hidden;
}

h1,
h2,
h3,
.nav-container a,
.btn,
.catalog-eyebrow,
.hero p,
.home-sitelink-card h3 {
  font-family: 'Greater Theory', Arial, sans-serif;
  text-wrap: balance;
}

p,
li,
a,
span,
label,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

/* LOGO WATERMARK */
body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;

  background: url('../images/logo1.png') center / contain no-repeat;

  opacity: 0.06;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);

  height: 132px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: height 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

/* NAV */
.nav-container {
  display: grid;
  grid-template-columns: 1fr 1fr 260px 1fr 1fr;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  padding: 0 56px;
  transition: grid-template-columns 0.22s ease, padding 0.22s ease;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-left {
  grid-column: 1 / 3;
  justify-self: stretch;
  justify-content: space-around;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 3 / 4;
  width: 260px;
  cursor: pointer;
}

.nav-center-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
}

.nav-right {
  grid-column: 4 / 6;
  justify-self: stretch;
  justify-content: space-around;
}

.nav-left a,
.nav-right a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: font-size 0.22s ease, letter-spacing 0.22s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffd54a;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    height: auto;
    padding: 12px 20px;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    grid-column: auto;
    width: auto;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  header {
    height: auto;
  }

  body {
    padding-top: 150px;
  }

  .cart-fab {
    top: 126px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}

.logo {
  height: 112px;
  display: block;
  pointer-events: none;
  transition: height 0.22s ease, transform 0.22s ease;
}

.cart-fab {
  position: fixed;
  top: 108px;
  right: 18px;
  z-index: 1001;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  padding: 10px;
  transition: top 0.22s ease, width 0.22s ease, height 0.22s ease, transform 0.22s ease;
}

body.scrolled-header header {
  height: 104px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

body.scrolled-header .nav-container {
  grid-template-columns: 1fr 1fr 220px 1fr 1fr;
  padding: 0 42px;
}

body.scrolled-header .nav-left a,
body.scrolled-header .nav-right a {
  font-size: 1.12rem;
  letter-spacing: 0.5px;
}

body.scrolled-header .logo {
  height: 86px;
  transform: translateY(2px);
}

body.scrolled-header .cart-fab {
  top: 84px;
}

.cart-fab-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  padding: 0 40px 36px;
  background: #050505;
  color: white;
}

.footer-top-line {
  height: 10px;
  background: #c00000;
}

.footer-grid {
  max-width: 1480px;
  margin: 0 auto;
  padding: 52px 0 12px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand h2,
.footer-column h3 {
  margin: 0 0 18px;
  color: white;
}

.footer-brand h2 {
  font-size: 2.2rem;
}

.footer-column h3 {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-stripes {
  width: 78%;
  height: 18px;
  margin: 18px 0 26px;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0 10px,
    white 10px 14px
  );
  opacity: 0.9;
}

.footer-brand p,
.footer-column p,
.footer-column li {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a {
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

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

.footer-contact-column {
  grid-column: span 1;
}

.footer-contact-grid {
  display: grid;
  gap: 22px;
}

.footer-contact-block p:first-of-type {
  margin-top: 0;
}

.footer-column li + li,
.footer-column p + p {
  margin-top: 10px;
}

.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 0 18px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .footer-brand h2 {
    font-size: 1.9rem;
  }

  .footer-column h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 900px) {
  .footer-bottom-links,
  .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-family-hero,
  .product-family-content {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: min(100%, 1100px);
  padding: 0 20px;
  text-align: center;
}

/* HERO */
.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0 56px;
}

.hero-content {
  width: min(100%, 1040px);
  margin: 0 auto;
  background: rgba(0,0,0,0.6);
  padding: 44px 48px;
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 18px;
  max-width: 13ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 0.94;
}

.hero-content p {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: Arial, sans-serif;
}

/* ABOUT */
.about {
  padding: 100px 20px;
  background: rgba(39,39,39,0.7);
  backdrop-filter: blur(8px);
}

.home-sitelinks {
  padding: 90px 20px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(8px);
}

.home-sitelinks .container {
  max-width: 1280px;
}

.home-sitelinks h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.1vw, 3.15rem);
  line-height: 1.02;
}

.home-sitelinks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.home-sitelink-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  text-align: left;
  height: 100%;
  transition: transform 0.18s ease, background 0.18s ease;
  overflow: hidden;
}

.home-sitelink-card:hover,
.home-sitelink-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.home-sitelink-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.home-sitelink-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.home-sitelinks-grid-primary > :last-child {
  grid-column: 2 / 3;
}

.home-sitelinks-grid-local {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(100%, 940px);
    padding: 38px 36px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.15rem, 4.6vw, 3.75rem);
  }

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

  .home-sitelinks-grid-primary > :last-child {
    grid-column: 1 / -1;
    max-width: min(100%, 420px);
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 28px 0 36px;
  }

  .hero-content {
    padding: 30px 24px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 8.3vw, 3rem);
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-sitelinks {
    padding: 68px 20px;
  }

  .home-sitelinks h2 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 7vw, 2.7rem);
  }
}

@media (max-width: 760px) {
  .home-sitelinks-grid {
    grid-template-columns: 1fr;
  }

  .home-sitelinks-grid-primary > :last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .home-sitelink-card {
    padding: 22px 20px;
  }

  .home-sitelink-card h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .home-sitelink-card p {
    font-size: 1rem;
  }
}

/* CTA */
.cta {
  padding: 100px 20px;
  background: rgba(39,39,39,0.7);
  backdrop-filter: blur(8px);
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: rgb(192, 0, 0);
  color: white;
  text-decoration: none;
}

.hero-cta-btn {
  margin-top: 28px;
  padding: 18px 40px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  min-width: 290px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(192, 0, 0, 0.3);
}

/* PRODUCTS PAGE */
.products-catalog {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 24px auto 80px;
  padding: 0 28px;
}

.products-tabs {
  display: inline-flex;
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.products-tab {
  padding: 12px 24px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.products-tab[href="build-order.html"] {
  padding: 15px 34px;
  font-size: 1.08rem;
}

.products-tab.active {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.products-catalog-page .products-catalog-shell {
  min-height: calc(100vh - 200px);
  padding: 40px 42px 60px;
  background: rgba(39, 39, 39, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.catalog-section + .catalog-section {
  margin-top: 56px;
}

.catalog-heading {
  margin-bottom: 26px;
  text-align: center;
}

.catalog-eyebrow {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-heading h1,
.catalog-heading h2 {
  margin: 0 0 12px;
  font-size: 3rem;
}

.catalog-heading p {
  max-width: 760px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.catalog-grid {
  display: grid;
  gap: 26px;
}

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

.catalog-grid-five {
  grid-template-columns: repeat(6, minmax(140px, 1fr));
}

.catalog-card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  text-align: center;
}

.catalog-link-card {
  display: block;
  color: white;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.catalog-link-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.catalog-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.catalog-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px dashed rgba(255, 255, 255, 0.35);
}

.catalog-card h2,
.catalog-card h3 {
  margin: 16px 0 4px;
  font-size: 1.45rem;
  word-break: normal;
}

.products-builder-page .products-page {
  max-width: 980px;
  margin: 40px auto 80px;
  padding: 48px 56px 56px;
  position: relative;
  z-index: 1;
  background: rgba(39, 39, 39, 0.78);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.products-builder-page .products-page h2 {
  margin: 0 0 28px;
  font-size: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.products-builder-page .builder {
  width: 100%;
  max-width: 100%;
}

.products-builder-page .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  margin-bottom: 24px;
}

.products-builder-page .field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  text-align: left;
}

.products-builder-page .field label {
  margin: 0;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.5px;
}

.products-builder-page .field select,
.products-builder-page .field input {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: black;
}

.products-builder-page .big-btn {
  display: block;
  border: 1px solid #68180d;
  padding: 16px 38px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  margin: 18px auto 0;
  width: fit-content;
}

.products-builder-page #result {
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  color: white;
}

@media (max-width: 760px) {
  .products-catalog {
    padding: 0 16px;
  }

  .products-catalog-page .products-catalog-shell {
    padding: 28px 18px 40px;
  }

  .catalog-heading h1,
  .catalog-heading h2 {
    font-size: 2.25rem;
  }

  .catalog-grid-three,
  .catalog-grid-five {
    grid-template-columns: 1fr;
  }

  .products-builder-page .products-page {
    margin: 24px 16px 60px;
    padding: 32px 22px 40px;
  }

  .products-builder-page .products-page h2 {
    font-size: 2.3rem;
  }

  .products-builder-page .row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* CART PAGE */
.cart-page-body {
  background-position: center top;
}

.services-page {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 24px auto 90px;
  padding: 0 28px;
}

.services-hero-panel,
.service-story {
  background: rgba(39, 39, 39, 0.76);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.services-hero-panel {
  padding: 48px 42px;
  text-align: center;
}

.services-hero-panel h1 {
  margin: 0 0 14px;
  font-size: 3.5rem;
}

.services-hero-panel p:last-child {
  max-width: 860px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.service-story {
  margin-top: 28px;
  padding: 30px 28px;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
  min-height: 62vh;
  padding: 36px 18px;
  opacity: 0.22;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-kicker {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.66);
}

.service-copy h2 {
  margin: 0 0 14px;
  font-size: 2.6rem;
}

.service-copy p:last-child {
  margin: 0;
  max-width: 720px;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.service-placeholder {
  min-height: 320px;
  border-radius: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.service-image {
  width: 100%;
  min-height: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.cart-page {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 24px auto 80px;
  padding: 0 28px;
}

.cart-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 380px;
  gap: 28px;
  align-items: start;
}

.cart-main,
.cart-summary-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.cart-main {
  padding: 32px;
  color: #111;
}

.cart-main-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.cart-eyebrow {
  margin: 0 0 8px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f5f5f;
}

.cart-main-header h1 {
  margin: 0;
  color: #111;
  font-size: 2.7rem;
}

.cart-subtitle {
  margin: 10px 0 0;
  font-family: Arial, sans-serif;
  color: #444;
  max-width: 640px;
  line-height: 1.5;
}

.cart-link {
  color: #0b63ce;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cart-checkout-panel {
  margin-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  padding-top: 28px;
}

.cart-checkout-header h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: 2rem;
}

.cart-checkout-header p:last-child {
  margin: 0 0 18px;
  color: #555;
  line-height: 1.65;
}

.cart-checkout-form {
  display: grid;
  gap: 16px;
}

.cart-checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-checkout-field span {
  color: #444;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-checkout-field input,
.cart-checkout-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

.cart-checkout-field textarea {
  resize: vertical;
  min-height: 130px;
}

.cart-order-submit {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.cart-status {
  margin: 0 0 18px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: #333;
}

.cart-render-error {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff3f1;
  color: #8b1f12;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #fff;
}

.cart-item-media {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #f6f7fb;
}

.cart-item-media img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.cart-item-badge {
  margin: 0 0 8px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a6a6a;
}

.cart-item-details h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1.5rem;
  line-height: 1.05;
}

.cart-item-spec {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #444;
  line-height: 1.5;
}

.cart-item-static {
  margin-top: 4px;
}

.cart-item-static[hidden],
.cart-item-editors[hidden] {
  display: none !important;
}

.cart-edit-link {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b63ce;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-item-editors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin-top: 16px;
}

.cart-editor {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-editor span {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.cart-editor select,
.cart-editor input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.cart-editor-actions {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  grid-column: 1 / -1;
}

.cart-save-btn,
.cart-cancel-btn {
  min-width: 110px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.cart-save-btn {
  border: 0;
  background: #c00000;
  color: white;
}

.cart-cancel-btn {
  border: 1px solid #d2d2d2;
  background: #fff;
  color: #111;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cart-item-actions button,
.cart-item-actions span {
  font-family: Arial, sans-serif;
}

.cart-item-actions button {
  min-width: 38px;
  height: 38px;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  cursor: pointer;
}

.cart-item-actions span {
  min-width: 72px;
  text-align: center;
  font-weight: 700;
}

.cart-item-actions .cart-remove {
  padding: 0 14px;
  min-width: auto;
  border-radius: 999px;
}

.cart-item-price {
  text-align: right;
  color: #111;
}

.cart-item-price span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.cart-item-price small {
  font-family: Arial, sans-serif;
  color: #666;
}

.cart-summary {
  position: sticky;
  top: 160px;
}

.cart-summary-card {
  padding: 28px;
  color: #111;
}

.cart-summary-card h2,
.cart-help h3 {
  margin: 0 0 20px;
  color: #111;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  font-family: Arial, sans-serif;
  color: #333;
}

.summary-row:last-of-type {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
}

.cart-summary-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.cart-clear-btn {
  width: 100%;
  margin-top: 12px;
  padding: 14px 20px;
  border: 1px solid #d2d2d2;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.cart-clear-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.cart-help {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.cart-help p,
.cart-empty p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #444;
  line-height: 1.6;
}

.cart-empty {
  padding: 42px 20px;
  text-align: center;
  border: 2px dashed #dadada;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
}

.cart-empty h2 {
  margin: 0 0 10px;
  color: #111;
}

.contact-page {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 24px auto 80px;
  padding: 0 28px;
}

.contact-panel,
.contact-info-panel {
  background: rgba(39, 39, 39, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.contact-panel {
  padding: 42px;
  opacity: 0.2;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-info-panel {
  margin-top: 28px;
  padding: 42px;
  display: grid;
  gap: 28px;
  opacity: 0.2;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-panel.is-visible,
.contact-info-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-jump-panel {
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(39, 39, 39, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  opacity: 0.2;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-jump-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.contact-jump-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#contact-info-section,
#business-info-section,
#socials-section {
  scroll-margin-top: 150px;
}

.contact-panel-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-panel-header h1,
.contact-info-group h2 {
  margin: 0 0 12px;
  font-size: 3rem;
}

.contact-panel-header p:last-child,
.contact-info-list p,
.social-item span:last-child {
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field[hidden] {
  display: none;
}

.contact-field span {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.contact-field textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.contact-info-group + .contact-info-group {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.order-disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.order-disclaimer p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.legal-page,
.product-family-page {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 24px auto 80px;
  padding: 0 28px;
}

.legal-card,
.product-family-hero,
.product-family-card {
  background: rgba(39, 39, 39, 0.78);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.legal-card {
  padding: 42px;
}

.legal-card h1 {
  margin: 0 0 12px;
  font-size: 3rem;
}

.legal-updated {
  margin: 0 0 24px;
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.76);
}

.legal-section + .legal-section {
  margin-top: 22px;
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.legal-section p {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.product-family-hero {
  padding: 38px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.product-family-copy h1 {
  margin: 0 0 16px;
  font-size: 3rem;
}

.product-family-copy p:last-of-type,
.product-family-card li {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.product-family-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.product-family-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.product-family-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.product-family-card {
  padding: 30px;
}

.product-family-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.product-family-card ul {
  margin: 0;
  padding-left: 20px;
}

.product-family-links {
  list-style: none;
  padding-left: 0;
}

.product-family-links li + li {
  margin-top: 10px;
}

.product-family-links a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-family-links a:hover,
.product-family-links a:focus-visible {
  color: #f0c857;
}

.contact-info-list {
  display: grid;
  gap: 10px;
}

.contact-info-list p {
  margin: 0;
}

.social-list {
  display: grid;
  gap: 14px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
}

.social-item-static {
  cursor: default;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.social-facebook { background: #1877f2; }
.social-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-tiktok { background: #111; border: 1px solid rgba(255,255,255,0.2); }
.social-youtube { background: #ff0000; }

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

  .cart-summary {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .services-page {
    padding: 0 16px;
  }

  .services-hero-panel,
  .service-story {
    border-radius: 14px;
  }

  .services-hero-panel {
    padding: 34px 18px;
  }

  .services-hero-panel h1 {
    font-size: 2.5rem;
  }

  .service-story {
    padding: 18px 14px;
  }

  .service-section {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding: 24px 8px;
  }

  .service-copy h2 {
    font-size: 2rem;
  }

  .service-placeholder {
    min-height: 220px;
  }

  .service-image {
    min-height: 220px;
    height: 220px;
  }

  .contact-page {
    padding: 0 16px;
  }

  .contact-panel,
  .contact-info-panel {
    padding: 28px 18px;
  }

  .contact-panel-header h1,
  .contact-info-group h2 {
    font-size: 2.2rem;
  }

  .cart-page {
    padding: 0 16px;
  }

  .cart-main {
    padding: 24px 18px;
  }

  .cart-main-header {
    flex-direction: column;
  }

  .cart-main-header h1 {
    font-size: 2.1rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cart-item-price {
    text-align: left;
  }

  .cart-item-editors {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  body {
    background-attachment: scroll;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 182px;
    background-position: center top;
    background-size: cover;
  }

  body::after {
    width: 420px;
    height: 420px;
    opacity: 0.04;
  }

  header {
    height: auto;
    min-height: 168px;
  }

  .nav-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "left right";
    gap: 14px 20px;
    padding: 14px 20px 18px;
  }

  .nav-left,
  .nav-center,
  .nav-right {
    width: 100%;
  }

  .nav-center {
    grid-area: logo;
    justify-self: center;
  }

  .nav-left {
    grid-area: left;
    justify-content: center;
    gap: 18px;
  }

  .nav-right {
    grid-area: right;
    justify-content: center;
    gap: 18px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 1.12rem;
    letter-spacing: 0.4px;
  }

  .logo {
    height: 88px;
  }

  .cart-fab {
    top: 126px;
    right: 16px;
    width: 58px;
    height: 58px;
    padding: 9px;
  }

  .hero {
    min-height: 72svh;
    padding: 34px 18px;
  }

  .hero-content {
    width: min(100%, 760px);
    padding: 34px 22px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    line-height: 0.96;
  }

  .hero-content p {
    font-size: 1.08rem;
    line-height: 1.55;
  }

  .about,
  .home-sitelinks,
  .cta {
    min-height: 52svh;
    padding: 86px 22px;
    display: flex;
    align-items: center;
  }

  .about .container,
  .home-sitelinks .container,
  .cta .container {
    width: 100%;
  }

  .about h2,
  .home-sitelinks h2,
  .cta h2 {
    font-size: clamp(2rem, 5.4vw, 3.1rem);
    line-height: 0.98;
  }

  .about p,
  .home-sitelinks p,
  .cta p {
    font-size: 1.06rem;
    line-height: 1.6;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

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

  .contact-sales-card {
    grid-column: 1 / -1;
    max-width: min(100%, 420px);
  }

  .btn {
    min-height: 54px;
    padding: 16px 28px;
    font-size: 1rem;
  }

  .hero-cta-btn {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    padding: 18px 24px;
    font-size: 1.05rem;
  }

  .products-catalog {
    padding: 0 14px;
  }

  .products-catalog-shell,
  .products-page,
  .services-hero-panel,
  .contact-panel,
  .contact-info-panel,
  .cart-main,
  .cart-summary {
    border-radius: 20px;
  }

  .products-catalog-shell {
    padding: 26px 16px 40px;
  }

  .products-tabs {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .products-tab {
    min-width: 150px;
    text-align: center;
  }

  .catalog-section + .catalog-section {
    margin-top: 48px;
  }

  .catalog-heading h1,
  .catalog-heading h2 {
    font-size: clamp(2.1rem, 6vw, 3.2rem);
    line-height: 0.98;
  }

  .catalog-heading p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .catalog-grid-three,
  .catalog-grid-five {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-card {
    padding: 18px;
  }

  .catalog-card h2,
  .catalog-card h3 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .catalog-image {
    height: 220px;
  }

  .products-page {
    margin: 16px auto 56px;
    padding: 30px 18px 40px;
  }

  .products-page h2 {
    font-size: clamp(2.3rem, 7vw, 3.4rem);
    margin-bottom: 24px;
    text-align: center;
  }

  .builder {
    width: 100%;
    max-width: none;
  }

  .row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-bottom: 18px;
  }

  .field {
    width: 100%;
  }

  .field label {
    min-width: 0;
    margin-bottom: 8px;
    font-size: 1.18rem;
  }

  .field select {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 1.08rem;
    border-radius: 12px;
  }

  .big-btn {
    width: 100%;
    min-height: 56px;
    font-size: 1.05rem;
  }

  .services-page,
  .contact-page,
  .cart-page {
    padding: 0 14px;
  }

  .services-hero-panel,
  .contact-jump-panel,
  .contact-panel,
  .contact-info-panel,
  .cart-main,
  .cart-summary {
    padding: 30px 18px;
  }

  .services-hero-panel h1,
  .contact-panel-header h1,
  .contact-info-group h2,
  .cart-main-header h1 {
    font-size: clamp(2.15rem, 6vw, 3.2rem);
    line-height: 0.98;
  }

  .service-story {
    padding: 28px 18px;
  }

  .service-section {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 26px 10px;
  }

  .service-copy h2 {
    font-size: clamp(2rem, 5.4vw, 2.9rem);
  }

  .service-copy p,
  .contact-info-list p,
  .contact-panel-header p:last-child {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .service-image,
  .service-placeholder {
    height: 260px;
    min-height: 260px;
  }

  .contact-field span {
    font-size: 0.98rem;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    min-height: 56px;
    font-size: 1rem;
  }

  .contact-field textarea {
    min-height: 220px;
  }

  .cart-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-item-meta,
  .cart-item-price {
    text-align: left;
  }

  .cart-item-editors {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 0 18px 32px;
  }

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

  .footer-brand,
  .footer-column {
    padding-right: 0;
  }

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

  .footer-brand h2,
  .footer-column h3 {
    font-size: 2rem;
  }

  .footer-brand p,
  .footer-column li,
  .footer-column p,
  .footer-bottom p {
    font-size: 1rem;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 176px;
  }

  .nav-container {
    padding: 12px 14px 16px;
    gap: 12px 10px;
  }

  .nav-left,
  .nav-right {
    gap: 12px;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.96rem;
  }

  .logo {
    height: 78px;
  }

  .cart-fab {
    top: 122px;
    right: 10px;
    width: 52px;
    height: 52px;
  }

  .hero-content,
  .products-catalog-shell,
  .services-hero-panel,
  .contact-panel,
  .contact-info-panel,
  .cart-main,
  .cart-summary {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1,
  .hero-content h2,
  .catalog-heading h1,
  .catalog-heading h2,
  .products-page h2,
  .services-hero-panel h1,
  .contact-panel-header h1,
  .contact-info-group h2,
  .cart-main-header h1,
  .about h2,
  .cta h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .catalog-image {
    height: 190px;
  }
}

@media (max-width: 700px) {
  .home-sitelinks-grid {
    grid-template-columns: 1fr;
  }

  .home-sitelinks-grid-primary > :last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

@media screen and (max-width: 820px) and (orientation: portrait) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    padding-top: 108px !important;
    background-position: center top !important;
    background-size: auto 100% !important;
  }

  header {
    min-height: 96px !important;
  }

  .nav-container {
    grid-template-columns: 1fr 1fr 104px 1fr 1fr !important;
    gap: 0 !important;
    padding: 0 8px !important;
    height: 96px !important;
  }

  .nav-center {
    grid-column: 3 / 4 !important;
    width: 104px !important;
    justify-self: center !important;
    align-self: center !important;
    transform: translateY(4px) !important;
  }

  .nav-left,
  .nav-right {
    width: 100% !important;
    justify-content: space-evenly !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
  }

  .nav-left {
    grid-column: 1 / 3 !important;
  }

  .nav-right {
    grid-column: 4 / 6 !important;
  }

  .nav-left a,
  .nav-right a {
    font-size: 0.7rem !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
  }

  .logo {
    height: 72px !important;
  }

  .cart-fab {
    top: 92px !important;
    right: 8px !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
    padding: 6px !important;
  }

  .hero {
    min-height: 68svh !important;
    padding: 22px 12px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 16px !important;
  }

  .hero-content h1,
  .hero-content h2,
  .catalog-heading h1,
  .catalog-heading h2,
  .products-page h2,
  .services-hero-panel h1,
  .contact-panel-header h1,
  .contact-info-group h2,
  .cart-main-header h1,
  .about h2,
  .cta h2,
  .service-copy h2 {
    font-size: clamp(1.7rem, 9vw, 2.5rem) !important;
    line-height: 0.95 !important;
  }

  .hero-content p,
  .catalog-heading p,
  .about p,
  .cta p,
  .service-copy p,
  .contact-info-list p,
  .contact-panel-header p:last-child,
  .footer-brand p,
  .footer-column li,
  .footer-column p,
  .footer-bottom p {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
  }

  .about,
  .home-sitelinks,
  .cta {
    min-height: 44svh !important;
    padding: 64px 14px !important;
  }

  .products-catalog,
  .services-page,
  .contact-page,
  .cart-page {
    padding: 0 10px !important;
  }

  .products-catalog-shell,
  .products-page,
  .services-hero-panel,
  .service-story,
  .contact-panel,
  .contact-info-panel,
  .cart-main,
  .cart-summary {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  .products-tabs {
    display: flex !important;
    width: 100% !important;
    gap: 8px !important;
    padding: 6px !important;
  }

  .products-tab {
    min-width: 0 !important;
    flex: 1 1 0 !important;
    font-size: 0.92rem !important;
    padding: 10px 8px !important;
  }

  .catalog-grid,
  .catalog-grid-three,
  .catalog-grid-five {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home-sitelinks-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 22px !important;
  }

  .home-sitelinks-grid-primary > :last-child {
    grid-column: auto !important;
    max-width: none !important;
    justify-self: stretch !important;
  }

  .home-sitelink-card {
    padding: 18px !important;
  }

  .home-sitelink-card h3 {
    font-size: 1.3rem !important;
  }

  .catalog-card {
    padding: 14px !important;
  }

  .catalog-card h2,
  .catalog-card h3 {
    font-size: 1.28rem !important;
    line-height: 1.02 !important;
  }

  .catalog-image {
    height: 180px !important;
  }

  .products-page {
    margin: 12px auto 42px !important;
  }

  .row,
  .service-section,
  .cart-shell,
  .cart-item,
  .cart-item-editors {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

  .field {
    width: 100% !important;
  }

  .field label {
    font-size: 1.05rem !important;
  }

  .field select,
  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    min-height: 52px !important;
    width: 100% !important;
    font-size: 0.98rem !important;
  }

  .service-image,
  .service-placeholder {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
  }

  .site-footer {
    padding: 0 12px 20px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 14px !important;
    padding-top: 24px !important;
  }

  .footer-brand,
  .footer-contact-column,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-brand {
    margin-bottom: 2px !important;
  }

  .footer-brand p {
    display: none !important;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .footer-contact-block {
    min-width: 0;
  }

  .footer-contact-block:first-child {
    grid-column: 1 / -1 !important;
  }

  .footer-brand h2,
  .footer-column h3 {
    font-size: 1.28rem !important;
    margin-bottom: 8px !important;
  }

  .footer-brand p,
  .footer-column li,
  .footer-column p,
  .footer-bottom p {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
  }

  .footer-column li + li,
  .footer-column p + p {
    margin-top: 4px !important;
  }

  .footer-stripes {
    width: 58% !important;
    height: 12px !important;
    margin: 12px 0 18px !important;
  }

  .footer-bottom {
    padding-top: 10px !important;
  }
}

@media screen and (max-width: 380px) and (orientation: portrait) {
  .nav-left a,
  .nav-right a {
    font-size: 0.62rem !important;
  }

  .nav-left,
  .nav-right {
    gap: 6px !important;
  }

  .logo {
    height: 64px !important;
  }

  .cart-fab {
    top: 90px !important;
    width: 40px !important;
    height: 40px !important;
  }

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

  .footer-brand,
  .footer-contact-column,
  .footer-bottom {
    grid-column: 1 / -1 !important;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .footer-contact-block:first-child {
    grid-column: 1 / -1 !important;
  }

  .footer-column {
    grid-column: span 1 !important;
  }
}
