:root {
  color-scheme: light;
  --ink: #171312;
  --muted: #716763;
  --line: #e0d8ca;
  --paper: #fffdf6;
  --panel: #fffdf0;
  --accent: #e33f41;
  --accent-dark: #b8292d;
  --fresh: #171312;
  --steel: #77716d;
  --shadow: 0 18px 44px rgba(38, 18, 16, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Open Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffdef;
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

.language-toggle {
  position: fixed;
  top: 10px;
  right: 12px;
  z-index: 100;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.catalog-panel {
  padding: 24px;
  overflow: auto;
  background: var(--panel);
}

.topbar, .order-header, .catalog-meta, .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  justify-content: space-between;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  font-size: 22px;
  line-height: 1.1;
}

.date-chip {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: rgba(255, 253, 237, 0.82);
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.brand-lockup {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.brand-logo {
  width: 238px;
  height: 148px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex: 0 0 auto;
  filter: contrast(1.35) saturate(0) drop-shadow(0 0 0 #000);
}

.welcome-text {
  color: var(--ink);
  min-width: 0;
  font-family: "Century Gothic", "Open Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.topbar-actions {
  display: inline-flex;
  align-items: end;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  margin: -6px 0 10px;
  padding-right: 2px;
}

.support-stack {
  display: flex;
  align-items: center;
}

.support-whatsapp, .share-whatsapp {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: 999px;
  background: #25d366;
  color: #082019;
  padding: 0 12px 0 5px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
}

.support-whatsapp:hover, .share-whatsapp:hover {
  background: #1ebe5d;
}

.whatsapp-mark {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #25d366;
  flex: 0 0 auto;
}

.whatsapp-mark svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}

.language-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffef8;
  box-shadow: 0 8px 18px rgba(18, 60, 61, 0.06);
}

.language-toggle button {
  min-width: 50px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  line-height: 1;
  padding: 8px 9px;
}

.language-toggle button img {
  width: 30px;
  height: 20px;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 19, 18, 0.08);
}

.language-toggle button.active {
  background: var(--ink);
  color: #fffdf0;
}

.visual-band {
  min-height: 330px;
  margin: 16px 0 18px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 18, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32) 42%, rgba(0, 0, 0, 0.02)),
    url("mobile-order-delivery-hero-phils-icon-bag.png") center right / cover;
  box-shadow: var(--shadow);
}

.visual-copy {
  width: min(100%, 480px);
  max-width: 480px;
  padding: 34px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.visual-copy strong {
  color: #fffdf0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.visual-copy span {
  color: #fffdf0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.visual-copy .eyebrow {
  color: var(--accent);
}

.quick-repeat {
  margin: 0 0 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 248, 0.86);
}

.quick-repeat strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.quick-repeat span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.search-box {
  max-width: 520px;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

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

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(227, 63, 65, 0.14);
}

.date-cutoff-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

#deliveryMainRegion {
  background: #eee7dc;
  border-color: #d0c5b8;
  color: #5f544a;
  font-weight: 800;
  cursor: not-allowed;
}

.segments {
  min-width: 0;
}

.segment-row,
.subcategory-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.subcategory-strip {
  margin: 12px 0 4px;
  padding-bottom: 2px;
}

.category-banner {
  position: relative;
  min-height: clamp(220px, 26vw, 330px);
  margin: 14px 0 12px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #2b2724;
  background-position: center;
  background-size: cover;
  box-shadow: 0 12px 30px rgba(23, 19, 18, 0.12);
}

.category-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.02));
}

.category-banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 6px;
  width: min(62%, 440px);
  min-height: clamp(220px, 26vw, 330px);
  padding: 22px 24px;
  color: white;
}

.category-banner-copy strong {
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.category-banner-copy span {
  font-weight: 800;
  line-height: 1.25;
}

.segment {
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
  border-radius: 6px;
  padding: 11px 13px;
  font-weight: 800;
}

.segment span,
.subsegment span {
  margin-left: 7px;
  opacity: 0.72;
  font-size: 11px;
}

.segment.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.subsegment {
  border: 1px solid rgba(23, 19, 18, 0.12);
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
}

.subsegment.active {
  background: #171312;
  border-color: #171312;
  color: #fffdf0;
}

.catalog-meta {
  margin: 18px 0 12px;
  color: var(--muted);
  font-weight: 800;
}

.catalog-meta select {
  max-width: 180px;
}

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

.product-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  background: var(--paper);
  border: 1px solid rgba(104, 85, 69, 0.18);
  border-radius: 8px;
  padding: 14px;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(54, 42, 32, 0.06);
}

.product-card.has-product-image {
  grid-template-rows: auto 132px auto auto 1fr;
  padding-top: 0;
}

.product-meta-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.product-card.has-product-image .product-meta-strip {
  padding-top: 12px;
}

