:root {
  --ink: #14213d;
  --muted: #5d6878;
  --line: #d8dee8;
  --paper: #ffffff;
  --soft: #f5f7fb;
  --blue: #0f4cbd;
  --red: #e11d32;
  --yellow: #f4c430;
  --green: #18a058;
  --black: #101318;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.promo-ribbon + .topbar {
  top: 34px;
}

.promo-ribbon {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.promo-ribbon-track {
  display: flex;
  width: max-content;
  gap: 42px;
  align-items: center;
  animation: promo-marquee 28s linear infinite;
  white-space: nowrap;
}

.promo-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

@keyframes promo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img,
.admin-sidebar img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.main-nav,
.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav {
  flex: 1;
  justify-content: center;
}

.main-nav a,
.nav-dropdown button,
.socials a {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}

.main-nav > a,
.nav-dropdown > button {
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 9px 10px;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown:hover > button,
.nav-dropdown:focus-within > button,
.nav-dropdown > button.active {
  background: #050505;
  border-color: #050505;
  color: #ffffff;
}

.submenu a {
  border-radius: 6px;
  padding: 9px 10px;
}

.submenu a:hover,
.submenu a.active {
  background: #050505;
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button {
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  padding: 9px 10px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  min-width: 190px;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.submenu a:hover {
  background: #050505;
  color: #ffffff;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.socials {
  gap: 10px;
}

.socials a {
  text-decoration: none;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

.social-icon svg,
.header-contact-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f7fbff;
}

.header-contact-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-contact-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f7fbff;
}

.header-contact-link.whatsapp {
  color: #128c4a;
}

.header-contact-link.whatsapp:hover {
  border-color: #128c4a;
  color: #128c4a;
  background: #f1fff7;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
}

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

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.account-menu-wrap {
  position: relative;
}

.account-hover-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  width: 240px;
  min-height: 132px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.account-menu-wrap.logged-in:hover .account-hover-menu,
.account-menu-wrap.logged-in:focus-within .account-hover-menu,
.account-menu-wrap.logged-in.menu-open .account-hover-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.account-hover-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 8px;
}

.account-hover-menu strong {
  display: block;
  min-height: 34px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.account-hover-menu button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 500;
  cursor: pointer;
}

.account-hover-menu button:hover {
  background: #eef3fb;
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border: 2px solid white;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 28px;
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 72px) 46px;
  background:
    linear-gradient(90deg, rgba(9, 19, 40, 0.92), rgba(9, 19, 40, 0.55) 52%, rgba(255, 255, 255, 0.1)),
    radial-gradient(circle at 80% 16%, rgba(244, 196, 48, 0.75), transparent 25%),
    linear-gradient(135deg, #f7f8fb, #dbe8ff);
  color: white;
}

.hero.has-hero-image {
  background: var(--hero-bg) center / cover no-repeat;
}

.hero.has-hero-image .hero-media {
  display: none;
}

.hero.has-hero-image .hero-content,
.hero.has-hero-image .hero-contact {
  display: none;
}

.hero.hero-image-only {
  width: 100%;
  min-height: auto;
  height: clamp(180px, 23vw, 360px);
  max-height: 360px;
  aspect-ratio: 920 / 450;
  display: block;
  margin: 0;
  padding: 0;
  background: #f4f6fb;
}

.hero.hero-image-only.has-hero-image {
  background: var(--hero-bg) center / cover no-repeat;
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.fabric-roll {
  position: absolute;
  width: 440px;
  height: 180px;
  border-radius: 90px;
  transform: rotate(-17deg);
  box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.25), var(--shadow);
}

.roll-a {
  right: 6%;
  top: 120px;
  background: linear-gradient(90deg, #e11d32, #f4c430, #0f4cbd);
}

.roll-b {
  right: 18%;
  bottom: 92px;
  background: linear-gradient(90deg, #101318, #18a058, #f5f7fb);
}

.stitch-lines {
  position: absolute;
  inset: auto -40px 38px auto;
  width: 58%;
  height: 150px;
  border-top: 5px dashed rgba(255, 255, 255, 0.4);
  transform: rotate(-8deg);
}

.hero-content,
.hero-contact {
  position: relative;
}

.hero-content {
  max-width: 760px;
}

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

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.admin-heading,
.panel-title,
.action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.danger-button,
.small-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 11px 16px;
  font-weight: 500;
  cursor: pointer;
}

.primary-button {
  background: var(--blue);
  color: white;
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.link-button {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--blue);
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.danger-button {
  background: var(--red);
  color: white;
}

.small-button {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.full {
  width: 100%;
}

.hero-contact {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-contact span,
.hero-contact strong {
  display: block;
}

.home-cart-items {
  display: grid;
  gap: 8px;
  max-height: 180px;
  overflow: auto;
}

.cart-page {
  min-height: calc(100vh - 78px);
  padding: 54px clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.cart-page h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.cart-detail-layout,
.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.cart-table input {
  width: 74px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-weight: 900;
  cursor: pointer;
}

.checkout-summary {
  position: sticky;
  top: 94px;
}

.coupon-form {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coupon-form label {
  font-weight: 500;
}

.discount-row strong {
  color: var(--red);
}

.payment-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.payment-form button {
  grid-column: 1 / -1;
}

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

.checkout-form .wide,
.checkout-shipping-grid {
  grid-column: 1 / -1;
}

.checkout-section-title {
  display: grid;
  gap: 2px;
  padding-top: 2px;
}

.checkout-section-title h2 {
  font-size: 22px;
  margin: 0;
}

.checkout-check {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  font-weight: 800;
  gap: 10px;
  padding: 12px;
}

.checkout-check input {
  width: auto;
}

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

.checkout-shipping-grid.is-disabled {
  display: none;
}

.checkout-payment-box {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.checkout-payment-options {
  display: grid;
  gap: 10px;
}

.checkout-payment-options label {
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 12px;
}

.stripe-card-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: #ffffff;
}

.stripe-card-panel label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.stripe-card-panel label:has(input:checked) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  font-weight: 800;
}

.stripe-card-element {
  min-height: 46px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.checkout-alert {
  padding: 12px;
  border: 1px solid #fecdd3;
  border-radius: 8px;
  background: #fff1f2;
  color: #be123c;
  font-weight: 700;
}

.checkout-alert.success {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.checkout-page {
  min-height: 70vh;
  padding: 42px clamp(18px, 5vw, 72px) 64px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.checkout-page,
.checkout-page input,
.checkout-page button,
.checkout-page textarea {
  font-family: Arial, Helvetica, sans-serif;
}

.checkout-page .eyebrow {
  font-size: 12px;
  font-weight: 700;
}

.checkout-heading {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
}

.checkout-heading h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
}

.checkout-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .75fr);
  gap: 22px;
  align-items: start;
}

.checkout-left {
  display: grid;
  gap: 18px;
}

.checkout-card,
.checkout-summary-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.checkout-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.checkout-card-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkout-card-title > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
}

.checkout-card-title h2,
.checkout-summary-title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
}

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

.checkout-field-grid .wide,
.stripe-split-grid .wide {
  grid-column: 1 / -1;
}

.checkout-field-grid label,
.stripe-card-panel label,
.promo-code-box label {
  display: grid;
  gap: 7px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.checkout-field-grid input,
.stripe-card-panel input,
.promo-code-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: #ffffff;
}

.promo-code-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px dashed #b9c4d3;
  border-radius: 8px;
  background: #f8fafc;
}

.promo-code-box summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.summary-promo-box {
  margin-bottom: 2px;
}

.summary-promo-box .muted {
  margin: 0;
  font-size: 13px;
}

.summary-promo-box .muted.success {
  color: #0f7a43;
}

.summary-promo-box .muted.danger {
  color: #bd1025;
}

.formal-payment-options label {
  min-height: 72px;
  background: #ffffff;
}

.transfer-panel,
.store-pay-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.transfer-panel strong,
.store-pay-panel strong,
.stripe-card-panel > strong {
  font-size: 17px;
  font-weight: 650;
}

.transfer-panel p,
.store-pay-panel p {
  margin: 0;
  color: var(--muted);
}

.transfer-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.transfer-panel div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.transfer-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.transfer-panel dt,
.transfer-panel dd {
  margin: 0;
}

.transfer-panel dt {
  color: var(--muted);
  font-weight: 600;
}

.transfer-panel dd {
  text-align: right;
  font-weight: 650;
}

.checkout-pay-button {
  width: min(260px, 100%);
  justify-self: end;
  min-height: 50px;
  font-size: 16px;
  font-weight: 650;
}

.checkout-summary-panel {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.checkout-summary-items {
  display: grid;
  gap: 12px;
}

.checkout-summary-items article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary-items strong,
.checkout-summary-items span,
.checkout-summary-items small {
  display: block;
}

.checkout-summary-items strong {
  font-weight: 650;
}

.checkout-summary-items span,
.checkout-summary-items small {
  color: var(--muted);
  font-size: 13px;
}

.checkout-summary-items b {
  white-space: nowrap;
  font-weight: 650;
}

.checkout-totals {
  display: grid;
  gap: 10px;
}

.checkout-totals span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-totals em {
  color: var(--muted);
  font-style: normal;
}

.checkout-totals .grand-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 19px;
}

.checkout-totals strong {
  font-weight: 650;
}

.store-ticket {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 16px;
  border: 1px dashed var(--ink);
  border-radius: 8px;
  background: #f8fafc;
}

.store-ticket h2 {
  margin: 0;
  font-size: 28px;
}

.store-ticket p {
  margin: 0;
}

.store-ticket div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.checkout-payment-options label:has(input:checked) {
  background: #eef6ff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, .1);
}

.checkout-payment-options input {
  width: auto;
}

.checkout-payment-options span {
  display: grid;
  gap: 2px;
}

.checkout-payment-options small {
  color: var(--muted);
  font-weight: 700;
}

.card-brand-row {
  display: inline-flex !important;
  gap: 6px;
}

.card-brand {
  align-items: center;
  border-radius: 5px;
  color: #ffffff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  min-width: 42px;
  padding: 6px 7px;
}

.card-brand.visa {
  background: #1434cb;
}

.card-brand.mastercard {
  background: #eb001b;
}

.checkout-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.checkout-section h2,
.payment-panel h3 {
  margin: 0;
}

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

.payment-methods {
  display: grid;
  gap: 10px;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.payment-methods input {
  width: auto;
}

.payment-panel {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.payment-panel p {
  margin: 0;
  color: var(--muted);
}

.hero-contact .cart-line {
  border-color: rgba(255, 255, 255, 0.25);
}

.center-button {
  display: grid;
  place-items: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.4fr) minmax(210px, 0.8fr);
  gap: 22px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer address {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.5;
}

.footer-contact {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: var(--yellow);
}

.store-band,
.services-band,
.quote-band,
.client-band,
.admin-shell {
  padding: 54px clamp(18px, 5vw, 72px);
}

.location-band {
  background: #ffffff;
}

.quote-band .section-heading {
  margin-inline: auto;
  max-width: 860px;
  text-align: center;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 22px;
  align-items: stretch;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3fb;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.location-details {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: var(--shadow);
}

.location-details h3 {
  margin: 0;
  font-size: 28px;
}

.location-details dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.location-details div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.location-details div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.location-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.location-details a {
  color: var(--blue);
  text-decoration: none;
}

.store-band,
.client-band {
  background: var(--soft);
}

.featured-band {
  background: #ffffff;
  padding-top: 22px;
  padding-bottom: 30px;
}

.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 290px));
  justify-content: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 16px;
}

.featured-band .section-heading {
  margin-bottom: 14px;
}

.featured-band .section-heading h2 {
  font-size: 28px;
}

.section-heading h2,
.admin-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.category-strip {
  display: flex;
  gap: 10px;
  padding-bottom: 18px;
  overflow-x: auto;
}

.category-strip button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  cursor: pointer;
  font-weight: 500;
}

.category-strip button.active {
  border-color: var(--blue);
  background: #eaf1ff;
  color: var(--blue);
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(20, 33, 61, 0.08);
}

.catalog-sidebar h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
}

.catalog-menu {
  display: grid;
  gap: 8px;
}

.catalog-menu-group {
  display: grid;
  gap: 5px;
}

.catalog-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #d6e4f5;
  border-radius: 7px;
  color: #0f4cbd;
  background: #eef5ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.catalog-menu-link:hover,
.catalog-menu-link:focus {
  border-color: #0f4cbd;
  color: #083b96;
  background: #dcecff;
  transform: translateX(2px);
}

.catalog-menu-group.is-open .catalog-menu-link {
  border-color: #0f4cbd;
  color: #ffffff;
  background: #0f4cbd;
}

.catalog-menu-link small {
  min-width: 26px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f4cbd;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.catalog-submenu {
  display: none;
  gap: 2px;
  margin-left: 12px;
  padding: 8px 0 8px 12px;
  border-left: 2px solid #f4c430;
}

.catalog-menu-group.is-open .catalog-submenu {
  display: grid;
}

.catalog-submenu a {
  display: block;
  padding: 6px 8px;
  border-radius: 6px;
  color: #7a5b00;
  background: #fff9e8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.catalog-submenu a:hover,
.catalog-submenu a:focus {
  color: #4d3900;
  background: #ffefbd;
}

.catalog-sections {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.catalog-category {
  scroll-margin-top: 130px;
}

.catalog-product-anchor {
  display: block;
  scroll-margin-top: 130px;
}

.catalog-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.catalog-category-heading h3 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.catalog-category-heading a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.catalog-category-heading .category-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.catalog-category-heading .category-button:hover,
.catalog-category-heading .category-button:focus {
  border-color: #1d4ed8;
  background: #eff6ff;
  color: #1d4ed8;
}

.catalog-empty {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 290px));
  justify-content: center;
  gap: 16px;
  align-items: start;
}

.product-card,
.cart-panel,
.client-dashboard,
.data-table-wrap,
.stat-card,
.quote-form,
.client-form,
.module-form,
.chatbot,
.report-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-card {
  display: grid;
  grid-template-rows: 170px auto;
  overflow: hidden;
  width: 100%;
  max-width: 290px;
  align-self: start;
  box-shadow: 0 10px 26px rgba(20, 33, 61, 0.08);
}

.product-visual {
  position: relative;
  width: 100%;
  height: 170px;
  border: 0;
  cursor: pointer;
  padding: 12px;
  background:
    radial-gradient(circle at 72% 18%, rgba(244, 196, 48, 0.28), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(15, 76, 189, 0.14), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #f4f8ff 58%, #eef5ff 100%);
  display: block;
  border-bottom: 1px solid var(--line);
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34)),
    repeating-linear-gradient(90deg, rgba(15, 76, 189, 0.05), rgba(15, 76, 189, 0.05) 1px, transparent 1px, transparent 18px);
  box-shadow: inset 0 0 0 1px rgba(15, 76, 189, 0.08);
}

.product-image-zoom-trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-image-zoom-trigger img,
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.availability {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  background: #edf7f0;
  color: #0f7a43;
}

.availability.out-stock {
  background: #ffe7ea;
  color: #bd1025;
}

.product-visual .availability {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
}

.offer-badge {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card .body {
  display: grid;
  gap: 7px;
  padding: 12px 14px 14px;
}

.product-options-body form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: end;
}

.variant-select-heading {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.product-options-body form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}

.variant-choice-group {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.variant-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-button-group button {
  min-width: 58px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.variant-button-group button:hover,
.variant-button-group button.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.variant-button-group button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.product-options-body form select,
.product-options-body form input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
}

.product-options-body form label:has([data-variant-gender]),
.product-options-body form label:has([data-variant-size]),
.product-options-body form label:has([data-variant-color]),
.product-options-body form .variant-select-heading,
.product-options-body form [data-variant-stock],
.product-options-body form .primary-button {
  grid-column: 1 / -1;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.product-card p,
.muted {
  color: var(--muted);
  line-height: 1.45;
}

.product-description {
  display: -webkit-box;
  margin: 0;
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.price del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.product-card .product-options-trigger {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.product-image-modal[hidden] {
  display: none;
}

.product-image-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.product-image-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 44px);
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.product-image-dialog img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  display: block;
  background:
    radial-gradient(circle at 75% 18%, rgba(244, 196, 48, 0.22), transparent 24%),
    radial-gradient(circle at 20% 82%, rgba(15, 76, 189, 0.12), transparent 28%),
    linear-gradient(145deg, #ffffff, #f4f8ff 62%, #eef5ff);
  border-radius: 7px;
}

.product-image-dialog strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 19, 24, 0.58);
}

.product-options-trigger {
  width: 100%;
  margin-top: 4px;
}

.product-options-modal[hidden] {
  display: none;
}

.product-options-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.5);
}

.product-options-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.25);
}

