/* gd-picks-sheet: veil + bottom sheet, same pattern and tints as
   gd-checkout-sheet (sheet tints, NOT glass - it covers the photos,
   it does not float over them). */
gd-picks-sheet { position: fixed; inset: 0; z-index: 40; background: var(--scrim); backdrop-filter: blur(var(--blur-veil));
  display: flex; align-items: flex-end; justify-content: center; }
gd-picks-sheet .sheet { width: 100%; max-width: 480px;
  background: linear-gradient(180deg, var(--sheet-tint-top), var(--sheet-tint-bottom));
  border: 1px solid var(--accent-soft-border); border-bottom: 0;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: var(--gap-grid) 22px calc(18px + env(safe-area-inset-bottom));
  animation: gd-sheet-up var(--dur-sheet) var(--ease-out); }
/* Redefined locally so the sheet rises even in standalone previews that
   load only this stylesheet (duplicate @keyframes are legal). */
@keyframes gd-sheet-up { from { transform: translateY(100%); } }
gd-picks-sheet .sheet-handle { width: var(--tap-min); height: 4px; border-radius: 2px;
  background: var(--ink-3); opacity: .5; margin: var(--space-2xs) auto var(--space-md); }
gd-picks-sheet .sheet-title-row { display: flex; justify-content: space-between; align-items: baseline;
  font: 500 var(--type-title-lg)/1.2 var(--font-display); }
gd-picks-sheet .sheet-price { font: 700 var(--type-title-lg)/1.2 var(--font-ui); color: var(--accent); }
gd-picks-sheet .sheet-sub { font: var(--type-ui)/1.5 var(--font-ui); color: var(--ink-2); margin: 6px 0 14px; }

/* The itemized ledger: one thumb per pick, watermarked preview, each
   with a remove control. Overflows sideways rather than growing the
   sheet (the dock-family rule: the container never scrolls vertically). */
gd-picks-sheet .picks-row { display: flex; gap: var(--space-sm); margin: 0 0 14px;
  overflow-x: auto; padding: 10px 2px 2px; }
gd-picks-sheet .pick { display: grid; gap: var(--space-2xs); justify-items: center; flex: 0 0 auto; }
gd-picks-sheet .thumb { position: relative; width: 64px; height: 64px; border-radius: var(--radius-photo); }
gd-picks-sheet .thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-photo); display: block; }
gd-picks-sheet .rm { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--glass-strong); border: 1px solid var(--accent-soft-border); color: var(--ink);
  font: 600 14px/1 var(--font-ui); cursor: pointer; backdrop-filter: blur(var(--blur-glass)); padding: 0; }
/* 44px hit area on a 26px control (HIG rule), without moving neighbors. */
gd-picks-sheet .rm::after { content: ''; position: absolute; inset: -9px; }
gd-picks-sheet .amt { font: var(--type-fine)/1 var(--font-ui); color: var(--ink-2); }

/* The gallery compare line: the whole-gallery anchor, stated as
   arithmetic. The wash panel marks "aside"; the gold strong marks the
   one savings statement at crossover. */
gd-picks-sheet .compare { padding: var(--space-sm) 14px; border: 1px solid var(--accent-soft-border);
  border-radius: var(--radius-ctl); font: var(--type-note)/1.5 var(--font-ui); color: var(--ink-2);
  background: var(--accent-wash); margin-bottom: 14px; }
gd-picks-sheet .compare strong { color: var(--accent-2); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  gd-picks-sheet .sheet { animation: none; }
}
