:root {
  --ink: #173042;
  --muted: #667889;
  --line: #dbe8e9;
  --paper: #ffffff;
  --soft: #f1f9f8;
  --aqua: #0795ad;
  --mint: #62bea8;
  --green: #07884e;
  --deep: #0b6f86;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(7, 42, 54, 0.13);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f7fbfb;
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 164px;
  height: 66px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  background: #fff;
}

.brand strong,
.brand small,
.session-label,
.cart-item span,
.small-note {
  display: block;
}

.brand strong {
  color: var(--deep);
  font-size: 24px;
}

.brand small,
.small-note {
  color: var(--muted);
  font-size: 13px;
}

.main-nav,
.header-actions,
.hero-actions,
.filters,
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.main-nav {
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.main-nav a,
.ghost-button,
.primary-button,
.text-button {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 700;
}

.main-nav a,
.ghost-button,
.text-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
}

.primary-button {
  border: 1px solid var(--aqua);
  background: var(--aqua);
  color: #fff;
  padding: 0 16px;
}

.primary-button:hover { background: var(--deep); border-color: var(--deep); }
.ghost-button:hover, .main-nav a:hover { border-color: var(--mint); color: var(--deep); }
.link-button { display: inline-flex; align-items: center; justify-content: center; }
.wide { width: 100%; }
.session-label { color: var(--muted); font-size: 13px; }

.app-top {
  display: none;
}

.search-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid #cbd6d8;
  border-radius: 999px;
  background: #f4f7f8;
  color: var(--aqua);
  font-weight: 800;
}

.search-bar input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.search-bar button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #9ca4aa;
  font-weight: 800;
}

.header-search {
  flex: 1 1 260px;
  max-width: 380px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.page-loader.show {
  opacity: 1;
  pointer-events: auto;
}

.loader-heart {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 42, 54, 0.18);
  animation: pulseHeart 0.95s ease-in-out infinite;
}

