:root {
  --primary-color: #0b4f86;
  --primary-dark: #082f52;
  --secondary-color: #e98624;
  --accent-color: #1d85c7;
  --text-color: #142633;
  --text-light: #637581;
  --background-color: #f3f7fa;
  --surface-color: #ffffff;
  --border-color: #d8e2e8;
  --focus-color: #e98624;
  --header-height: 78px;
  --shadow-soft: 0 10px 28px rgba(8, 47, 82, 0.08);
  --shadow-card: 0 18px 38px rgba(8, 47, 82, 0.14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-color);
  background: var(--surface-color);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.cart-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--focus-color);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary-dark);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--border-color);
  box-shadow: 0 7px 22px rgba(8, 47, 82, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: auto; height: 62px; object-fit: contain; }

.desktop-nav {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 24px;
}

.nav-link {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  color: #35505f;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent-color);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active { color: var(--primary-color); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.header-actions,
.cart-button { display: flex; align-items: center; }
.header-actions { gap: 9px; }

.cart-button {
  min-height: 42px;
  padding: 0 6px;
  gap: 7px;
  border: 0;
  color: var(--primary-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.cart-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 6px;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary-color);
  font-size: 12px;
}

.header-cta,
.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 4px;
  color: #fff;
  background: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover { background: var(--primary-dark); }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: min(700px, calc(100svh - 112px));
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--primary-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(4, 27, 48, 0.97) 0%, rgba(4, 37, 66, 0.84) 46%, rgba(4, 37, 66, 0.2) 82%); }
.hero-content { position: relative; z-index: 1; }
.hero-content > * { max-width: 760px; }

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: 58px; line-height: 1.08; letter-spacing: 0; text-transform: uppercase; }
h2 { margin-bottom: 16px; color: var(--primary-dark); font-size: 39px; line-height: 1.18; letter-spacing: 0; }
h3 { letter-spacing: 0; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.hero .eyebrow { color: #73c8f5; }
.hero-description { max-width: 680px; margin-bottom: 32px; color: rgba(255, 255, 255, 0.86); font-size: 19px; }
.hero-actions, .cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.3;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; margin-left: 10px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.button-primary { color: #fff; background: var(--accent-color); }
.button-primary:hover { background: #106fa9; }
.button-secondary { color: #fff; background: var(--primary-color); }
.button-secondary:hover { background: var(--primary-dark); }
.button-outline { color: #fff; border-color: rgba(255, 255, 255, 0.68); background: rgba(255, 255, 255, 0.06); }
.button-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.13); }
.button-light { color: var(--primary-dark); background: #fff; }
.button-light:hover { background: #eaf3f8; }
.button-outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.72); background: transparent; }
.button-outline-light:hover { background: rgba(255, 255, 255, 0.12); }

.company-strip { border-bottom: 1px solid var(--border-color); background: #fff; }
.company-strip-inner { display: grid; grid-template-columns: 1.25fr 0.65fr 0.8fr; }
.company-strip p { margin: 0; padding: 24px 28px; border-right: 1px solid var(--border-color); }
.company-strip p:first-child { padding-left: 0; }
.company-strip p:last-child { border-right: 0; }
.company-strip span { display: block; margin-bottom: 2px; color: var(--text-light); font-size: 12px; text-transform: uppercase; }
.company-strip strong { color: var(--primary-dark); font-size: 14px; }

.section { padding: 96px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading h2, .section-heading p { margin-bottom: 0; }
.section-heading > p { max-width: 510px; color: var(--text-light); }
.section-heading.centered { display: block; max-width: 720px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered h2 { margin-bottom: 14px; }
.section-heading.centered > p { margin-inline: auto; }

.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); align-items: center; gap: 72px; }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.image-caption { position: absolute; right: 14px; bottom: 14px; padding: 7px 11px; color: #fff; background: rgba(8, 47, 82, 0.88); font-size: 12px; }
.about-content > p:not(.eyebrow) { color: var(--text-light); }
.company-facts { margin: 28px 0; border-top: 1px solid var(--border-color); }
.company-facts div { display: grid; grid-template-columns: 145px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--border-color); }
.company-facts dt { color: var(--text-light); font-size: 13px; }
.company-facts dd { margin: 0; color: var(--primary-dark); font-weight: 650; }

.products-section { background: var(--background-color); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid var(--border-color); border-radius: 6px; background: var(--surface-color); box-shadow: 0 4px 14px rgba(8, 47, 82, 0.04); transition: transform 220ms ease, box-shadow 220ms ease; }
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); }
.product-image-wrap { aspect-ratio: 16 / 10; overflow: hidden; background: #dfe8ee; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.product-card:hover .product-image { transform: scale(1.04); }
.product-info { display: flex; flex-direction: column; padding: 24px; }
.product-kicker { margin-bottom: 7px; color: var(--accent-color); font-size: 11px; font-weight: 800; }
.product-info h3 { margin-bottom: 10px; color: var(--primary-dark); font-size: 21px; }
.product-description { flex: 1; margin-bottom: 22px; color: var(--text-light); }
.add-to-cart { width: 100%; min-height: 44px; border: 1px solid var(--primary-color); border-radius: 4px; color: var(--primary-color); background: transparent; cursor: pointer; font-weight: 700; transition: color 180ms ease, background-color 180ms ease; }
.add-to-cart:hover { color: #fff; background: var(--primary-color); }

.solutions-section { color: #fff; background: var(--primary-dark); }
.light-heading h2 { color: #fff; }
.light-heading > p { color: rgba(255, 255, 255, 0.68); }
.solution-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, 0.16); border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.solution-item { position: relative; min-height: 330px; padding: 36px 28px; border-right: 1px solid rgba(255, 255, 255, 0.16); }
.solution-item:last-child { border-right: 0; }
.solution-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 54px; color: #80cdf5; background: rgba(255, 255, 255, 0.08); }
.solution-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.solution-index { position: absolute; top: 38px; right: 26px; color: rgba(255, 255, 255, 0.7); font-size: 32px; font-weight: 800; }
.solution-item h3 { margin-bottom: 13px; font-size: 20px; }
.solution-item > p:last-child { margin-bottom: 0; color: rgba(255, 255, 255, 0.67); }

.applications-section { background: #fff; }
.application-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border-color); border-left: 1px solid var(--border-color); }
.application-grid article { min-height: 190px; padding: 28px; border-right: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.application-grid span { color: var(--accent-color); font-size: 18px; font-weight: 800; }
.application-grid h3 { margin: 28px 0 8px; color: var(--primary-dark); font-size: 20px; }
.application-grid p { margin-bottom: 0; color: var(--text-light); }

.why-section { background: var(--background-color); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.benefit-item { position: relative; min-height: 260px; padding: 42px 36px; border-right: 1px solid var(--border-color); }
.benefit-item:last-child { border-right: 0; }
.benefit-number { display: block; margin-bottom: 42px; color: var(--accent-color); font-size: 18px; font-weight: 800; }
.benefit-item h3 { margin-bottom: 12px; color: var(--primary-dark); font-size: 21px; }
.benefit-item p { margin-bottom: 0; color: var(--text-light); }

.cta-section { padding: 68px 0; color: #fff; background: var(--primary-color); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1.4fr) auto; align-items: center; gap: 60px; }
.cta-inner h2 { max-width: 720px; color: #fff; }
.cta-inner > div:first-child > p:last-child { max-width: 730px; margin-bottom: 0; color: rgba(255, 255, 255, 0.74); }
.cta-section .eyebrow { color: #9edcff; }
.cta-actions { justify-content: flex-end; }

.contact-section { color: #fff; background: #071f33; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: 90px; }
.contact-intro h2 { color: #fff; }
.contact-intro > p:not(.eyebrow) { max-width: 520px; color: rgba(255, 255, 255, 0.7); }
.contact-intro .button { margin-top: 12px; }
.contact-details { font-style: normal; }
.contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.17); }
.contact-row span { color: rgba(255, 255, 255, 0.55); }
.contact-row strong { overflow-wrap: anywhere; }
.contact-row a:hover { color: #9edcff; }

.site-footer { color: rgba(255, 255, 255, 0.64); background: #051724; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.8fr 0.9fr 0.7fr; gap: 48px; padding-top: 66px; padding-bottom: 52px; }
.footer-brand { width: max-content; margin-bottom: 20px; padding: 8px 14px; border-radius: 4px; background: #fff; }
.footer-brand .brand-logo { height: 82px; }
.footer-company > p { max-width: 360px; }
.footer-legal { margin-top: 22px; color: rgba(255, 255, 255, 0.8); font-size: 12px; }
.footer-grid h2 { margin-bottom: 20px; color: #fff; font-size: 15px; }
.footer-grid p { margin-bottom: 8px; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255, 255, 255, 0.11); text-align: center; font-size: 14px; }
.footer-bottom p { margin-bottom: 0; }

.cart-overlay { position: fixed; inset: 0; z-index: 300; visibility: hidden; opacity: 0; transition: visibility 0s linear 260ms, opacity 260ms ease; }
.cart-overlay.open { visibility: visible; opacity: 1; transition-delay: 0s; }
.cart-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(4, 19, 31, 0.64); cursor: default; }
.cart-drawer { position: absolute; top: 0; right: 0; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: min(460px, 100%); height: 100%; color: var(--text-color); background: #fff; box-shadow: -12px 0 40px rgba(7, 28, 39, 0.2); transform: translateX(100%); transition: transform 260ms ease; }
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; min-height: 92px; padding: 20px 24px; gap: 24px; border-bottom: 1px solid var(--border-color); }
.cart-drawer-eyebrow { margin-bottom: 3px; color: var(--accent-color); font-size: 11px; font-weight: 800; }
.cart-drawer-header h2 { margin: 0; font-size: 25px; }
.cart-close { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 auto; padding: 0; border: 0; color: var(--primary-dark); background: transparent; cursor: pointer; }
.cart-close:hover { color: var(--accent-color); }
.cart-close svg { width: 26px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.8; }
.cart-drawer-body { overflow-y: auto; padding: 8px 24px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100%; padding: 50px 20px; text-align: center; }
.cart-empty-icon { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 22px; border-radius: 50%; color: var(--primary-color); background: var(--background-color); }
.cart-empty-icon svg { width: 32px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.cart-empty h3 { margin-bottom: 8px; color: var(--primary-dark); font-size: 20px; }
.cart-empty p { max-width: 300px; margin-bottom: 0; color: var(--text-light); }
.cart-line-item { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.cart-item-image { width: 88px; aspect-ratio: 1; border: 1px solid var(--border-color); object-fit: cover; background: var(--background-color); }
.cart-item-info { min-width: 0; }
.cart-item-label { margin-bottom: 5px; color: var(--accent-color); font-size: 10px; font-weight: 800; }
.cart-item-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.cart-item-top h3 { margin-bottom: 0; color: var(--primary-dark); font-size: 16px; line-height: 1.35; }
.cart-remove { flex: 0 0 auto; padding: 2px 0; border: 0; color: var(--text-light); background: transparent; cursor: pointer; font-size: 13px; }
.cart-remove:hover { color: #bd371f; }
.cart-drawer-footer { padding: 20px 24px 24px; border-top: 1px solid var(--border-color); background: #fff; }
.cart-summary { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--primary-dark); }
.cart-summary strong { color: var(--accent-color); font-size: 18px; }
.cart-contact-button { width: 100%; color: #fff; background: var(--primary-color); }
.cart-contact-button:hover { background: var(--primary-dark); }
.cart-contact-button[aria-disabled="true"] { opacity: 0.48; pointer-events: none; }
.cart-continue { width: 100%; min-height: 46px; margin-top: 10px; border: 1px solid var(--primary-color); border-radius: 4px; color: var(--primary-color); background: #fff; cursor: pointer; font-weight: 700; }
.cart-continue:hover { color: #fff; background: var(--primary-color); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 200; display: flex; align-items: center; max-width: calc(100% - 48px); padding: 14px 18px; gap: 12px; border-radius: 4px; color: #fff; background: var(--primary-dark); box-shadow: var(--shadow-card); opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 22px; flex: 0 0 auto; fill: none; stroke: #68d4a5; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.4; }

@media (max-width: 1199px) {
  .container { width: min(1120px, calc(100% - 40px)); }
  .desktop-nav { gap: 16px; }
  .header-cta { display: none; }
  .about-layout { gap: 48px; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-item:nth-child(2) { border-right: 0; }
  .solution-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
}

@media (max-width: 991px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .brand-logo { height: 56px; }
  .desktop-nav { gap: 12px; }
  .nav-link { font-size: 13px; }
  .cart-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: 1fr 1fr; gap: 36px; }
  .application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { justify-content: flex-start; }
  .contact-layout { gap: 48px; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-company { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  :root { --header-height: 66px; }
  .container { width: min(100% - 32px, 620px); }
  .site-header { height: var(--header-height); }
  .brand { max-width: 100px; }
  .brand-logo { width: auto; height: 54px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; gap: 5px; border: 0; color: var(--primary-color); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 23px; height: 2px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle.open span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:last-child { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0; z-index: 90; display: flex; flex-direction: column; padding: 18px 16px; overflow-y: auto; background: #fff; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 14px 8px; border-bottom: 1px solid var(--border-color); color: var(--primary-dark); font-size: 17px; font-weight: 700; }
  .mobile-nav .mobile-nav-cta { margin-top: 16px; color: #fff; }
  .hero { align-items: end; height: calc(100svh - 106px); min-height: 520px; max-height: 660px; padding-bottom: 46px; }
  .hero-image { object-position: 60% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4, 27, 48, 0.98) 0%, rgba(4, 37, 66, 0.78) 60%, rgba(4, 37, 66, 0.3) 100%); }
  h1 { margin-bottom: 16px; font-size: 37px; }
  h2 { font-size: 30px; }
  .hero-description { margin-bottom: 24px; font-size: 16px; }
  .company-strip-inner, .product-grid, .about-layout, .application-grid, .benefit-grid, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .company-strip p, .company-strip p:first-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--border-color); }
  .company-strip p:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > div { margin-bottom: 12px; }
  .about-layout { gap: 36px; }
  .about-media { order: 2; }
  .company-facts div { grid-template-columns: 1fr; gap: 2px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-item, .solution-item:nth-child(2), .solution-item:last-child { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .solution-item:last-child { border-bottom: 0; }
  .solution-icon { margin-bottom: 32px; }
  .application-grid article { min-height: 160px; }
  .benefit-grid { border-bottom: 0; }
  .benefit-item, .benefit-item:last-child { min-height: 0; padding: 34px 22px; border-right: 0; border-bottom: 1px solid var(--border-color); }
  .benefit-number { margin-bottom: 28px; }
  .cta-section { padding: 56px 0; }
  .contact-layout { gap: 40px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { gap: 34px; padding-top: 54px; padding-bottom: 42px; }
  .footer-company { grid-column: auto; }
  .toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  .cart-drawer-header { min-height: 78px; padding: 16px; }
  .cart-drawer-body { padding: 6px 16px 20px; }
  .cart-drawer-footer { padding: 16px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 8px; }
  .brand { max-width: 88px; }
  .brand-logo { height: 50px; }
  .cart-button { padding: 0 3px; }
  h1 { font-size: 32px; }
  .hero-actions, .cta-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .product-info { padding: 20px; }
  .cart-line-item { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; }
  .cart-item-image { width: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
