/* SHOPPING.CSS — Shopping lists, items, checkout, stores */

/* ═══════════════════════════════════════════════════════════
   SHOPPING — Lista de Compras
   ═══════════════════════════════════════════════════════════ */

/* ─── Panel Overlay ─── */
/* Shopping Tab Content */
.shopping-tab-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 160px);
}

/* ─── Header ─── */
.shopping-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  min-height: 60px;
  flex-shrink: 0;
}
.shopping-header h2 {
  flex: 1;
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.shopping-header h2 i {
  color: var(--primary);
}
.shopping-back-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1rem;
  transition: background var(--ease);
}
.shopping-back-btn:hover {
  background: rgba(var(--primary-rgb), 0.1);
}
.shopping-action-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--ease);
}
.shopping-action-btn:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}
.shopping-delete-btn:hover {
  background: rgba(239, 35, 60, 0.1);
  color: var(--danger);
}
.shopping-header-actions {
  display: flex;
  gap: 4px;
}

/* ─── View / Body ─── */
.shopping-view {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.shopping-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 100px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shopping-body::-webkit-scrollbar { display: none; }

/* ─── Empty State ─── */
.shop-empty {
  text-align: center;
  padding: 60px 20px;
}
.shop-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--primary);
}
.shop-empty h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.shop-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.shop-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-full);
  background: var(--grad-primary);
  color: #fff;
  font-weight: var(--fw-semi);
  box-shadow: var(--shadow-brand);
  transition: all var(--ease);
}
.shop-empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(61, 106, 142,0.4);
}

/* ─── Section Labels ─── */
.shop-section-label {
  font-size: 0.75rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 16px 0 8px;
}
.shop-section-label:first-child { margin-top: 0; }

/* ─── List Cards ─── */
.shop-list-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--ease);
}
.shop-list-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.shop-list-card.completed {
  opacity: 0.7;
}
.shop-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.shop-card-info {
  flex: 1;
  min-width: 0;
}
.shop-card-name {
  font-size: 0.95rem;
  font-weight: var(--fw-semi);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.shop-card-meta i { margin-right: 3px; }
.shop-card-price {
  color: var(--primary);
  font-weight: var(--fw-semi);
}
.shop-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.shop-card-cats {
  display: flex;
  gap: 6px;
}
.shop-card-cat {
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.shop-card-reuse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(var(--primary-rgb), 0.08);
  transition: all var(--ease);
}
.shop-card-reuse:hover {
  background: rgba(var(--primary-rgb), 0.18);
}

/* ─── Progress Ring (Card) ─── */
.shop-card-progress-ring {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.shop-card-progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.shop-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 3;
}
.shop-ring-fill {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  transition: stroke-dashoffset var(--ease-med);
}
.shop-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

/* ─── Detail Stats ─── */
.shop-detail-stats {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.shop-progress-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.shop-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.shop-progress-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: var(--r-full);
  transition: width var(--ease-med);
}
.shop-progress-fill.complete {
  background: linear-gradient(135deg, var(--success) 0%, #05b58a 100%);
}
.shop-progress-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: var(--fw-semi);
  min-width: 32px;
  text-align: right;
}
.shop-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.shop-stat {
  text-align: center;
  padding: 10px 4px 8px;
  background: var(--bg-card-alt);
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.shop-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.shop-stat-val {
  display: block;
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  line-height: 1.1;
}
.shop-stat-label {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.shop-stat-success { color: var(--success); }
.shop-stat-warning { color: var(--warning); }
.shop-stat-price { color: var(--primary); font-size: 0.78rem; }

/* ─── Quick-Add (Collapsible) ─── */
.shop-quick-wrap {
  margin-bottom: 16px;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.shop-quick-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: var(--fw-semi);
  transition: background var(--ease);
}
.shop-quick-toggle:hover {
  background: var(--bg-card-alt);
}
.shop-quick-toggle-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-quick-toggle-left > i {
  color: var(--warning);
  font-size: 0.85rem;
}
.shop-quick-badge {
  font-size: 0.62rem;
  font-weight: var(--fw-bold);
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: var(--r-full);
  line-height: 1.3;
}
.shop-quick-chevron {
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform var(--ease-med);
}
.shop-quick-chevron.open {
  transform: rotate(180deg);
}
.shop-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 14px;
  max-height: 300px;
  overflow: hidden;
  transition: max-height var(--ease-med), padding var(--ease-med), opacity var(--ease);
  opacity: 1;
}
.shop-quick-chips.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.shop-quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--r-full);
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  font-size: 0.73rem;
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  transition: all var(--ease);
  cursor: pointer;
}
.shop-quick-chip:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  transform: translateY(-1px);
}
.shop-quick-chip:active,
.shop-quick-chip.adding {
  transform: scale(0.9);
  opacity: 0.5;
}