.product-options-media {
  min-height: 520px;
  padding: 26px;
  background:
    radial-gradient(circle at 76% 16%, rgba(244, 196, 48, 0.24), transparent 24%),
    radial-gradient(circle at 18% 84%, rgba(15, 76, 189, 0.12), transparent 28%),
    linear-gradient(145deg, #ffffff, #f4f8ff 62%, #eef5ff);
  border-right: 1px solid var(--line);
}

.product-options-media img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  display: block;
}

.product-options-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 42px 34px 34px;
}

.product-options-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.18;
}

.product-modal-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 42px minmax(58px, 1fr) 42px;
  width: min(180px, 100%);
  border: 1px solid var(--line);
  background: #fff;
}

.quantity-stepper button,
.quantity-stepper input {
  min-height: 44px;
  border: 0;
  background: #fff;
  text-align: center;
}

.quantity-stepper button {
  cursor: pointer;
  font-size: 18px;
}

.quantity-stepper input {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.product-modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-size: 24px;
  cursor: pointer;
}

.product-detail-media {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-color: #eef3fb;
}

.product-detail-media.empty {
  background:
    linear-gradient(135deg, rgba(15, 76, 189, 0.22), transparent),
    repeating-linear-gradient(90deg, #ffffff, #ffffff 12px, #eef3fb 12px, #eef3fb 24px);
}

.product-detail-body {
  display: grid;
  gap: 12px;
  padding: 28px;
}

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

.product-detail-body h2,
.product-detail-body h3 {
  margin: 0;
}

.cart-panel {
  position: sticky;
  top: 94px;
  padding: 18px;
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 120px;
}

.cart-line,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 18px 0;
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 110px;
  display: grid;
  gap: 12px;
  place-items: center;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, white, #f4f8ff);
  font-weight: 600;
  text-align: center;
}

