.shop-results-status {
  min-height: 1.5em;
  margin: -34px auto 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card[hidden] {
  display: none !important;
}

.category-tab[aria-pressed="true"] {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
}

.cart-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 28px));
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  background: #111;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.cart-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(5px);
}

.cart-dialog-card {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 5vw, 34px);
}

.cart-dialog-header,
.cart-dialog-footer,
.cart-row,
.cart-row-actions {
  display: flex;
  align-items: center;
}

.cart-dialog-header,
.cart-dialog-footer {
  justify-content: space-between;
  gap: 16px;
}

.cart-dialog-header h2,
.cart-dialog-footer p {
  margin: 0;
}

.cart-dialog-close,
.cart-qty,
.cart-remove,
.cart-clear {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
  cursor: pointer;
}

.cart-items-ui {
  display: grid;
  gap: 12px;
  overflow: auto;
}

.cart-row {
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.cart-row-info {
  min-width: 0;
}

.cart-row-info strong,
.cart-row-info span {
  display: block;
}

.cart-row-info span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-row-actions {
  gap: 8px;
}

.cart-qty {
  min-width: 36px;
  min-height: 36px;
}

.cart-remove {
  min-height: 36px;
  padding-inline: 10px;
  color: #ff9d9d;
  border-color: rgba(255, 100, 100, 0.25);
  background: rgba(255, 100, 100, 0.08);
}

.cart-empty-ui {
  margin: 0;
  padding: 28px 12px;
  color: var(--muted);
  text-align: center;
}

.cart-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-dialog-actions a,
.cart-dialog-actions button {
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.cart-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #07120b;
}

.cart-whatsapp[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.shop-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  max-width: min(360px, calc(100% - 40px));
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: #090909;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--motion-fast, 180ms) var(--motion-ease, ease), transform var(--motion-fast, 180ms) var(--motion-ease, ease);
}

.shop-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .cart-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-dialog-footer,
  .cart-dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
