:root {
  --blue: #0071ce;
  --blue-deep: #004f9a;
  --blue-navy: #072c62;
  --yellow: #ffc220;
  --yellow-soft: #ffe082;
  --yellow-deep: #d99d00;
  --green: #1f9d57;
  --red: #c62828;
  --ink: #1f2937;
  --ink-soft: #526071;
  --surface: #ffffff;
  --surface-alt: #f3f6fb;
  --surface-line: #d8e2ef;
  --surface-dark: #0f1728;
  --surface-muted: #eef3f8;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 40px rgba(4, 38, 82, 0.08);
  --shadow-strong: 0 24px 54px rgba(7, 44, 98, 0.18);
  --container: min(1320px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 26%, #f5f7fb 100%);
}

body.cart-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

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

.is-hidden {
  display: none !important;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: var(--blue-navy);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.topbar p {
  margin: 0;
  font-weight: 600;
}

.topbar a {
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(216, 226, 239, 0.9);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 40, 0.1);
}

.header-main {
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-badge {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-copy span {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.1;
}

.search-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 12px 24px rgba(0, 113, 206, 0.08);
}

.search-shell svg {
  width: 22px;
  height: 22px;
  fill: var(--blue);
  flex-shrink: 0;
}

.search-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-shell button,
.button,
.header-button,
.quantity-button,
.add-cart-button,
.filter-chip,
.mobile-cart-link,
.floating-cart,
.floating-call {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.search-shell button {
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

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

.header-chip {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--surface-alt);
  min-width: 120px;
}

.header-chip-label,
.summary-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 700;
}

.header-chip strong {
  font-size: 0.95rem;
}

.header-button,
.button,
.mobile-cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.header-button:hover,
.button:hover,
.mobile-cart-link:hover,
.filter-chip:hover,
.add-cart-button:hover,
.quantity-button:hover,
.floating-cart:hover,
.floating-call:hover,
.category-card:hover,
.product-card:hover,
.gallery-card:hover,
.benefit-card:hover,
.inventory-card:hover {
  transform: translateY(-2px);
}

.header-button-primary,
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 113, 206, 0.2);
}

.header-button-light,
.button-secondary {
  background: #fff;
  border: 1px solid var(--surface-line);
  color: var(--ink);
}

.button-secondary-light {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.button-yellow {
  background: var(--yellow);
  color: #202020;
}

.button-dark {
  background: #111827;
  color: #fff;
}

.button-full {
  width: 100%;
}

.cart-count-badge {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #111827;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--surface-alt);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  padding-bottom: 14px;
}

.mobile-panel.is-open {
  display: block;
}

.mobile-links {
  display: grid;
  gap: 10px;
}

.mobile-links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--surface-alt);
  font-weight: 700;
}

.mobile-cart-link {
  margin-top: 10px;
  width: 100%;
  background: var(--blue);
  color: #fff;
}

.category-strip-wrap {
  position: sticky;
  top: 86px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 226, 239, 0.9);
  backdrop-filter: blur(12px);
}

.category-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}

.category-strip::-webkit-scrollbar,
.filter-chip-row::-webkit-scrollbar {
  display: none;
}

