:root {
  --black: #0b0b0f;
  --black-soft: #121217;
  --panel: #18181f;
  --panel-2: #202028;
  --gold: #c99843;
  --gold-soft: #f3d99a;
  --amber: #f0a329;
  --text: #f7f0df;
  --muted: #a9a195;
  --line: rgba(243, 217, 154, 0.16);
  --danger: #e34f4f;
  --ok: #5fc781;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 152, 67, 0.16), transparent 28rem),
    linear-gradient(135deg, #09090c 0%, #15151b 45%, #0c0c10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.app-shell {
  min-height: 100vh;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.login-card {
  width: min(28rem, 100%);
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 18, 23, 0.92);
  box-shadow: var(--shadow);
}

.login-brand {
  display: grid;
  place-items: center;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.login-logo {
  width: 8.75rem;
  height: 8.75rem;
  object-fit: contain;
  border-radius: 999px;
  background: #050506;
  box-shadow: 0 0 0 1px rgba(243, 217, 154, 0.25);
}

.login-brand h1,
.screen-title h1 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.login-brand p,
.screen-title p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.field-stack {
  display: grid;
  gap: 0.8rem;
}

.server-config {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field span,
.field label {
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.search-input {
  width: 100%;
  min-height: 3.05rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f0f14;
  color: var(--text);
  padding: 0.78rem 0.9rem;
  outline: none;
}

.field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 152, 67, 0.22);
}

.login-error {
  min-height: 1.25rem;
  color: #ffb0a8;
  font-weight: 700;
}

.btn {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: #151009;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-color: rgba(243, 217, 154, 0.5);
}

.btn-amber {
  color: #16100a;
  background: linear-gradient(180deg, #ffc966, var(--amber));
  border-color: rgba(255, 201, 102, 0.52);
}

.btn-danger {
  background: rgba(227, 79, 79, 0.16);
  border-color: rgba(227, 79, 79, 0.42);
  color: #ffd3d0;
}

.btn-ghost {
  background: transparent;
}

.btn-icon {
  width: 2.55rem;
  min-width: 2.55rem;
  min-height: 2.55rem;
  padding: 0;
  font-size: 1.1rem;
}

.compact-btn {
  min-height: 2.25rem;
  padding: 0.42rem 0.68rem;
}

.pos-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem clamp(0.8rem, 2vw, 1.35rem);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 15, 0.92);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 999px;
  background: #050506;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.nav button {
  min-height: 2.6rem;
  padding: 0.62rem 0.85rem;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.nav button.active {
  color: #171109;
  background: var(--gold);
}

.user-box {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.6rem;
}

.role-pill {
  color: var(--gold-soft);
  background: rgba(201, 152, 67, 0.12);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.sync-pill {
  min-height: 2.05rem;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(32, 32, 40, 0.72);
  color: var(--muted);
  font-weight: 900;
  white-space: nowrap;
}

button.sync-pill {
  cursor: pointer;
}

.sync-pill.online {
  border-color: rgba(95, 199, 129, 0.28);
  background: rgba(95, 199, 129, 0.12);
  color: #baf2c8;
}

.sync-pill.offline,
.sync-pill.pending,
.badge.pending {
  border-color: rgba(240, 163, 41, 0.34);
  background: rgba(240, 163, 41, 0.15);
  color: #ffd78a;
}

.main {
  padding: clamp(0.85rem, 2vw, 1.25rem);
}

.sale-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 27rem);
  gap: 1rem;
  align-items: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 18, 23, 0.86);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.17);
}