.loader-heart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulseHeart {
  0%, 100% { transform: scale(0.96); }
  50% { transform: scale(1.06); }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: clamp(42px, 7vw, 90px) clamp(16px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 18%, rgba(98, 190, 168, 0.22), transparent 30%),
    linear-gradient(130deg, #ffffff, var(--soft) 62%, #dcf5f0);
}

.hero-copy { max-width: 680px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  color: var(--aqua);
  font-size: clamp(54px, 10vw, 110px);
  line-height: 0.9;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero p:not(.eyebrow),
.section-heading p {
  color: #405768;
  font-size: 18px;
  line-height: 1.6;
}

.hero-card {
  padding: clamp(18px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; display: block; border-radius: 6px; }

.promo-section {
  padding: 34px clamp(16px, 5vw, 64px) 20px;
  background: #fff;
}

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

.section-row-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
}

.section-row-heading a {
  color: var(--aqua);
  font-weight: 800;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.offer-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid #e4eeee;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff 40%, #eefaf8);
  text-align: left;
  box-shadow: 0 14px 35px rgba(7, 42, 54, 0.07);
}

.offer-card.large {
  grid-row: span 2;
  min-height: 330px;
}

.offer-card .offer-badge {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--ink);
  background: #ffda4f;
  font-weight: 700;
  line-height: 1.05;
}

.offer-card .offer-badge strong {
  font-size: 25px;
}

.offer-title,
.offer-name {
  display: block;
  max-width: 62%;
  margin-top: 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.offer-name {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.offer-card img,
.offer-card .product-icon {
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 38%;
  height: 56%;
  object-fit: contain;
}

.category-section {
  padding: 36px clamp(16px, 5vw, 64px) 26px;
  background: #fff;
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(132px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-color: #b9c8cc transparent;
}

.category-pill {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 140px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.category-pill span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e6eeee;
  border-radius: 50%;
  background: #fff;
}

.category-pill img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.category-pill i {
  width: 52px;
  height: 64px;
  border-radius: 8px;
  background: var(--product-color);
}

.category-pill strong {
  font-size: 14px;
  line-height: 1.25;
}

.promo-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
}

.promo-slider {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-track {
  display: flex;
  min-height: inherit;
  transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.promo-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 28px;
  padding: clamp(24px, 5vw, 46px);
}

.promo-slide h2 {
  color: var(--deep);
  max-width: 720px;
}

.promo-slide p {
  max-width: 640px;
  color: #405768;
  font-size: 18px;
  line-height: 1.55;
}

.promo-slide img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.promo-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--deep);
  background: #fff;
  font-size: 34px;
  line-height: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 14px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #c6d8da;
}

.slider-dots button.active {
  background: var(--aqua);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.status-strip div {
  padding: 22px clamp(16px, 5vw, 64px);
  background: #fff;
}
.status-strip span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.section,
.admin-panel,
.site-footer {
  padding: 70px clamp(16px, 5vw, 64px);
}

.page-main {
  min-height: calc(100vh - 88px);
  background: var(--soft);
}

.page-panel,
.checkout-section {
  min-height: calc(100vh - 88px);
}

.page-title {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
}
.section-heading { max-width: 780px; margin-bottom: 26px; }

.filters { margin-bottom: 24px; }
.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}
.filter.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

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

.catalog-page {
  padding: clamp(34px, 5vw, 70px) clamp(16px, 5vw, 64px);
  background: #fff;
}

.catalog-heading {
  max-width: 860px;
}

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

.catalog-filters {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 16px 40px rgba(7, 42, 54, 0.07);
}

.catalog-results {
  min-width: 0;
}

.catalog-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.catalog-result-bar strong {
  color: var(--deep);
}

.cart-page {
  min-height: calc(100vh - 88px);
  padding: clamp(34px, 5vw, 70px) clamp(16px, 5vw, 64px);
  background: var(--soft);
}

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

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card,
.cart-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-card { position: relative; overflow: hidden; }
.product-art {
  position: relative;
  display: grid;
  height: 140px;
  place-items: center;
  background: var(--soft);
}
.product-art.has-image {
  background: #fff;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.discount-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 8px;
  color: #fff;
  background: var(--danger);
  font-size: 12px;
  font-weight: 800;
}
.product-card.is-promo {
  border-color: #b9e2dc;
  box-shadow: 0 16px 42px rgba(7, 42, 54, 0.08);
}
.product-icon {
  position: relative;
  width: 76px;
  height: 96px;
  border-radius: 8px;
  background: var(--product-color);
  box-shadow: 0 12px 28px rgba(10, 58, 73, 0.16);
}
.product-icon::before {
  content: "+";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
  font-size: 26px;
  font-weight: 800;
}
.product-body { display: grid; gap: 12px; padding: 18px; }
.product-top, .cart-header, .cart-item, .cart-total, .list-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.category { color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.price { font-size: 19px; font-weight: 800; }
.old-price { color: var(--muted); text-decoration: line-through; font-size: 14px; }
.product-body p, .table-list p { color: var(--muted); line-height: 1.45; margin-bottom: 0; }
.add-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.add-symbol {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.cart-panel {
  position: sticky;
  top: 102px;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(7, 42, 54, 0.08);
}
.cart-list { display: grid; gap: 12px; min-height: 70px; margin: 16px 0; }
.cart-item { border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.remove-item, .danger-button {
  min-height: 34px;
  border-radius: 8px;
  border: 1px solid #f3b6ae;
  color: var(--danger);
  background: #fff;
  font-weight: 800;
}
.cart-total {
  margin: 16px 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cart-total strong { font-size: 24px; }

.field { display: grid; gap: 7px; margin-bottom: 14px; color: var(--ink); font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.field select {
  appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(45deg, transparent 50%, var(--deep) 50%) calc(100% - 20px) 50% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--deep) 50%, transparent 50%) calc(100% - 15px) 50% / 7px 7px no-repeat,
    #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 149, 173, 0.08);
  color: var(--ink);
  font-weight: 700;
}
.field input[type="file"] {
  padding: 8px;
  background: #f8fbfb;
}
.field textarea { min-height: 92px; resize: vertical; }
.check-field { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-weight: 700; }

.admin-panel { background: var(--soft); }
.control-panel { padding: 70px clamp(16px, 5vw, 64px); background: var(--soft); }
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.panel-tabs,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.panel-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.panel-tab.active {
  border-color: var(--aqua);
  background: var(--aqua);
  color: #fff;
}

.modal-form {
  grid-column: 1 / -1;
  border-color: #b9e2dc;
  box-shadow: var(--shadow);
}

.admin-guard {
  max-width: 620px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(7, 42, 54, 0.08);
}
.admin-card { padding: 20px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.palette-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.control-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}
.control-tabs {
  grid-column: 1 / -1;
}
.control-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
}
.control-main {
  display: grid;
  gap: 18px;
}
.metric-grid {
  display: grid;
  gap: 10px;
}
.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.metric strong {
  display: block;
  margin-top: 4px;
  color: var(--deep);
  font-size: 26px;
}
.admin-lists { display: grid; gap: 18px; }
.table-list { display: grid; gap: 10px; }
.list-row {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.list-row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.list-row-actions input {
  min-height: 34px;
  max-width: 220px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.mini-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}
.inactive { opacity: 0.55; }

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

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

.orders-section {
  max-width: 1120px;
  margin-inline: auto;
}

.orders-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.orders-list {
  display: grid;
  gap: 16px;
}

.order-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.order-number {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--deep);
  font-weight: 900;
}

.order-card h2 {
  margin: 0;
  font-size: 28px;
}

.order-card p {
  margin: 6px 0 0;
}

.order-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 8px;
  background: #edf8f6;
  color: var(--deep);
  font-weight: 900;
  white-space: nowrap;
}

.order-status.status-cancelado {
  background: #fff1f1;
  color: #9b1c1c;
}

.order-status.status-entregado,
.order-status.status-pagado {
  background: #effaf1;
  color: #15623f;
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.order-progress span {
  min-height: 34px;
  padding: 8px 6px;
  border-radius: 8px;
  background: #edf1f2;
  color: #60727b;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.order-progress span.done {
  background: var(--mint);
  color: #073c38;
}

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

.order-detail-grid p {
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
}

.order-detail-grid strong,
.order-detail-grid span {
  display: block;
}

.order-detail-grid strong {
  margin-bottom: 4px;
  color: var(--deep);
}

.order-helper {
  margin-top: 14px !important;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.delivery-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  margin-bottom: 18px;
  border-bottom: 0;
}

.summary-total strong {
  color: var(--deep);
  font-size: 28px;
}

.payment-methods {
  display: grid;
  gap: 10px;
  margin: 12px 0 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-methods legend {
  padding: 0 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-methods label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.manual-payment-box,
.payment-result {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #b9e2dc;
  border-radius: 8px;
  background: #eefaf8;
}

.manual-payment-box p,
.payment-result p {
  margin-bottom: 0;
  color: #405768;
  line-height: 1.5;
}

.payment-result {
  margin-top: 24px;
}

.status-select {
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.site-footer p { color: var(--muted); }

.auth-dialog {
  width: min(460px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.auth-dialog::backdrop { background: rgba(12, 36, 46, 0.45); }
.dialog-card { position: relative; padding: 28px; }
.dialog-card h2 { font-size: 32px; line-height: 1.1; }
.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.text-button { width: 100%; margin-top: 10px; }
.google-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}
.google-button:hover { border-color: var(--aqua); color: var(--deep); }
.auth-message {
  margin: 10px 0 12px;
  padding: 10px 12px;
  border: 1px solid #ffd0a6;
  border-radius: 8px;
  background: #fff7ed;
  color: #7c3f00;
  font-size: 14px;
  line-height: 1.35;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 0.2s ease;
  z-index: 40;
}
.toast.show { transform: translateY(0); }

.floating-widgets {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.support-button {
  padding: 0 16px;
  color: #fff;
  background: var(--deep);
}

.notification-button {
  position: relative;
  width: 48px;
  color: var(--deep);
  background: #fff;
}

.top-notification-button {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
}

.notification-button svg {
  display: inline-grid;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notification-button small {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--danger);
  font-size: 12px;
}

.floating-panel {
  position: fixed;
  right: 18px;
  bottom: 128px;
  z-index: 36;
  width: min(390px, calc(100vw - 36px));
  max-height: min(620px, calc(100vh - 160px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.floating-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.floating-panel-head h2 {
  font-size: 20px;
}

.inline-close {
  position: static;
  flex: 0 0 auto;
}

.support-messages,
.notifications-list,
.support-thread-view {
  display: grid;
  gap: 10px;
  align-content: start;
  max-height: 360px;
  padding: 14px;
  overflow-y: auto;
}

.support-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--soft);
}

.support-message.from-user {
  justify-self: end;
  background: #e9f8f5;
}

.support-message.from-admin {
  justify-self: start;
  background: #f3f7fb;
}

.support-message p,
.notification-item p {
  margin: 4px 0;
  color: var(--ink);
}

.support-message small,
.notification-item small {
  color: var(--muted);
  font-size: 12px;
}

.support-form,
.support-reply-form,
.notification-admin-form {
  display: grid;
  gap: 10px;
}

.support-form {
  padding: 12px;
  border-top: 1px solid var(--line);
}

.support-form textarea,
.support-reply-form textarea {
  min-height: 82px;
  resize: vertical;
}

.notification-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.notification-item.unread {
  border-color: #b9e2dc;
  background: #eefaf8;
}

.support-admin-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 16px;
}

.support-inbox {
  display: grid;
  gap: 8px;
  align-content: start;
}

.support-thread {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.support-thread.unread {
  border-color: var(--mint);
  background: #eefaf8;
}

.support-thread span,
.support-thread p {
  color: var(--muted);
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 1050px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; flex-wrap: wrap; }
  .header-search { order: 2; max-width: none; }
  .hero, .shop-layout, .catalog-layout, .cart-page-layout, .admin-grid, .site-footer, .checkout-grid, .promo-slide, .control-layout { grid-template-columns: 1fr; }
  .order-detail-grid { grid-template-columns: 1fr; }
  .support-admin-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-panel, .cart-page-summary, .checkout-summary, .catalog-filters, .control-sidebar { position: static; }
  .status-strip { grid-template-columns: 1fr; }
  .promo-slider { min-height: 430px; }
  .promo-slide img { max-height: 180px; }
  .palette-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card.large { grid-row: auto; }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 76px;
    background: #fff;
    overflow-x: hidden;
  }
  body * { min-width: 0; }
  .site-header {
    position: static;
    display: none;
  }
  .app-top {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) minmax(70px, 86px);
    align-items: center;
    gap: 6px;
    padding: 10px 10px 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    width: 100vw;
  }
  .app-logo {
    display: inline-flex;
    justify-content: center;
  }
  .app-logo img {
    width: 210px;
    max-width: 100%;
    height: 72px;
    object-fit: cover;
    object-position: center;
  }
  .app-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .app-icon-button {
    min-height: 38px;
    border: 1px solid #d7e9ec;
    border-radius: 999px;
    color: var(--aqua);
    background: #eef8fb;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
  }
  .search-bar {
    grid-column: 1 / -1;
    min-height: 54px;
  }
  .search-bar input {
    font-size: 16px;
  }
  .search-bar button {
    width: 30px;
    height: 30px;
  }
  .brand { min-width: 0; }
  .brand img { width: 126px; height: 56px; }
  .brand span { min-width: 0; }
  .brand strong { font-size: 18px; }
  .header-actions, .main-nav { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .session-label { grid-column: 1 / -1; }
  .header-actions > button, .main-nav a { width: 100%; padding-inline: 8px; text-align: center; }
  .hero, .section, .catalog-page, .cart-page, .admin-panel, .control-panel, .site-footer { padding: 30px 14px; }
  .hero {
    display: none;
  }
  .promo-section { padding: 18px 14px 14px; }
  .section-row-heading h2 { font-size: 24px; }
  .offer-grid {
    grid-template-columns: 82vw 82vw 82vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -14px;
    padding: 0 14px 8px;
  }
  .offer-card {
    min-height: 210px;
    scroll-snap-align: start;
  }
  .offer-title { font-size: 19px; }
  .offer-card img, .offer-card .product-icon {
    width: 44%;
    height: 48%;
  }
  .category-section { padding: 28px 14px 16px; }
  .category-rail {
    grid-auto-columns: 126px;
    margin-inline: -14px;
    padding-inline: 14px;
  }
  .category-pill span { width: 84px; height: 84px; }
  .promo-shell { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .promo-slider { min-height: 390px; box-shadow: none; border: 1px solid var(--line); }
  .promo-slide { gap: 16px; padding: 22px; }
  .promo-slide p, .hero p:not(.eyebrow), .section-heading p { font-size: 16px; }
  h1 { font-size: clamp(46px, 16vw, 72px); }
  h2 { font-size: clamp(26px, 9vw, 36px); }
  .filters {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    margin-inline: -14px;
    padding-inline: 14px;
  }
  .product-grid, .form-row, .palette-grid { grid-template-columns: 1fr; }
  .product-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 206px;
    border: 0;
    border-bottom: 1px solid #e6eeee;
    border-radius: 0;
    box-shadow: none;
  }
  .product-art {
    height: auto;
    min-height: 206px;
    background: #fff;
  }
  .product-image {
    width: 92%;
    height: 72%;
    object-fit: contain;
  }
  .product-icon {
    width: 68px;
    height: 86px;
  }
  .discount-ribbon {
    top: 10px;
    left: 4px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffda4f;
    color: var(--ink);
  }
  .product-body {
    padding: 16px 8px 16px 4px;
  }
  .product-top {
    display: grid;
    justify-content: start;
    gap: 4px;
  }
  .category {
    color: #a6afb5;
    font-size: 14px;
    text-transform: none;
  }
  .price {
    display: block;
    color: #338bd0;
    font-size: 26px;
  }
  .old-price {
    display: inline-block;
    margin-left: 0;
    font-size: 16px;
  }
  .product-body h3 {
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.25;
  }
  .product-body p {
    font-size: 13px;
  }
  .add-product-button {
    position: absolute;
    right: 10px;
    top: 16px;
    width: 54px;
    min-height: 54px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }
  .add-symbol {
    width: auto;
    height: auto;
    background: transparent;
    font-size: 34px;
  }
  .cart-panel {
    margin-top: 18px;
  }
  .catalog-result-bar {
    align-items: flex-start;
    flex-direction: column;
  }
  .cart-panel, .admin-card { padding: 16px; }
  .order-card-head { display: grid; }
  .order-progress { grid-template-columns: 1fr; }
  .list-row { align-items: flex-start; flex-direction: column; }
  .auth-dialog { width: calc(100vw - 20px); }
  .dialog-card { padding: 24px 18px; }
  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 24px rgba(7, 42, 54, 0.08);
    width: 100vw;
  }
  .mobile-bottom-nav a {
    display: grid;
    flex: 1 1 0;
    place-items: center;
    min-width: 0;
    min-height: 64px;
    color: var(--deep);
    font-size: 12px;
    font-weight: 800;
  }
.mobile-bottom-nav a::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    border: 2px solid var(--aqua);
    border-radius: 7px;
  }
  .floating-widgets {
    right: 12px;
    bottom: 82px;
  }
  .floating-panel {
    right: 10px;
    bottom: 148px;
    width: calc(100vw - 20px);
  }
}

/* Public storefront refresh */
.site-header {
  padding: 10px clamp(18px, 5vw, 72px);
  gap: 22px;
  background: rgba(252, 255, 255, 0.96);
}

.brand img {
  width: 174px;
  height: 82px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 42, 54, 0.08);
}

.brand span {
  display: none;
}

.main-nav a {
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-color: #d8ecee;
  background: linear-gradient(180deg, #ffffff, #f3fbfb);
  color: #082e35;
  box-shadow: 0 8px 20px rgba(7, 42, 54, 0.06);
  line-height: 1;
}

.main-nav a::before,
.quick-menu-card a::before,
.staff-access-actions a::before {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dff7f3;
  color: #118c85;
  font-size: 14px;
  line-height: 1;
}

.main-nav a[href="/"]::before,
.quick-menu-card a[href="/"]::before { content: ""; }
.main-nav a[href="/catalogo"]::before,
.quick-menu-card a[href="/catalogo"]::before { content: ""; }
.main-nav a[href="/carrito"]::before,
.quick-menu-card a[href="/carrito"]::before { content: ""; }
.main-nav a[href="/checkout"]::before,
.quick-menu-card a[href="/checkout"]::before { content: ""; }
.quick-menu-card a[href="/admin"]::before,
.main-nav a[href="/admin"]::before,
.staff-access-actions a[href="/admin"]::before { content: ""; }
.quick-menu-card a[href="/operador"]::before,
.main-nav a[href="/operador"]::before,
.staff-access-actions a[href="/operador"]::before { content: ""; }

.main-nav a:hover {
  transform: translateY(-1px);
  background: #eafafa;
  box-shadow: 0 12px 26px rgba(7, 42, 54, 0.1);
}

.main-nav a[href="/checkout"] {
  display: none;
}

.menu-button {
  position: relative;
  width: 54px;
  min-height: 48px;
  border: 1px solid #b8dfe3;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #eafafa);
  color: transparent;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(7, 42, 54, 0.08);
}

.menu-button::before,
.menu-button::after,
.mobile-bottom-nav button::before {
  content: "";
}

.menu-button::before {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 15px;
  height: 2px;
  background: #07393e;
  box-shadow: 0 8px 0 #07393e, 0 16px 0 #07393e;
}

.quick-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: start end;
  padding: 72px clamp(14px, 4vw, 42px);
  background: rgba(5, 26, 32, 0.18);
}

.quick-menu-card {
  display: grid;
  gap: 10px;
  width: min(330px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-menu-card a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #d9eeee;
  border-radius: 8px;
  color: var(--ink);
  background: #f8fdfd;
  font-weight: 800;
}

.quick-menu-card a:hover {
  background: #e8f8f6;
  color: var(--deep);
}

.quick-menu-card a[href="/admin"] {
  border-color: #ffd66e;
  background: #fff7da;
  color: #5b4300;
}

.quick-menu-card a[href="/operador"] {
  border-color: #9de5db;
  background: #e8fbf8;
  color: #004a48;
}

.hero {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 540px;
  padding-block: clamp(70px, 12vw, 150px);
  text-align: center;
  background: linear-gradient(180deg, #eafafa 0%, #f9fdfd 76%, #fff 100%);
}

.hero-copy {
  max-width: 880px;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: #cff0e7;
  color: #17a56b;
  text-transform: none;
}

.hero h1 {
  color: #062f32;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1.12;
}

.hero h1::after {
  content: ", a un clic de distancia";
  color: #319aa0;
}

.hero-card {
  display: none;
}

.hero-actions {
  justify-content: center;
}

.primary-button {
  border-radius: 999px;
  background: #2f9da4;
  border-color: #2f9da4;
}

.ghost-button {
  border-radius: 999px;
}

.catalog-page {
  background: #f8fcfc;
}

.catalog-heading .eyebrow,
.catalog-heading p {
  display: none;
}

.catalog-heading {
  margin-bottom: 20px;
}

.catalog-heading .page-title {
  margin-bottom: 4px;
  color: #062f32;
  font-size: clamp(34px, 5vw, 46px);
}

.catalog-layout {
  display: block;
}

.catalog-filters {
  position: static;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
  align-items: end;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: none;
}

.catalog-result-bar {
  border: 0;
  background: transparent;
  padding: 0;
}

.product-grid {
  gap: 24px;
}

.product-card {
  border-radius: 8px;
  box-shadow: none;
}

.product-art {
  height: 294px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body h3 {
  color: #001f24;
}

.product-top {
  display: block;
}

.product-top > span:last-child {
  display: none;
}

.category {
  color: #16a05d;
}

.price {
  color: #2b9aa3;
}

.site-footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #003c3a;
  color: #d8eeee;
}

.site-footer a,
.site-footer strong {
  color: #fff;
}

.staff-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.staff-access-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding-inline: 16px;
}

.staff-access-actions a[href="/admin"] {
  border-color: #ffd76d;
  background: #ffe89a;
  color: #173042;
}

.staff-access-actions a[href="/operador"] {
  border-color: #3bb9b1;
  background: #37a6a5;
  color: #fff;
}

.setup-lock-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #e4faf7;
  font-size: 30px;
  box-shadow: 0 16px 36px rgba(7, 42, 54, 0.09);
}

.setup-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin-top: 18px;
}

.mobile-bottom-nav button {
  display: grid;
  flex: 1 1 0;
  place-items: center;
  min-width: 0;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
}

.mobile-bottom-nav button::before {
  width: 24px;
  height: 18px;
  margin-bottom: 6px;
  border-top: 2px solid var(--aqua);
  border-bottom: 2px solid var(--aqua);
  box-shadow: inset 0 8px 0 -6px var(--aqua);
}

@media (max-width: 1050px) {
  .catalog-filters {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .hero {
    display: grid;
    min-height: 440px;
  }

  .app-top {
    grid-template-columns: 54px minmax(0, 1fr) 74px;
  }

  .app-logo img {
    width: 150px;
    height: 70px;
  }

  .product-art {
    height: auto;
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-height: 60px;
  }
}

/* Admin/operator polish */
.file-field input[type="file"] {
  min-height: 52px;
  padding: 11px;
  border: 1px dashed #9ed5da;
  background: linear-gradient(180deg, #ffffff, #eefafa);
}

.file-field input[type="file"]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--aqua);
  font-weight: 800;
}

.approve-button {
  border-color: #b9e2dc;
  background: #e9faf6;
  color: var(--green);
}

.order-detail-dialog {
  width: min(1080px, calc(100vw - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.order-detail-dialog::backdrop {
  background: rgba(8, 35, 42, 0.42);
}

.order-detail-card {
  width: 100%;
  max-height: min(86vh, 880px);
  overflow: auto;
}

.order-detail-head,
.order-product-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.order-detail-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.order-detail-head h2 {
  margin: 0;
  color: var(--deep);
}

.order-total-box {
  min-width: 190px;
  padding: 16px;
  border-radius: 8px;
  background: #eefaf8;
  text-align: right;
}

.order-total-box span,
.order-total-box small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.order-total-box strong {
  display: block;
  margin: 4px 0;
  color: var(--green);
  font-size: 28px;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 20px;
  margin-top: 20px;
}

.order-product-list {
  display: grid;
  gap: 12px;
}

.order-product-row {
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.order-product-image {
  width: 92px;
  height: 82px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

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

.order-info-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
}

.order-info-panel dl {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 8px 12px;
}

.order-info-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.order-info-panel dd {
  margin: 0;
  color: var(--ink);
}

.receipt-preview {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.receipt-preview img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.setup-lock-icon {
  font-size: 0;
}

.setup-lock-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b6f86' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v13H4z'/%3E%3Cpath d='M8 7V4h8v3'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

.main-nav a::before,
.quick-menu-card a::before,
.staff-access-actions a::before {
  content: "" !important;
  background-color: #dff7f3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}

.main-nav a[href="/"]::before,
.quick-menu-card a[href="/"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23118c85' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11.5 12 4l9 7.5'/%3E%3Cpath d='M5 10.5V21h14V10.5'/%3E%3Cpath d='M9.5 21v-6h5v6'/%3E%3C/svg%3E");
}

.main-nav a[href="/catalogo"]::before,
.quick-menu-card a[href="/catalogo"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23118c85' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m10 21 9-9a5 5 0 0 0-7-7l-9 9a5 5 0 0 0 7 7Z'/%3E%3Cpath d='m8.5 8.5 7 7'/%3E%3C/svg%3E");
}

.main-nav a[href="/carrito"]::before,
.quick-menu-card a[href="/carrito"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23118c85' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.5'/%3E%3Ccircle cx='18' cy='20' r='1.5'/%3E%3Cpath d='M2 3h3l2.4 12.2a2 2 0 0 0 2 1.6h7.8a2 2 0 0 0 2-1.5L21 7H6'/%3E%3C/svg%3E");
}

.main-nav a[href="/checkout"]::before,
.quick-menu-card a[href="/checkout"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23118c85' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.quick-menu-card a[href="/admin"]::before,
.main-nav a[href="/admin"]::before,
.staff-access-actions a[href="/admin"]::before {
  background-color: #ffeeb0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b4300' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h16l-2 10H6L4 8Z'/%3E%3Cpath d='M7 8l2-4 3 4 3-4 2 4'/%3E%3C/svg%3E");
}

.quick-menu-card a[href="/operador"]::before,
.main-nav a[href="/operador"]::before,
.staff-access-actions a[href="/operador"]::before {
  background-color: #dff7f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004a48' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v13H4z'/%3E%3Cpath d='M8 7V4h8v3'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

@media (max-width: 720px) {
  .order-detail-head,
  .order-product-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-detail-grid,
  .order-info-panel dl {
    grid-template-columns: 1fr;
  }

  .order-total-box {
    width: 100%;
    text-align: left;
  }
}