.service-grid article:hover .service-icon {
  transform: translateY(-4px) scale(1.04);
}

.service-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dbe7f5;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 33, 61, .1);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: relative;
  transition: transform .22s ease;
  width: 58px;
}

.service-icon::after {
  animation: iconPulse 2.4s ease-in-out infinite;
  border: 2px solid rgba(0, 87, 184, .18);
  border-radius: inherit;
  content: "";
  inset: -5px;
  position: absolute;
}

.service-icon svg {
  fill: none;
  height: 34px;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  width: 34px;
}

.textile-icon svg {
  animation: floatIcon 2.9s ease-in-out infinite;
}

.press-icon svg {
  animation: pressIcon 2.2s ease-in-out infinite;
}

.uv-icon svg {
  animation: spinGlow 6s linear infinite;
  stroke: #f1b900;
}

.stitch-icon svg path:nth-child(n+2):nth-child(-n+4) {
  animation: stitchDraw 1.8s ease-in-out infinite;
}

.vinyl-icon svg {
  animation: cutSlide 2.5s ease-in-out infinite;
}

.flyer-icon svg {
  animation: paperLift 2.6s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    opacity: .45;
    transform: scale(.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes pressIcon {
  0%, 100% {
    transform: translateY(0);
  }
  45%, 55% {
    transform: translateY(4px);
  }
}

@keyframes spinGlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes stitchDraw {
  0%, 100% {
    opacity: .45;
    transform: translateX(-2px);
  }
  50% {
    opacity: 1;
    transform: translateX(2px);
  }
}

@keyframes cutSlide {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes paperLift {
  0%, 100% {
    transform: rotate(0) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-icon,
  .service-icon::after,
  .service-icon svg,
  .stitch-icon svg path {
    animation: none !important;
  }
}

.quote-form,
.client-form,
.module-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.quote-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 860px;
  padding: 22px;
}

.quote-form .primary-button {
  justify-self: end;
  min-width: 190px;
}

.module-form .wide {
  grid-column: 1 / -1;
}

.settings-logo {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.settings-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  background: white;
  color: var(--ink);
}

.wide {
  grid-column: 1 / -1;
}

.client-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.private-section,
.private-section:not(.open),
.admin-shell.private-section:not(.open),
.client-band.private-section:not(.open) {
  display: none !important;
}

.private-section.open {
  display: grid !important;
}

.client-band.private-section.open {
  display: block !important;
}

.access-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3fb;
  font-weight: 500;
}

.client-dashboard {
  padding: 22px;
}

.client-portal {
  display: grid;
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 52px;
}

.client-heading {
  align-items: flex-start;
  text-align: left;
}

.client-stats .stat-card,
.client-index,
.client-profile-form,
.client-dashboard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.client-profile-form h2 {
  grid-column: 1 / -1;
  margin: 0;
}

.client-profile-form .wide {
  grid-column: 1 / -1;
}

.client-index {
  padding: 18px;
}

.client-account-page .topbar {
  position: sticky;
  top: 0;
}

.admin-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  background: #f8fafc;
}

.admin-page {
  min-height: 100vh;
  background: #f8fafc;
}

.admin-page .admin-shell {
  min-height: 100vh;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 24px;
}

.admin-login img {
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.admin-login h1 {
  margin: 0;
  font-size: 38px;
}

.admin-login form {
  width: min(420px, calc(100vw - 48px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.admin-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.admin-sidebar button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #334155;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
}

.admin-sidebar button.active {
  background: #eaf1ff;
  color: var(--blue);
}

.admin-main {
  min-width: 0;
}

.admin-shell.pos-mode {
  grid-template-columns: minmax(0, 1fr);
  background: #eef3f8;
}

.admin-shell.pos-mode .admin-sidebar {
  display: none;
}

.admin-shell.pos-mode .admin-heading {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.admin-shell.pos-mode #adminSessionBadge {
  border-color: #d6e4f2;
  background: #ffffff;
}

.pos-system {
  display: grid;
  gap: 18px;
}

.admin-shell:has(.pos-fullscreen) {
  display: block;
  min-height: 100vh;
  padding: 0;
  background: #eef3f8;
}

.admin-shell:has(.pos-fullscreen) .admin-sidebar,
.admin-shell:has(.pos-fullscreen) .admin-heading,
.admin-shell:has(.pos-fullscreen) .access-banner {
  display: none;
}

.admin-shell:has(.pos-fullscreen) .admin-main {
  width: 100%;
  min-height: 100vh;
}

.pos-fullscreen {
  min-height: 100vh;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #eef3f8;
}

.pos-topbar-modern,
.pos-client-bar,
.pos-shortcuts,
.pos-products-modern,
.pos-ticket-modern,
.pos-month-panel,
.pos-kpi-row article {
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.pos-topbar-modern {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(260px, 1fr) minmax(260px, .8fr);
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
}

.pos-brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pos-brand-block img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.pos-brand-block strong,
.pos-brand-block span,
.pos-session-box strong,
.pos-session-box span,
.pos-session-box b {
  display: block;
}

.pos-brand-block strong {
  font-size: 18px;
}

.pos-brand-block span,
.pos-session-box span {
  color: var(--muted);
  font-size: 13px;
}

.pos-company-center {
  text-align: center;
}

.pos-company-center span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pos-company-center h1 {
  margin: 4px 0 0;
  font-size: 28px;
}

.pos-session-box {
  justify-self: end;
  text-align: right;
}

.pos-seller-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.pos-seller-line a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.pos-seller-line a:hover {
  border-color: #d7263d;
  color: #d7263d;
  background: #fff1f2;
}

.pos-seller-line .pos-return-link {
  border-color: #0f4cbd;
  background: #eff6ff;
  color: #0f4cbd;
}

.pos-seller-line .pos-return-link:hover {
  border-color: #0f4cbd;
  background: #dbeafe;
  color: #0f4cbd;
}

.pos-session-box b {
  margin-top: 4px;
  color: var(--green);
}

.pos-client-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.pos-client-search,
.pos-ticket-search {
  position: relative;
  display: flex;
  align-items: center;
}

.pos-ticket-search {
  gap: 6px;
}

.pos-ticket-search input {
  padding-right: 10px;
}

.pos-ticket-search > .pos-modern-button {
  min-width: 48px;
  padding-inline: 12px;
}

.pos-client-search input,
.pos-ticket-search input,
.pos-panel-header input,
.pos-payment-grid input,
.pos-payment-grid select,
.pos-modal input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d8dee8;
  border-radius: 7px;
  padding: 10px 12px 10px 38px;
  background: #ffffff;
}

.pos-payment-grid select,
.pos-payment-grid input,
.pos-modal input {
  padding-left: 12px;
}

.pos-search-icon {
  position: absolute;
  left: 12px;
  z-index: 1;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
}

.pos-client-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.pos-client-results button {
  display: grid;
  gap: 3px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
}

.pos-client-results button:hover {
  background: #eef6ff;
}

.pos-client-results span {
  color: var(--muted);
  font-size: 12px;
}

.pos-ticket-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border-radius: 7px;
}

.pos-ticket-result:hover {
  background: #f8fafc;
}

.pos-ticket-result > div,
.pos-action-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.pos-ticket-result a,
.pos-action-links a,
.pos-ticket-result button,
.pos-action-links button {
  min-height: 28px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 8px;
}

.pos-ticket-result form,
.pos-action-links form {
  margin: 0;
}

.pos-shortcuts {
  display: grid;
  grid-template-columns: auto auto auto minmax(260px, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.pos-shortcuts button,
.pos-modern-button {
  min-height: 42px;
  border: 1px solid #d8dee8;
  border-radius: 7px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  font-weight: 700;
  padding: 10px 13px;
}

.pos-shortcuts button.active,
.pos-shortcuts button:hover {
  border-color: var(--blue);
  background: #eaf1ff;
  color: var(--blue);
}

.pos-single-action-bar .pos-modern-button.green.active,
.pos-single-action-bar .pos-modern-button.green:hover {
  border-color: #18a058;
  background: #18a058;
  color: #ffffff;
}

.pos-single-action-bar .pos-modern-button.red:hover {
  border-color: #d7263d;
  background: #d7263d;
  color: #ffffff;
}

.pos-modern-button.blue {
  border-color: #0f62fe;
  background: #0f62fe;
  color: #ffffff;
}

.pos-modern-button.green {
  border-color: #18a058;
  background: #18a058;
  color: #ffffff;
}

.pos-modern-button.red {
  border-color: #d7263d;
  background: #d7263d;
  color: #ffffff;
}

.pos-modern-button.yellow {
  border-color: #f4c430;
  background: #f4c430;
  color: #101318;
}

.pos-single-action-bar {
  grid-template-columns: minmax(240px, 1fr) auto minmax(220px, .8fr) auto auto auto;
  white-space: nowrap;
}

.pos-single-action-bar > button {
  min-width: max-content;
}

.pos-daily-cut-form {
  margin: 0;
}

.pos-daily-cut-form button {
  width: 100%;
}

.pos-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(480px, .88fr);
  gap: 14px;
  align-items: start;
}

.pos-products-modern,
.pos-ticket-modern,
.pos-month-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.pos-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pos-panel-header h2 {
  margin: 0;
  font-size: 22px;
}

.pos-panel-header input {
  max-width: 360px;
  padding-left: 12px;
}

.pos-product-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  max-height: calc(100vh - 286px);
  overflow: auto;
  padding-right: 4px;
}

.pos-product-card-modern button {
  width: 100%;
  min-height: 226px;
  display: grid;
  grid-template-rows: 88px auto minmax(38px, auto) auto auto auto;
  gap: 7px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #ffffff;
  padding: 10px;
  text-align: left;
  cursor: pointer;
}

.pos-product-card-modern button:hover {
  border-color: var(--blue);
  background: #f7fbff;
}

.pos-product-card-modern figure {
  margin: 0;
  width: 100%;
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #eef3fb;
}

.pos-product-card-modern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pos-product-card-modern span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.pos-product-card-modern strong {
  line-height: 1.25;
}

.pos-product-card-modern small,
.pos-product-card-modern em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.pos-ticket-table-head,
.pos-ticket-row-modern {
  display: grid;
  grid-template-columns: 86px minmax(180px, 1fr) 94px 94px 66px;
  gap: 8px;
  align-items: center;
}

.pos-ticket-table-head {
  padding: 8px 10px;
  border-bottom: 1px solid #d8dee8;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pos-ticket-items-modern {
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 515px);
  min-height: 210px;
  overflow: auto;
}

.pos-ticket-row-modern {
  padding: 9px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #f8fafc;
}

.pos-ticket-row-modern > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pos-ticket-row-modern span button {
  width: 26px;
  height: 26px;
  border: 1px solid #d8dee8;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
}

.pos-ticket-row-modern small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.pos-ticket-row-modern em {
  color: var(--muted);
  font-style: normal;
}

.pos-ticket-row-modern > strong,
.pos-ticket-row-modern > em {
  text-align: right;
  white-space: nowrap;
}

.pos-ticket-row-modern > button {
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: #ffe7ea;
  color: #bd1025;
  cursor: pointer;
  font-size: 12px;
}

.pos-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pos-payment-grid label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-weight: 700;
}

.pos-payment-grid .pos-check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pos-payment-grid .pos-check input {
  width: auto;
  min-height: auto;
}

.pos-totals-modern {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #d8dee8;
}

.pos-totals-modern span {
  display: flex;
  justify-content: space-between;
}

.pos-totals-modern span:last-child {
  font-size: 22px;
}

.pos-charge-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.pos-charge-actions .pos-modern-button {
  min-width: 118px;
  width: auto;
}

.pos-month-panel.hidden,
.pos-workspace.hidden {
  display: none;
}

.pos-table-scroll {
  overflow: auto;
}

.pos-month-panel table {
  min-width: 860px;
}

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

.pos-kpi-row article {
  padding: 14px;
}

.pos-kpi-row span {
  color: var(--muted);
}

.pos-kpi-row strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}