.product-photo {
  margin: 0 -14px;
  height: 132px;
  background: #f2eadf;
  border-bottom: 1px solid rgba(104, 85, 69, 0.16);
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card.has-placeholder-image .product-photo {
  background: #fff8ea;
}

.product-card.has-placeholder-image .product-photo img {
  object-fit: contain;
  padding: 10px 16px;
}

.product-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, auto);
  align-items: start;
  gap: 12px;
}

.product-card header > div:first-child {
  min-width: 0;
}

.product-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.code {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
}

.product-code-note {
  max-width: none;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.badge {
  align-self: start;
  flex: 0 0 auto;
  border-radius: 99px;
  padding: 5px 8px;
  color: white;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-subcategory {
  color: var(--accent);
  min-width: 0;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.order-method {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(227, 63, 65, 0.18);
  border-radius: 6px;
  background: #fff8ef;
}

.order-method strong {
  font-size: 13px;
  line-height: 1.2;
}

.order-method span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.product-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.price-block {
  min-width: 0;
  text-align: right;
}

.price {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.price-block small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.add-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px auto;
  align-items: end;
  gap: 7px;
}

.order-controls.no-choice {
  grid-template-columns: 82px auto;
  justify-content: end;
}

.order-controls.has-choice {
  grid-template-columns: 82px auto;
  justify-content: end;
}

.size-choice,
.marinade-choice,
.pack-qty {
  min-width: 0;
}

.size-choice span,
.marinade-choice span,
.pack-qty span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.size-choice select,
.marinade-choice select {
  height: 42px;
  padding: 8px 9px;
}

.qty-input {
  width: 82px;
  min-width: 82px;
  height: 42px;
  text-align: right;
}

.add-btn {
  height: 42px;
}

.add-btn, .primary, .secondary, .icon-button {
  border: 0;
  border-radius: 6px;
  font-weight: 900;
}

.add-btn, .primary {
  background: var(--accent);
  color: white;
  padding: 11px 13px;
}

.add-btn:hover, .primary:hover {
  background: var(--accent-dark);
}

.secondary {
  background: #171312;
  color: #fffdf0;
  padding: 11px 13px;
}

.secondary:hover {
  background: #2b2523;
}

.order-panel {
  width: min(980px, 100%);
  min-height: 100vh;
  justify-self: center;
  display: grid;
  grid-template-rows: auto auto auto minmax(150px, 1fr) auto auto auto;
  gap: 16px;
  padding: 24px;
  background: #fffdf0;
  box-shadow: 0 18px 44px rgba(54, 42, 32, 0.09);
}

.order-panel[hidden], .catalog-panel[hidden] {
  display: none;
}

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

.back-to-shop-btn {
  min-height: 42px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #171312;
  color: #fffdf0;
}

.icon-button:hover {
  background: var(--accent);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.customer-form .full {
  grid-column: 1 / -1;
}

.order-type-field {
  padding: 12px;
  border: 1px solid rgba(227, 63, 65, 0.28);
  border-radius: 8px;
  background: #fff7ec;
}

.order-type-field span {
  color: var(--accent-strong);
  font-size: 13px;
}

.order-type-field select {
  min-height: 48px;
  border-color: rgba(227, 63, 65, 0.38);
  background: #fffef8;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

#deliveryRegionField {
  position: relative;
}

.region-picker {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffef8;
  box-shadow: var(--shadow);
  padding: 6px;
}

.region-option {
  width: 100%;
  display: grid;
  gap: 2px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 10px 11px;
}

.region-option:hover,
.region-option:focus {
  background: #f5efe1;
}

.region-option strong {
  font-size: 14px;
}

.region-option span,
.region-picker-empty {
  color: var(--muted);
  font-size: 12px;
}

.region-picker-empty {
  padding: 12px;
}

.repeat-order-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
}

.repeat-order-btn {
  min-height: 36px;
  padding: 8px 12px;
}

.repeat-order-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.repeat-order-status {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.repeat-loaded-message {
  display: grid;
  gap: 2px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(227, 63, 65, 0.28);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: #fff1e8;
  box-shadow: 0 8px 18px rgba(18, 60, 61, 0.08);
}

.repeat-loaded-message[hidden] {
  display: none;
}

.repeat-loaded-message strong {
  color: var(--accent-strong);
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.repeat-loaded-message span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.cart-list {
  min-height: 170px;
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.empty-cart {
  height: 100%;
  min-height: 160px;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px 28px;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(216, 210, 204, 0.7);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item strong {
  display: block;
  line-height: 1.2;
}

.cart-item small {
  color: var(--muted);
}

.remove-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: #f1e5e2;
  color: var(--accent);
  font-weight: 900;
}

.totals {
  display: grid;
  gap: 8px;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

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

.totals .grand {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 2px solid var(--ink);
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.actions {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.actions button {
  min-height: 42px;
}

.submit-area {
  display: grid;
  gap: 8px;
}

.add-items-btn {
  min-height: 44px;
  background: #fffef8;
  border: 1px solid var(--line);
  color: var(--ink);
}

.add-items-btn:hover {
  background: #fff7ec;
}

.detail-check-note {
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(18, 60, 61, 0.16);
  border-radius: 8px;
  background: #fff9ea;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.submit-order-btn {
  min-height: 54px;
  font-size: 18px;
}

.submit-help {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.admin-tools {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.admin-tools summary {
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.admin-tools .actions {
  margin-top: 8px;
}

.order-output {
  max-height: 185px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  border-radius: 6px;
  background: #2b2724;
  color: #fff7ef;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.admin-tools[hidden],
.order-output[hidden] {
  display: none !important;
}

.floating-order-link {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 20;
  min-width: 210px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(38, 18, 16, 0.24);
  font-size: 16px;
  font-weight: 900;
}

.floating-order-link[hidden] {
  display: none;
}

.floating-order-link span:not(.floating-order-label) {
  min-width: 26px;
  min-height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 12px;
}

.floating-order-link small {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.92;
}

.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 19, 18, 0.34);
}

.order-success-modal[hidden] {
  display: none !important;
}

.order-success-card {
  width: min(390px, 100%);
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(18, 60, 61, 0.18);
  border-radius: 8px;
  background: #fffdf0;
  color: var(--ink);
  box-shadow: 0 20px 52px rgba(23, 19, 18, 0.28);
  text-align: center;
}

.order-success-card strong {
  color: var(--accent-strong);
  font-size: 24px;
  line-height: 1.1;
}

.order-success-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.order-success-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}

.order-success-actions button {
  min-height: 42px;
}

.order-success-actions .quiet {
  background: #fffef8;
  color: var(--ink);
  border: 1px solid var(--line);
}

.order-success-actions .quiet:hover {
  background: #f5efe2;
}

@media (min-width: 520px) {
  .order-success-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 74px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  }

  body.cart-view {
    padding-bottom: 0;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .order-panel {
    min-height: auto;
    border-top: 1px solid rgba(104, 85, 69, 0.2);
    box-shadow: none;
  }

  .controls, .visual-band {
    grid-template-columns: 1fr;
  }

  .visual-copy {
    padding: 0 18px 18px;
    width: min(100%, 330px);
  }

  .visual-copy strong {
    font-size: 30px;
  }

  .visual-copy span {
    font-size: 16px;
    line-height: 1.35;
  }

  .quick-repeat {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-repeat .repeat-order-btn {
    width: 100%;
  }

  .floating-order-link {
    left: 16px;
    right: 16px;
    bottom: 14px;
    gap: 8px;
    min-width: 0;
    min-height: 52px;
  }
}

@media (max-width: 580px) {
  .catalog-panel, .order-panel {
    padding: 16px;
  }

  .topbar, .order-header, .catalog-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-header-actions {
    width: 100%;
  }

  .back-to-shop-btn {
    flex: 1;
  }

  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .brand-logo {
    width: 162px;
    height: 104px;
  }

  .welcome-text {
    font-size: 20px;
    white-space: normal;
  }

  .topbar-actions {
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 8px 0 18px;
    padding-right: 0;
  }

  .support-stack {
    flex: 0 0 auto;
    min-width: 0;
  }

  .support-whatsapp {
    flex: 0 0 auto;
  }

  .share-whatsapp {
    flex: 0 0 auto;
    min-width: 0;
  }

  .support-whatsapp, .share-whatsapp {
    min-height: 42px;
    gap: 7px;
    padding: 0 12px 0 5px;
    font-size: 13px;
  }

  .whatsapp-mark {
    width: 31px;
    height: 31px;
  }

  .quick-repeat > div {
    min-width: 0;
  }

  .category-banner {
    min-height: 180px;
  }

  .category-banner-copy {
    width: 78%;
    min-height: 180px;
    padding: 16px;
  }

  .category-banner-copy span {
    font-size: 13px;
  }

  .customer-form {
    grid-template-columns: 1fr;
  }

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

  .product-card header {
    grid-template-columns: 1fr;
  }

  .price-block {
    text-align: left;
  }

  .add-controls {
    grid-template-columns: 1fr;
  }

  .qty-input {
    width: 100%;
  }
}

@media print {
  body {
    background: white;
  }

  .catalog-panel, .actions, .icon-button {
    display: none;
  }

  .app-shell {
    display: block;
  }

  .order-panel {
    box-shadow: none;
    border: 0;
  }

  .order-output {
    max-height: none;
    color: black;
    background: white;
    border: 1px solid #bbb;
  }
}