.category-strip a,
.filter-chip {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.category-strip a.is-active,
.category-strip a:hover,
.filter-chip.is-active,
.filter-chip:hover {
  background: #e9f3fe;
  border-color: rgba(0, 113, 206, 0.2);
  color: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 76%;
  background:
    radial-gradient(circle at top left, rgba(255, 194, 32, 0.18), transparent 36%),
    linear-gradient(135deg, #f2f8ff 0%, #ffffff 50%, #edf5ff 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  padding: 10px 0 0;
  display: grid;
  gap: 22px;
}

.hero-benefits-heading {
  margin-bottom: 0;
}

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

.hero-benefits-grid .benefit-card {
  min-height: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow-blue {
  color: var(--blue);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-text,
.section-heading p,
.category-content p,
.deal-banner p,
.product-body p,
.benefit-card p,
.gallery-card figcaption,
.visit-copy p,
.trusted-points p,
.footer-grid p,
.footer-grid li,
.inventory-copy p,
.cart-summary p,
.cart-empty p,
.catalog-empty p,
.form-feedback {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.hero-metrics li {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 226, 239, 0.92);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 1.24rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-visual img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
}

.hero-card {
  position: absolute;
  display: grid;
  gap: 8px;
  max-width: 240px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-card-top {
  top: 20px;
  left: -18px;
}

.hero-card-bottom {
  right: -12px;
  bottom: 22px;
}

.card-kicker,
.deal-tag,
.product-badge,
.inventory-tag,
.stock-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-kicker {
  background: #eef5ff;
  color: var(--blue);
}

.section {
  padding: 76px 0;
}

.trusted-band {
  padding-top: 22px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.trusted-points {
  display: grid;
  gap: 14px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.order-heading {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: start;
}

.ordering-summary-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.ordering-summary-card strong {
  font-size: 1.4rem;
  color: var(--ink);
}

.ordering-summary-card span {
  font-weight: 800;
  color: var(--blue);
}

.category-grid,
.product-grid,
.benefits-grid,
.gallery-grid,
.catalog-grid {
  display: grid;
  gap: 22px;
}

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

.category-card,
.product-card,
.benefit-card,
.gallery-card,
.inventory-card {
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.category-card:hover,
.product-card:hover,
.benefit-card:hover,
.gallery-card:hover,
.inventory-card:hover {
  box-shadow: 0 22px 40px rgba(4, 38, 82, 0.12);
  border-color: rgba(0, 113, 206, 0.22);
}

.category-card img,
.product-card img,
.gallery-card img,
.inventory-card img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.category-content,
.product-body,
.benefit-card,
.gallery-card figcaption,
.inventory-copy {
  padding: 20px;
}

.ordering-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fe 100%);
}

.products-hero {
  padding-top: 24px;
  padding-bottom: 18px;
}

.products-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(135deg, #0f5fd7 0%, #0071ce 100%);
  color: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.products-hero-copy {
  display: grid;
  gap: 12px;
  max-width: 660px;
}

.products-hero-copy .eyebrow,
.products-hero-copy .hero-text,
.products-hero-copy h1 {
  color: #fff;
}

.products-hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 10ch;
}

.products-hero-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.products-summary-pill {
  min-width: 132px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.products-summary-pill span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.products-summary-pill strong {
  font-size: 1.2rem;
}

.products-ordering-section {
  padding-top: 24px;
}

.catalog-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.filter-chip-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.catalog-result {
  font-weight: 700;
  color: var(--ink-soft);
}

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

.inventory-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.inventory-card.out-of-stock {
  opacity: 0.72;
}

.inventory-media {
  position: relative;
}

.inventory-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
}

.inventory-copy {
  display: grid;
  gap: 14px;
}

.inventory-header {
  display: grid;
  gap: 10px;
}

.inventory-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.inventory-price {
  display: grid;
  gap: 4px;
}

.inventory-price strong {
  font-size: 1.42rem;
  color: var(--ink);
}

.inventory-price span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.stock-pill {
  background: #e8f8ee;
  color: var(--green);
}

.stock-pill.out {
  background: #fdeaea;
  color: var(--red);
}

.inventory-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.inventory-category {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.add-cart-button {
  min-height: 46px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.add-cart-button[disabled] {
  background: #c9d5e5;
  color: #607086;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.catalog-empty {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--surface-line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.deals-section {
  background: linear-gradient(180deg, #f6faff 0%, #edf5ff 100%);
}

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

.deal-banner {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.deal-blue {
  background: linear-gradient(135deg, #0071ce 0%, #0a92ff 100%);
  color: #fff;
}

.deal-yellow {
  background: linear-gradient(135deg, #ffc220 0%, #ffd964 100%);
  color: #202020;
}

.deal-navy {
  background: linear-gradient(135deg, #072c62 0%, #16489a 100%);
  color: #fff;
}

.deal-banner p,
.deal-banner h3 {
  color: inherit;
}

.deal-tag {
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  margin-bottom: 12px;
}

.deal-yellow .deal-tag {
  background: rgba(32, 32, 32, 0.08);
}

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

.product-card {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: #1b1b1b;
}

.benefits-section {
  background: #fff;
}

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

.benefit-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.benefit-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--blue);
  font-weight: 900;
}

.gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
}

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

.gallery-feature {
  grid-column: span 2;
}

.gallery-card figcaption {
  font-weight: 700;
  color: var(--ink);
}

.visit-section {
  padding-top: 40px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0071ce 0%, #00519d 100%);
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.visit-copy p,
.visit-copy a,
.visit-copy h2 {
  color: #fff;
}

.visit-copy {
  display: grid;
  gap: 10px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 40, 0.54);
  z-index: 70;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 80;
  box-shadow: -20px 0 50px rgba(7, 44, 98, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--surface-line);
}

.cart-close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 32px;
  display: grid;
  gap: 24px;
}

.cart-section {
  padding: 22px;
  background: var(--surface-alt);
  border-radius: 24px;
  border: 1px solid var(--surface-line);
}

.cart-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.text-link {
  padding: 0;
  background: none;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}

.cart-empty {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--surface-line);
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-item-copy {
  display: grid;
  gap: 10px;
}

.cart-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cart-item-header strong {
  display: block;
  font-size: 1rem;
}

.cart-item-header span,
.cart-item-meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quantity-button {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #edf4ff;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.quantity-value {
  min-width: 16px;
  text-align: center;
  font-weight: 800;
}

.remove-item {
  background: none;
  color: var(--red);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.cart-summary {
  display: grid;
  gap: 8px;
  padding-top: 18px;
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary strong {
  font-size: 1.3rem;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 700;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  outline: 0;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 113, 206, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 113, 206, 0.12);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: rgba(198, 40, 40, 0.55);
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
}

.form-feedback {
  min-height: 22px;
  font-weight: 700;
}

.form-feedback.is-error {
  color: var(--red);
}

.form-feedback.is-success {
  color: var(--green);
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.floating-call,
.floating-cart {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--yellow);
  color: #161616;
}

.floating-cart {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--blue);
  color: #fff;
  gap: 10px;
  cursor: pointer;
}

.site-footer {
  padding: 56px 0 30px;
  background: var(--surface-dark);
  color: #fff;
}

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

.footer-grid h3 {
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-utility-banner {
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
  border: 1px solid var(--surface-line);
}

.page-utility-banner strong {
  font-size: 0.9rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-utility-banner span {
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.5;
}

.about-hero {
  padding-top: 8px;
}

.about-hero-grid,
.about-story-grid,
.store-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.about-hero-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-hero-visual img,
.store-detail-visual img {
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.story-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.story-panel p + p {
  margin-top: 14px;
}

.story-panel-accent {
  background: linear-gradient(135deg, #0071ce 0%, #00519d 100%);
  color: #fff;
}

.story-panel-accent h2,
.story-panel-accent p,
.story-panel-accent li,
.story-panel-accent .eyebrow {
  color: #fff;
}

.story-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  line-height: 1.6;
}

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

.owner-card {
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.owner-card img {
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.owner-card-body {
  padding: 22px;
}

.owner-role {
  margin: 8px 0 10px;
  color: var(--blue);
  font-weight: 800;
}

.store-detail-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--surface-line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.store-detail-card p + p {
  margin-top: 10px;
}

.store-detail-card-inline {
  margin-top: 8px;
}

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

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .hero-grid,
  .trusted-grid,
  .visit-grid,
  .order-heading,
  .about-hero-grid,
  .about-story-grid,
  .store-details-grid,
  .products-hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    min-height: 400px;
  }

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

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

  .gallery-feature {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 20px, 1320px);
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 6px 0;
  }

  body[data-page="products"] .topbar {
    font-size: 0.82rem;
  }

  body[data-page="products"] .topbar-inner {
    gap: 4px;
    padding: 6px 0;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 8px 0 6px;
  }

  .page-utility-banner {
    grid-column: 1 / -1;
    order: 3;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-badge {
    width: 54px;
    height: 54px;
  }

  body[data-page="products"] .brand {
    gap: 10px;
  }

  body[data-page="products"] .brand-badge {
    width: 54px;
    height: 54px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .brand-copy span {
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  body[data-page="products"] .brand-copy strong {
    font-size: 1.1rem;
  }

  body[data-page="products"] .brand-copy span {
    font-size: 0.8rem;
  }

  body[data-page="products"] .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .search-shell {
    grid-column: 1 / -1;
    order: 3;
    padding: 5px 5px 5px 12px;
    gap: 8px;
  }

  .search-shell input {
    font-size: 0.95rem;
  }

  .search-shell button {
    padding: 10px 16px;
    min-height: 42px;
  }

  body[data-page="products"] .search-shell {
    padding: 5px 5px 5px 12px;
    gap: 8px;
  }

  body[data-page="products"] .search-shell input {
    font-size: 0.95rem;
  }

  body[data-page="products"] .search-shell button {
    padding: 10px 16px;
    min-height: 42px;
  }

  .category-strip-wrap {
    top: 109px;
  }

  .category-strip {
    padding: 8px 0;
    gap: 8px;
  }

  .category-strip a {
    padding: 10px 16px;
    font-size: 0.92rem;
  }

  body[data-page="products"] .category-strip-wrap {
    top: 109px;
  }

  body[data-page="products"] .category-strip {
    padding: 8px 0;
    gap: 8px;
  }

  body[data-page="products"] .category-strip a {
    padding: 10px 16px;
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-metrics,
  .product-grid,
  .gallery-grid,
  .footer-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .benefits-grid,
  .owner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-content,
  .product-body,
  .benefit-card,
  .gallery-card figcaption,
  .inventory-copy {
    padding: 14px;
  }

  .category-content h3,
  .product-body h3,
  .benefit-card h3 {
    font-size: 1rem;
  }

  .category-content p,
  .product-body p,
  .benefit-card p,
  .gallery-card figcaption {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .benefit-card {
    gap: 10px;
    padding: 16px;
  }

  .benefit-card span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  body[data-page="products"] .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="products"] .inventory-card {
    border-radius: 18px;
  }

  body[data-page="products"] .inventory-card img {
    aspect-ratio: 0.88 / 1;
  }

  body[data-page="products"] .inventory-copy {
    padding: 10px;
    gap: 8px;
  }

  body[data-page="products"] .inventory-header {
    gap: 4px;
  }

  body[data-page="products"] .inventory-header p,
  body[data-page="products"] .inventory-category,
  body[data-page="products"] .inventory-tag {
    display: none;
  }

  body[data-page="products"] .inventory-header h3 {
    font-size: 0.88rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  body[data-page="products"] .inventory-price strong {
    font-size: 0.95rem;
  }

  body[data-page="products"] .inventory-price span {
    font-size: 0.72rem;
  }

  body[data-page="products"] .inventory-meta {
    align-items: flex-start;
    gap: 6px;
  }

  body[data-page="products"] .stock-pill {
    font-size: 0.58rem;
    padding: 4px 7px;
  }

  body[data-page="products"] .add-cart-button {
    min-height: 34px;
    font-size: 0.82rem;
    padding: 0 10px;
  }

  .products-hero {
    padding-top: 14px;
    padding-bottom: 8px;
  }

  .products-hero-shell {
    padding: 18px;
    gap: 16px;
  }

  .products-hero-copy h1 {
    font-size: 1.8rem;
    max-width: none;
  }

  .products-hero-summary {
    justify-content: flex-start;
  }

  body[data-page="products"] .products-ordering-section {
    padding-top: 12px;
  }

  body[data-page="products"] .catalog-toolbar {
    gap: 10px;
    margin-bottom: 14px;
  }

  body[data-page="products"] .filter-chip-row {
    gap: 8px;
    padding-bottom: 2px;
  }

  body[data-page="products"] .filter-chip {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  body[data-page="products"] .catalog-result {
    font-size: 0.92rem;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .hero-visual {
    display: grid;
  }

  .hero-visual img {
    min-height: 220px;
  }

  .about-hero-visual img,
  .store-detail-visual img {
    min-height: 220px;
  }

  .section {
    padding: 40px 0;
  }

  .visit-grid,
  .trusted-grid,
  .cart-section {
    padding: 18px;
  }

  .button,
  .header-button {
    width: 100%;
  }

  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-drawer-header,
  .cart-drawer-body {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .cart-item img {
    width: 100%;
    height: 180px;
  }

  .floating-call,
  .floating-cart {
    bottom: 12px;
    min-width: 74px;
    height: 52px;
    padding: 0 16px;
  }
}