.pos-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, .55);
}

.pos-modal.open {
  display: grid;
}

.pos-modal-card {
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 8px;
  background: #ffffff;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.pos-modal-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pos-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.admin-page .admin-shell.pos-shell {
  width: 100vw;
  min-height: 100vh;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #eef3f8;
}

.admin-page .admin-shell.pos-shell .admin-sidebar,
.admin-page .admin-shell.pos-shell .admin-heading,
.admin-page .admin-shell.pos-shell .access-banner {
  display: none !important;
}

.admin-page .admin-shell.pos-shell .admin-main {
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.admin-page .admin-shell.pos-shell .admin-main > section + section {
  margin-top: 0;
}

.admin-page .admin-shell.pos-shell .flash,
.admin-page .admin-shell.pos-shell .flash.error {
  margin: 12px 16px;
}

.admin-page .admin-shell.pos-shell .pos-fullscreen {
  width: 100vw;
  min-height: 100vh;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  padding: 14px;
}

.admin-page .admin-shell.pos-shell .pos-workspace {
  min-height: 0;
  grid-template-columns: minmax(0, 1.25fr) minmax(520px, .9fr);
  align-items: stretch;
}

.admin-page .admin-shell.pos-shell .pos-products-modern,
.admin-page .admin-shell.pos-shell .pos-ticket-modern {
  min-height: 0;
}

.admin-page .admin-shell.pos-shell .pos-product-grid-modern {
  max-height: none;
  min-height: 0;
}

.admin-page .admin-shell.pos-shell .pos-ticket-items-modern {
  max-height: none;
  min-height: 260px;
}

.admin-page .admin-shell.pos-shell .pos-products-modern {
  grid-template-rows: auto minmax(0, 1fr);
}

.admin-page .admin-shell.pos-shell .pos-ticket-modern {
  grid-template-rows: auto auto minmax(0, 1fr) auto auto auto;
}

.pos-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.pos-hero h3 {
  margin: 0;
  font-size: 30px;
}

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

.pos-kpis article,
.pos-ticket,
.pos-products,
.pos-product-card button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.pos-kpis article {
  padding: 14px;
}

.pos-kpis span,
.pos-product-card small,
.pos-product-card em,
.pos-ticket-row span {
  color: var(--muted);
  font-size: 13px;
}

.pos-kpis strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.pos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.pos-products,
.pos-ticket {
  padding: 16px;
  box-shadow: var(--shadow);
}

.pos-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.pos-toolbar input,
.pos-ticket select,
.pos-ticket input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: white;
}