/* ─── Category Groups ─── */
.shop-items-groups {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-category-group {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: opacity var(--ease);
}
.shop-category-group.all-done {
  opacity: 0.6;
}
.shop-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.shop-cat-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-cat-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.shop-cat-name {
  font-size: 0.82rem;
  font-weight: var(--fw-semi);
}
.shop-cat-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

/* ─── Item List ─── */
.shop-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--ease);
  position: relative;
}
.shop-item:last-child { border-bottom: none; }
.shop-item:hover { background: var(--bg-card-alt); }
.shop-item:active { background: rgba(var(--primary-rgb), 0.04); }
.shop-item.checked { opacity: 0.5; }
.shop-item.checked .shop-item-name { text-decoration: line-through; color: var(--text-muted); }
.shop-item-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--ease);
}
.shop-item.checked .shop-item-check {
  color: var(--success);
}
.shop-item-check:active {
  transform: scale(1.2);
}
.shop-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.shop-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shop-item-name {
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  transition: all var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-item-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.68rem;
  color: var(--text-muted);
}
.shop-item-qty {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.shop-item-sep {
  margin: 0 5px;
  opacity: 0.5;
}
.shop-item-price {
  font-size: 0.68rem;
  font-weight: var(--fw-semi);
  color: var(--primary);
}
.shop-item-delete {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-size: 0.68rem;
  opacity: 0;
  transition: all var(--ease);
}
.shop-item:hover .shop-item-delete { opacity: 0.6; }
.shop-item-delete:hover { opacity: 1 !important; color: var(--danger); background: rgba(239,35,60,0.08); }

/* ─── Empty Items ─── */
.shop-empty-items {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.shop-empty-items i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

/* ─── Complete Button ─── */
.shop-complete-wrap {
  padding: 20px 0 10px;
  text-align: center;
}
.shop-complete-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--success) 0%, #05b58a 100%);
  color: #fff;
  font-weight: var(--fw-semi);
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(6,214,160,0.3);
  transition: all var(--ease);
}
.shop-complete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(6,214,160,0.45);
}

/* ─── Floating Add Bar ─── */
.shopping-add-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 10;
}
.shopping-add-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 6px 6px 16px;
  transition: border-color var(--ease);
}
.shopping-add-bar-inner:focus-within {
  border-color: var(--primary);
}
.shop-add-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.shopping-add-bar-inner input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-family: var(--font);
  min-width: 0;
}
.shopping-add-bar-inner input::placeholder {
  color: var(--text-muted);
}
.shopping-add-item-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-brand);
  transition: all var(--ease);
}
.shopping-add-item-btn:hover {
  transform: scale(1.08);
}

/* ─── Autocomplete ─── */
.shopping-autocomplete {
  position: absolute;
  bottom: 100%;
  left: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 4px;
  margin-bottom: 4px;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 20;
}
.shopping-autocomplete.active { display: block; }
.shop-ac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  width: 100%;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: background var(--ease);
}
.shop-ac-item:hover {
  background: var(--bg-card-alt);
}
.shop-ac-item i {
  font-size: 0.85rem;
  flex-shrink: 0;
}
.shop-ac-item span:first-of-type {
  flex: 1;
  font-weight: var(--fw-medium);
}
.shop-ac-cat {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ─── Modals inside Shopping ─── */
#shoppingPanel .modal {
  z-index: calc(var(--z-modal) + 10);
}