.products-panel,
.cart-panel {
  min-height: calc(100vh - 6.7rem);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.panel-title {
  display: grid;
  gap: 0.15rem;
}

.panel-title strong {
  font-size: 1rem;
}

.panel-title span {
  color: var(--muted);
  font-size: 0.88rem;
}

.search-row {
  padding: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.quick-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #111116;
  color: var(--muted);
  padding: 0.48rem 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.chip.active {
  color: #171109;
  background: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.82rem;
  padding: 0.95rem;
  max-height: calc(100vh - 14rem);
  overflow: auto;
}

.product-card {
  min-height: 15.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(32, 32, 40, 0.94), rgba(17, 17, 22, 0.96));
  color: var(--text);
  padding: 0.78rem;
  display: grid;
  grid-template-rows: 7.15rem auto;
  text-align: left;
  gap: 0.72rem;
}

.product-card.with-image {
  min-height: 20.75rem;
  grid-template-rows: 12.35rem auto;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.product-card.disabled {
  opacity: 0.5;
}

.product-art {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(243, 217, 154, 0.25), transparent 42%),
    linear-gradient(180deg, #2a2218, #101015);
}

.product-art img,
.cart-thumb img,
.inventory-thumb img,
.sale-thumb img,
.product-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-art.has-image,
.cart-thumb.has-image,
.inventory-thumb.has-image,
.sale-thumb.has-image,
.product-photo-preview.has-image {
  background: #f8f8f4;
  padding: 0.22rem;
}

.product-art.has-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-art.has-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.product-art::before {
  content: "";
  width: 2.15rem;
  height: 3.8rem;
  border-radius: 0.42rem 0.42rem 0.55rem 0.55rem;
  background: linear-gradient(180deg, var(--gold-soft), var(--amber));
  box-shadow: 1.55rem 0.38rem 0 -0.28rem rgba(247, 240, 223, 0.62),
    -1.5rem 0.55rem 0 -0.38rem rgba(201, 152, 67, 0.58);
}

.product-art::after {
  content: attr(data-mark);
  position: absolute;
  bottom: 0.42rem;
  right: 0.52rem;
  color: rgba(247, 240, 223, 0.84);
  font-weight: 900;
  font-size: 0.78rem;
}

.product-art.has-image::before,
.product-art.has-image::after,
.cart-thumb.has-image::before,
.cart-thumb.has-image::after,
.inventory-thumb.has-image::before,
.inventory-thumb.has-image::after,
.sale-thumb.has-image::before,
.sale-thumb.has-image::after,
.product-photo-preview.has-image::before,
.product-photo-preview.has-image::after {
  content: none;
}

.product-info {
  display: grid;
  gap: 0.42rem;
}

.product-name {
  min-height: 2.35rem;
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.price {
  color: var(--gold-soft);
  font-size: 1.28rem;
  font-weight: 950;
}

.stock {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.stock.low {
  color: #ffd078;
}

.cart-panel {
  position: sticky;
  top: 5.6rem;
}

.cart-body {
  display: grid;
  grid-template-rows: minmax(12rem, 1fr) auto;
  min-height: calc(100vh - 11.4rem);
}

.cart-lines {
  padding: 0.8rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  max-height: calc(100vh - 18rem);
  overflow: auto;
}

.cart-empty,
.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  min-height: 9rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.cart-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.72rem;
  background: rgba(32, 32, 40, 0.68);
  display: grid;
  gap: 0.55rem;
}

.cart-line-product,
.inventory-product,
.sale-item-line {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-thumb,
.inventory-thumb,
.sale-thumb,
.product-photo-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(243, 217, 154, 0.22), transparent 46%),
    linear-gradient(180deg, #2a2218, #101015);
  flex: 0 0 auto;
}

.cart-thumb {
  width: 3.35rem;
  height: 3.35rem;
}

.inventory-thumb,
.sale-thumb {
  width: 2.8rem;
  height: 2.8rem;
}

.product-photo-preview {
  width: 8.25rem;
  height: 8.25rem;
}

.cart-thumb::before,
.inventory-thumb::before,
.sale-thumb::before,
.product-photo-preview::before {
  content: "";
  width: 32%;
  height: 60%;
  border-radius: 0.32rem 0.32rem 0.42rem 0.42rem;
  background: linear-gradient(180deg, var(--gold-soft), var(--amber));
  box-shadow: 0.72rem 0.22rem 0 -0.18rem rgba(247, 240, 223, 0.62),
    -0.72rem 0.28rem 0 -0.22rem rgba(201, 152, 67, 0.58);
}

.cart-thumb::after,
.inventory-thumb::after,
.sale-thumb::after,
.product-photo-preview::after {
  content: attr(data-mark);
  position: absolute;
  right: 0.28rem;
  bottom: 0.22rem;
  color: rgba(247, 240, 223, 0.84);
  font-size: 0.62rem;
  font-weight: 900;
}

.line-top,
.line-bottom,
.totals-row,
.history-top,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.line-name {
  font-weight: 900;
  line-height: 1.2;
}

.line-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.qty-controls {
  display: grid;
  grid-template-columns: 2.55rem 2.4rem 2.55rem 2.55rem;
  align-items: center;
  gap: 0.35rem;
}

.qty-value {
  text-align: center;
  font-weight: 950;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 0.9rem;
  display: grid;
  gap: 0.7rem;
}

.totals {
  display: grid;
  gap: 0.42rem;
}

.totals-row span:first-child {
  color: var(--muted);
}

.totals-row.total strong {
  color: var(--gold-soft);
  font-size: 1.75rem;
}

.pay-button {
  min-height: 4rem;
  font-size: 1.08rem;
}

.page {
  display: grid;
  gap: 1rem;
}

.screen-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.toolbar .search-input {
  max-width: 28rem;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 48rem;
}

.daily-table {
  min-width: 78rem;
}

.closures-table {
  min-width: 80rem;
}

.daily-table th:last-child,
.daily-table td:last-child {
  position: sticky;
  right: 0;
  z-index: 2;
  min-width: 8.5rem;
  background: #121217;
}

.daily-table th:last-child {
  z-index: 3;
}

.seller-inventory-table {
  min-width: 40rem;
}

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

th {
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

td {
  color: #eee5d4;
}

.inventory-product > div,
.cart-line-product > div {
  min-width: 0;
}

.sale-items {
  display: grid;
  gap: 0.5rem;
}

.sale-item-line span {
  font-weight: 800;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(243, 217, 154, 0.12);
  color: var(--gold-soft);
  border: 1px solid var(--line);
  font-weight: 900;
  white-space: nowrap;
}

.badge.low {
  background: rgba(240, 163, 41, 0.18);
  color: #ffd078;
}

.badge.ok {
  background: rgba(95, 199, 129, 0.14);
  color: #a4ecb8;
  border-color: rgba(95, 199, 129, 0.25);
}

.action-row {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(12rem, 1fr));
  gap: 0.85rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 18, 23, 0.86);
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.metric-label {
  color: var(--muted);
  font-weight: 800;
}

.metric-value {
  color: var(--gold-soft);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  font-weight: 950;
}

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

.bar-list {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.bar-row {
  display: grid;
  gap: 0.35rem;
}

.bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 800;
}

.bar-track {
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(247, 240, 223, 0.1);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
}

.settings-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.photo-editor {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(32, 32, 40, 0.46);
  padding: 0.85rem;
}

.photo-fields {
  display: grid;
  gap: 0.65rem;
}

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

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.68);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal {
  width: min(34rem, 100%);
  max-height: min(48rem, calc(100vh - 2rem));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #141419;
  box-shadow: var(--shadow);
}

.modal.wide {
  width: min(45rem, 100%);
}

.modal-header,
.modal-footer {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.modal-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  justify-content: end;
  flex-wrap: wrap;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.modal-body {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.pay-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.payment-method {
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(32, 32, 40, 0.72);
  color: var(--text);
  font-weight: 900;
}

.payment-method.active {
  border-color: rgba(243, 217, 154, 0.55);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #171109;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.sold-modal .modal-header h2 {
  color: var(--gold-soft);
  font-size: 1.75rem;
}

.pay-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(32, 32, 40, 0.64);
  padding: 0.85rem;
}

.pay-box span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.pay-box strong {
  color: var(--gold-soft);
  font-size: 1.85rem;
}

.sync-note {
  border: 1px solid rgba(240, 163, 41, 0.34);
  border-radius: 8px;
  background: rgba(240, 163, 41, 0.13);
  color: #ffe0a3;
  padding: 0.85rem;
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  border: 1px solid rgba(95, 199, 129, 0.35);
  border-radius: 8px;
  background: #142018;
  color: #c4ffd3;
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.mobile-cart-dock {
  display: none;
}

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sale-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-panel,
  .cart-panel {
    min-height: auto;
  }

  .cart-panel {
    position: static;
  }

  .product-grid {
    max-height: none;
  }

  .cart-body,
  .cart-lines {
    min-height: auto;
    max-height: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr;
    position: static;
  }

  .user-box {
    justify-content: space-between;
  }

  .brand strong {
    white-space: normal;
  }

  .main {
    padding: 0.75rem 0.75rem 5.9rem;
  }

  .panel-header,
  .toolbar,
  .screen-title {
    align-items: stretch;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.75rem;
  }

  .product-card {
    min-height: 14.5rem;
    grid-template-rows: 6.7rem auto;
    padding: 0.62rem;
  }

  .product-card.with-image {
    min-height: 19rem;
    grid-template-rows: 11rem auto;
  }

  .product-name {
    font-size: 0.93rem;
  }

  .price {
    font-size: 1.12rem;
  }

  .metrics-grid,
  .report-grid,
  .settings-grid,
  .form-grid,
  .receipt-grid,
  .pay-summary {
    grid-template-columns: 1fr;
  }

  .photo-editor {
    grid-template-columns: 1fr;
  }

  .product-photo-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .qty-controls {
    grid-template-columns: 2.45rem 2.2rem 2.45rem 2.45rem;
  }

  .toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 5.4rem;
  }

  .mobile-cart-dock {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 40;
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid rgba(243, 217, 154, 0.28);
    border-radius: 8px;
    background: rgba(11, 11, 15, 0.96);
    box-shadow: var(--shadow);
    padding: 0.72rem;
    backdrop-filter: blur(14px);
  }

  .mobile-cart-dock span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-cart-dock strong {
    display: block;
    color: var(--gold-soft);
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .mobile-cart-dock .btn {
    min-width: 8rem;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