.pos-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 12px;
}

.pos-product-card button {
  width: 100%;
  min-height: 230px;
  display: grid;
  grid-template-rows: 92px auto minmax(38px, auto) auto auto auto;
  gap: 7px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
}

.pos-product-card button:hover {
  border-color: var(--blue);
  background: #f7fbff;
}

.pos-product-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.pos-product-image {
  width: 100%;
  height: 92px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: #eef3fb;
}

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

.pos-product-image i {
  color: var(--blue);
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
}

.pos-product-card strong {
  min-height: 38px;
}

.pos-product-card b {
  font-size: 20px;
}

.pos-product-card em {
  font-style: normal;
}

.pos-ticket {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 12px;
}

.pos-ticket h3 {
  margin: 0;
}

.pos-ticket-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pos-action-blue,
.pos-action-red {
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 12px;
}

.pos-action-blue {
  background: #0f62fe;
}

.pos-action-red {
  background: #d7263d;
}

.pos-ticket-items {
  display: grid;
  gap: 8px;
  max-height: 330px;
  overflow: auto;
}

.pos-ticket-head,
.pos-ticket-row {
  display: grid;
  grid-template-columns: 98px minmax(170px, 1fr) 100px 100px 74px;
  gap: 8px;
  align-items: center;
}

.pos-ticket-head {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pos-ticket-row {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.pos-ticket-description strong,
.pos-ticket-description span {
  display: block;
}

.pos-ticket-description strong {
  line-height: 1.25;
}

.pos-ticket-row > span,
.pos-ticket-row > strong {
  text-align: right;
  white-space: nowrap;
}

.pos-ticket-row .danger-button {
  min-height: 32px;
  padding: 7px 9px;
  font-size: 12px;
}

.pos-totals {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.pos-totals span {
  display: flex;
  justify-content: space-between;
}

.pos-totals span:last-child {
  font-size: 20px;
}

.pos-ticket button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.admin-heading {
  justify-content: space-between;
  margin-bottom: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.dashboard-shell {
  display: grid;
  gap: 18px;
}

.quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef3fb);
  box-shadow: var(--shadow);
}

.dashboard-hero h3 {
  margin: 0;
  font-size: 28px;
}

.dashboard-total {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.dashboard-total span {
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-total strong {
  font-size: 28px;
}

.dashboard-stats .stat-card {
  border-left: 4px solid var(--blue);
}

.stat-card {
  padding: 18px;
  box-shadow: none;
}

.stat-card span {
  color: var(--muted);
  font-weight: 500;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
}

.data-table-wrap,
.report-box {
  overflow: auto;
  box-shadow: none;
}

.daily-total {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  padding: 14px 16px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef3fb;
  color: #1f2937;
  font-size: 13px;
}

.module-stack {
  display: grid;
  gap: 16px;
}

.create-sheet,
.index-sheet {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.create-sheet summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.index-search {
  max-width: 360px;
}

.executive-index {
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.executive-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, #f4f7fb);
}

.executive-header h3 {
  margin: 0;
  font-size: 24px;
}

.executive-header .muted {
  margin: 6px 0 0;
}

.executive-header .index-search {
  min-width: min(360px, 100%);
}

.index-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.index-metrics article {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 18px 20px;
  background: #ffffff;
}

.index-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.index-metrics strong {
  color: var(--ink);
  font-size: 24px;
}

.executive-index .data-table-wrap {
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.executive-index table {
  min-width: 960px;
}

.executive-index th {
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  text-transform: uppercase;
}

.executive-index td {
  background: #ffffff;
}

.executive-index tbody tr:hover td {
  background: #f8fafc;
}

.executive-index > .muted {
  padding: 0 22px 22px;
}

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

.form-section {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.form-section h3 {
  margin: 0;
}

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

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

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

.concept-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.1fr) minmax(180px, 1.2fr) 110px 140px 92px;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.summary-section {
  justify-items: stretch;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #edf7f0;
  color: #0f7a43;
  font-weight: 500;
  font-size: 12px;
}

.status.warn {
  background: #fff6d8;
  color: #8a6500;
}

.status.danger {
  background: #ffe7ea;
  color: #bd1025;
}

.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-width: 64px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 35;
  width: min(360px, calc(100vw - 36px));
  display: none;
  overflow: hidden;
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(16, 19, 24, 0.58);
}

.system-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 19, 24, 0.58);
}

.system-modal-card {
  width: min(980px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.record-modal {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.record-modal h2 {
  margin: 0;
}

.admin-product-image {
  width: min(320px, 100%);
  max-height: 240px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.record-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 18px;
}

.permission-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.permission-grid h4,
.permission-grid p {
  margin: 0;
}

.permission-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.permission-checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.permission-checks legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 800;
}

.permission-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  font-weight: 600;
}

.permission-checks input {
  width: auto;
  min-height: auto;
}

.production-area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.production-area-grid button {
  display: grid;
  gap: 8px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  padding: 14px;
  text-align: left;
}

.production-area-grid button:hover {
  border-color: var(--blue);
  background: #f7fbff;
}

.production-area-grid strong {
  font-size: 14px;
}

.production-area-grid span {
  color: var(--muted);
  font-size: 13px;
}

.modal-summary {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.account-modal.open {
  display: grid;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.45);
}

.modal-backdrop > .record-modal {
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.totals-box {
  display: grid;
  justify-content: end;
  gap: 8px;
  text-align: right;
}

.account-card {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.account-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.account-card h2 {
  margin: 0;
  font-size: 30px;
}

.account-card header button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  font-size: 24px;
  cursor: pointer;
}

.account-tabs {
  display: flex;
  gap: 8px;
  padding: 14px 20px 0;
}

.account-tabs button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 10px 14px;
  font-weight: 500;
  cursor: pointer;
}

.account-tabs button.active {
  border-color: var(--blue);
  background: #eaf1ff;
  color: var(--blue);
}

.account-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
}

.account-form .muted,
.account-form button {
  grid-column: 1 / -1;
}

.account-form .wide,
.social-auth {
  grid-column: 1 / -1;
}

.social-auth {
  display: grid;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.social-auth span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.social-auth-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-auth-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  flex: 1 1 110px;
}

.social-auth-button.google {
  border-color: #d9dfe8;
}

.social-auth-button.facebook {
  background: #1877f2;
  color: #ffffff;
}

.social-auth-button.apple {
  background: #101318;
  color: #ffffff;
}

.hidden {
  display: none !important;
}

.chatbot.open {
  display: block;
}

.chatbot header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: var(--ink);
  color: white;
}

.chatbot header button {
  border: 0;
  background: transparent;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.chat-body {
  max-height: 280px;
  overflow: auto;
  padding: 14px;
}

.chat-body p {
  white-space: pre-line;
}

.chat-welcome {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
  padding: 12px 14px;
}

.chat-welcome strong {
  color: var(--ink);
}

.chat-welcome span {
  color: var(--muted);
  line-height: 1.35;
}

.chat-welcome.hidden {
  display: none;
}

.chatbot form {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chatbot form input[name="visitor_name"],
.chatbot form input[name="_token"] {
  grid-column: 1 / -1;
}

.chatbot form input[name="_token"] {
  display: none;
}

.chatbot form button {
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  font-weight: 500;
}

@media (max-width: 980px) {
  .main-nav,
  .socials {
    display: none;
  }

  .topbar.open .main-nav,
  .topbar.open .socials {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .topbar.open .main-nav {
    align-items: flex-start;
    gap: 12px 16px;
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown button {
    width: 100%;
    justify-content: flex-start;
  }

  .submenu {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .hero,
  .store-layout,
  .catalog-layout,
  .client-layout,
  .admin-shell,
  .dashboard-hero,
  .cart-detail-layout,
  .payment-layout,
  .location-layout,
  .form-grid,
  .summary-grid,
  .concept-row,
  .product-modal-card,
  .product-options-dialog,
  .product-options,
  .product-options-body form,
  .quote-form,
  .client-form,
  .module-form,
  .account-form,
  .payment-form,
  .checkout-form,
  .checkout-shipping-grid,
  .checkout-grid,
  .checkout-shell,
  .checkout-field-grid,
  .stripe-split-grid,
  .pos-topbar-modern,
  .pos-client-bar,
  .pos-shortcuts,
  .pos-single-action-bar,
  .pos-workspace,
  .pos-payment-grid,
  .pos-kpi-row {
    grid-template-columns: 1fr;
  }

  .product-options-modal {
    padding: 10px;
    align-items: start;
  }

  .product-options-media {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-options-body {
    padding: 28px 18px 18px;
  }

  .checkout-summary-panel {
    position: static;
  }

  .pos-session-box,
  .pos-company-center {
    justify-self: stretch;
    text-align: left;
  }

  .pos-panel-header {
    display: grid;
  }

  .pos-panel-header input {
    max-width: none;
  }

  .pos-ticket-table-head,
  .pos-ticket-row-modern {
    grid-template-columns: 72px minmax(150px, 1fr) 80px;
  }

  .pos-ticket-table-head span:nth-child(4),
  .pos-ticket-table-head span:nth-child(5),
  .pos-ticket-row-modern > strong,
  .pos-ticket-row-modern > button {
    display: none;
  }

  .executive-header {
    display: grid;
  }

  .executive-header .index-search {
    min-width: 0;
    max-width: none;
  }

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

  .admin-sidebar,
  .catalog-sidebar,
  .cart-panel {
    position: static;
  }

  .catalog-sidebar {
    order: -1;
  }

  .catalog-menu {
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, max-content);
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .catalog-category-heading {
    align-items: start;
  }
}

@media print {
  body > *:not(.print-document) {
    display: none !important;
  }

  .print-document {
    display: block;
    padding: 24px;
  }
}

/* Premium storefront refresh */
:root {
  --ink: #111827;
  --muted: #6b7280;
  --line: #eef0f3;
  --paper: #ffffff;
  --soft: #f3f4f6;
  --blue: #1d4ed8;
  --black: #0f172a;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

body.storefront {
  color: #111827;
  background: #ffffff;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.storefront .topbar {
  min-height: 72px;
  gap: 20px;
  padding: 10px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid #f1f1f1;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.storefront .brand {
  min-width: 190px;
}

.storefront .brand img {
  width: 48px;
  height: 48px;
}

.storefront .brand strong {
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
}

.storefront .brand small,
.storefront .muted {
  color: #6b7280;
  font-weight: 400;
}

.storefront .main-nav a,
.storefront .nav-dropdown button,
.storefront .socials a {
  color: #111827;
  font-size: 14px;
  font-weight: 400;
}

.storefront .main-nav > a,
.storefront .nav-dropdown > button {
  border-radius: 999px;
  padding: 8px 12px;
}

.storefront .main-nav > a:hover,
.storefront .main-nav > a.active,
.storefront .nav-dropdown:hover > button,
.storefront .nav-dropdown:focus-within > button,
.storefront .nav-dropdown > button.active,
.storefront .submenu a:hover,
.storefront .submenu a.active {
  border-color: #f3f4f6;
  background: #f3f4f6;
  color: #1d4ed8;
}

.storefront .social-icon,
.storefront .header-contact-link,
.storefront .icon-button {
  border-color: #edf0f4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.storefront .promo-ribbon {
  background: #0f172a;
}

.storefront .promo-ribbon span {
  font-size: 12px;
  font-weight: 500;
}

.storefront .hero.hero-image-only {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 240px;
  padding: clamp(26px, 4vw, 48px) clamp(20px, 6vw, 86px);
  isolation: isolate;
}

.storefront .hero.hero-image-only::before {
  display: none;
}

.storefront .hero.has-hero-image .hero-content {
  display: block;
}

.storefront .hero.hero-image-only .hero-content {
  max-width: 560px;
}

.storefront .hero.hero-image-only h1 {
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.storefront .hero.hero-image-only p {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 400;
}

.storefront .hero.hero-image-only .hero-actions {
  margin-top: 18px;
}

.storefront .primary-button,
.storefront .secondary-button,
.storefront .danger-button,
.storefront .small-button,
.storefront .button {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.storefront .primary-button {
  background: #1d4ed8;
}

.storefront .primary-button:hover,
.storefront .product-options-trigger:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.storefront .store-band,
.storefront .client-band {
  background: #ffffff;
}

.storefront .featured-band,
.storefront .services-band,
.storefront .quote-band {
  background: #ffffff;
}

.storefront .section-heading {
  margin-bottom: 22px;
}

.storefront .eyebrow {
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.storefront .section-heading h2,
.storefront .catalog-category-heading h3,
.storefront .admin-heading h2 {
  color: #0f172a;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0;
}

.storefront .catalog-category-heading h3 {
  font-size: 22px;
}

.storefront .catalog-sidebar,
.storefront .cart-panel,
.storefront .quote-form,
.storefront .client-form,
.storefront .module-form,
.storefront .product-options-dialog,
.storefront .product-image-dialog {
  border: 1px solid #eeeeee;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.storefront .catalog-menu-link {
  border-color: #eef0f3;
  color: #111827;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.storefront .catalog-menu-group.is-open .catalog-menu-link,
.storefront .catalog-menu-link:hover,
.storefront .catalog-menu-link:focus {
  border-color: #dbeafe;
  color: #1d4ed8;
  background: #f3f4f6;
}

.storefront .catalog-submenu {
  border-left-color: #dbeafe;
}

.storefront .catalog-submenu a {
  color: #6b7280;
  background: #ffffff;
  font-size: 13px;
  font-weight: 400;
}

.storefront .catalog-submenu a:hover,
.storefront .catalog-submenu a:focus {
  color: #2563eb;
  background: #f3f4f6;
}

.storefront .product-grid,
.storefront .featured-grid {
  gap: 22px;
}

.storefront .product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 300px;
  padding: 20px;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.storefront .product-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.storefront .product-card.is-modal-open,
.storefront .product-card.is-modal-open:hover {
  transform: none;
}

.storefront .product-visual {
  flex: 0 0 auto;
  height: 190px;
  margin: -4px -4px 0;
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 70% 20%, rgba(29, 78, 216, 0.08), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.storefront .product-visual::before {
  inset: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

.storefront .product-card .body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  background: #ffffff;
  padding: 18px 0 0;
}

.storefront .product-card h3 {
  min-height: auto;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.storefront .product-card p,
.storefront .product-description {
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.storefront .product-card .price,
.storefront .product-options-body .price {
  color: #111827;
  font-size: 18px;
  font-weight: 500;
}

.storefront .product-card .product-options-trigger {
  min-height: 42px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.storefront .availability,
.storefront .offer-badge,
.storefront .stock-pill {
  font-size: 11px;
  font-weight: 500;
}

.storefront .product-options-body h2 {
  color: #111827;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
}

.storefront .variant-choice-group > span,
.storefront .variant-select-heading,
.storefront .panel-title h3,
.storefront .cart-total strong,
.storefront .service-grid strong,
.storefront .location-details dd {
  font-weight: 500;
}

.storefront .variant-button-group button {
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
}

.storefront .variant-button-group button.active {
  background: #0f172a;
  color: #ffffff;
}

.storefront .home-section-accent {
  background: #ffffff;
}

.storefront .home-section-accent .section-heading {
  padding-left: 0;
}

.storefront .home-section-accent .section-heading .eyebrow {
  display: block;
  width: auto;
  padding: 0;
  border-radius: 0;
  color: #1d4ed8;
  background: transparent;
}

.storefront .accent-offers,
.storefront .accent-quotes {
  background: #f9fafb;
}

@media (max-width: 700px) {
  .storefront .hero.hero-image-only {
    min-height: 260px;
    padding: 28px 20px;
  }

  .storefront .hero.hero-image-only h1 {
    font-size: 32px;
  }
}

/* Modern commercial home refinement */
body.storefront {
  font-family: Inter, Poppins, Manrope, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #111827;
  background: #ffffff;
}

.storefront .home-section-accent {
  padding: 80px clamp(18px, 5vw, 72px);
}

.storefront .accent-store,
.storefront .accent-production,
.storefront .accent-location {
  background: #ffffff;
}

.storefront .accent-offers,
.storefront .accent-quotes {
  background: #f7f7f8;
}

.storefront .section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.storefront .quote-band .section-heading {
  max-width: 760px;
}

.storefront .eyebrow,
.storefront .home-section-accent .section-heading .eyebrow {
  margin-bottom: 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
}

.storefront .section-heading h2,
.storefront .catalog-category-heading h3,
.storefront .location-details h3 {
  color: #111827;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

.storefront .catalog-category-heading h3 {
  font-size: 24px;
}

.storefront .topbar {
  border-bottom-color: #f3f4f6;
}

.storefront .main-nav a,
.storefront .nav-dropdown button {
  font-size: 14px;
  font-weight: 400;
}

.storefront .catalog-layout {
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 34px;
}

.storefront .catalog-sidebar,
.storefront .quote-form,
.storefront .location-details,
.storefront .map-frame {
  border-color: #eeeeee;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.storefront .catalog-menu-link {
  border-color: #eeeeee;
  border-radius: 14px;
  color: #111827;
  background: #ffffff;
  font-weight: 400;
}

.storefront .catalog-menu-group.is-open .catalog-menu-link,
.storefront .catalog-menu-link:hover,
.storefront .catalog-menu-link:focus {
  border-color: #e5e7eb;
  color: #2563eb;
  background: #f3f4f6;
  transform: none;
}

.storefront .catalog-submenu {
  border-left-color: #e5e7eb;
}

.storefront .catalog-submenu a {
  color: #6b7280;
  background: transparent;
  font-weight: 400;
}

.storefront .catalog-category {
  margin-bottom: 12px;
}

.storefront .catalog-category-heading {
  margin-bottom: 18px;
}

.storefront .catalog-category-heading .category-button,
.storefront .primary-button,
.storefront .secondary-button,
.storefront .small-button,
.storefront .button {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transform: none;
}

.storefront .primary-button,
.storefront .product-card .product-options-trigger {
  background: #111827;
  color: #ffffff;
}

.storefront .primary-button:hover,
.storefront .product-options-trigger:hover {
  background: #2563eb;
  transform: none;
}

.storefront .product-grid,
.storefront .featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 292px));
  gap: 28px;
  justify-content: center;
}

.storefront .product-card {
  max-width: 292px;
  padding: 18px;
  border-color: #eeeeee;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.storefront .product-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.075);
}

.storefront .product-visual {
  height: 208px;
  margin: 0;
  border-radius: 18px;
  background: #f8fafc;
}

.storefront .product-visual::before {
  display: none;
}

.storefront .product-card .body {
  gap: 11px;
  padding-top: 18px;
}

.storefront .product-card h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.storefront .product-card p,
.storefront .product-description,
.storefront .quote-form,
.storefront .location-details,
.storefront .services-band {
  font-size: 15px;
  font-weight: 400;
}

.storefront .product-description {
  color: #6b7280;
}

.storefront .product-card .price {
  font-size: 18px;
  font-weight: 500;
}

.storefront .availability,
.storefront .offer-badge {
  font-size: 11px;
  font-weight: 500;
}

.storefront .service-grid {
  gap: 18px;
}

.storefront .service-grid article {
  border-color: #eeeeee;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.storefront .service-grid strong {
  color: #111827;
  font-size: 15px;
  font-weight: 500;
}

.storefront .quote-form {
  padding: 28px;
}

.storefront .quote-form input,
.storefront .quote-form select,
.storefront .quote-form textarea,
.storefront .client-form input,
.storefront .client-form select,
.storefront .client-form textarea {
  border-color: #eeeeee;
  border-radius: 14px;
  font-size: 15px;
}

.storefront .location-layout {
  gap: 28px;
}

@media (max-width: 980px) {
  .storefront .home-section-accent {
    padding: 64px 18px;
  }

  .storefront .catalog-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .storefront .catalog-sidebar {
    order: -1;
    position: static;
    width: 100%;
    max-width: none;
    overflow: hidden;
  }

  .storefront .catalog-menu {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .storefront .catalog-menu-link {
    width: 100%;
  }

  .storefront .catalog-sections,
  .storefront .catalog-category,
  .storefront .catalog-product-anchor {
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .storefront .section-heading h2,
  .storefront .catalog-category-heading h3,
  .storefront .location-details h3 {
    font-size: 30px;
  }

  .storefront .product-grid,
  .storefront .featured-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
  }

  .storefront .hero.hero-image-only {
    height: auto !important;
    min-height: 0;
    aspect-ratio: 920 / 450;
    max-height: none !important;
    padding: 0;
  }

  .storefront .hero.hero-image-only.has-hero-image {
    background-color: #ffffff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .storefront .hero.hero-image-only {
    aspect-ratio: 920 / 520;
  }
}