/* ─── Payment Methods Toggle ─── */
.shop-payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.shop-pay-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: var(--r-md);
  border: 2px solid var(--border);
  background: var(--bg-card);
  font-size: 0.72rem;
  font-weight: var(--fw-semi);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-pay-btn i { font-size: 1rem; }
.shop-pay-btn:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
}
.shop-pay-btn.active {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}
.shop-pay-vr.active {
  border-color: #8BC34A;
  background: rgba(139, 195, 74, 0.08);
  color: #689F38;
}
.shop-pay-vr-hint {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #689F38;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(139, 195, 74, 0.08);
  border-radius: var(--r-sm);
  border-left: 3px solid #8BC34A;
}

/* ─── Checkout Modal ─── */
.shop-checkout-summary {
  margin-bottom: 16px;
}
.shop-checkout-info {
  background: var(--bg-card-alt);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-checkout-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.shop-checkout-info-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}
.shop-checkout-info-row i {
  color: var(--primary);
}
.shop-checkout-items {
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}
.shop-checkout-estimated {
  font-weight: var(--fw-semi);
  color: var(--primary);
}
.shop-checkout-toggle {
  margin: 14px 0 18px;
}
.shop-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.shop-toggle-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}
.shop-toggle-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.shop-toggle-text i {
  color: var(--primary);
}
.shop-checkout-btn {
  background: linear-gradient(135deg, var(--success) 0%, #05b58a 100%) !important;
  box-shadow: 0 6px 20px rgba(6,214,160,0.3);
}
.shop-checkout-btn:hover {
  box-shadow: 0 10px 30px rgba(6,214,160,0.4);
}

/* ─── Store Selector (New List Modal) ─── */
.shop-modal-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: var(--fw-semi);
  margin-bottom: 10px;
  display: block;
}
.shop-store-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.shop-store-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-store-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.shop-store-option.active {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.shop-store-opt-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--r-md);
}
.shop-store-opt-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-muted);
}
.shop-store-opt-name {
  font-size: 0.78rem;
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}

/* ─── Store Badge on List Cards ─── */
.shop-card-store-badge {
  flex-shrink: 0;
}
.shop-card-store-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: var(--r-md);
  background: var(--bg-card-alt);
  padding: 3px;
  box-shadow: var(--shadow-xs);
}
.shop-card-store-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ─── Store Bar (Detail Header) ─── */
.shop-detail-store-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--store-accent, var(--primary)) 10%, transparent), transparent);
  border-bottom: 2px solid color-mix(in srgb, var(--store-accent, var(--primary)) 25%, transparent);
}
.shop-detail-store-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.shop-detail-store-icon {
  font-size: 1.1rem;
  color: var(--store-accent, var(--text-muted));
}
.shop-detail-store-name {
  font-size: 0.82rem;
  font-weight: var(--fw-semi);
  color: var(--store-accent, var(--text-secondary));
}

/* ─── Store Picker Inline (Empty State) ─── */
.shop-store-picker-inline {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.shop-store-pick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-store-pick:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.shop-store-logo-pick {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--r-md);
}
.shop-store-icon-pick {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  background: var(--bg-card-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--text-muted);
}
.shop-store-pick span {
  font-size: 0.82rem;
  font-weight: var(--fw-semi);
  color: var(--text-primary);
}

/* ─── Store in Checkout Modal ─── */
.shop-checkout-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: var(--bg-card-alt);
  border-radius: var(--r-md);
}
.shop-checkout-store-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.shop-checkout-store span {
  font-weight: var(--fw-semi);
  font-size: 0.88rem;
  color: var(--text-primary);
}

/* ─── Mobile: always show delete button (no hover on touch) ─── */
@media (hover: none) {
  .shop-item-delete { opacity: 0.5; }
}
