/* ══════════════════════════════════════════════════════
   SHOP ITEM CARDS
   ══════════════════════════════════════════════════════ */

.shop-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px;
  margin-top: 6px;
}

.shop-item-card {
  background: #1c1c1f;
  border: none;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .13s;
}
.shop-item-card:active { transform: scale(.96); }

.shop-item-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #2a2a2e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shop-item-img-wrap img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  display: block;
}

.shop-item-badge {
  position: absolute;
  top: 5px; left: 5px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.75);
  font-family: var(--ld-font-ui);
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
}

.shop-item-body {
  padding: 7px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.shop-item-name {
  font-family: var(--ld-font-ui);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-item-desc {
  font-family: var(--ld-font-ui);
  font-size: 9.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.25;
  margin-bottom: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-item-buy {
  margin-top: 6px;
  padding: 7px 6px;
  border: none;
  border-radius: 999px;
  background: #3a8ef6;
  color: #fff;
  font-family: var(--ld-font-ui);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: background .13s;
}
.shop-item-buy:active { background: #2a7ee8; }

.shop-section-title {
  font-family: var(--ld-font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.5);
  padding: 18px 14px 6px;
}

.shop-toolbar {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding: 16px 14px 14px;
}

.shop-price-range {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--ld-panel-border);
  border-radius: var(--ld-r-btn);
  padding: 0 12px;
}
.shop-price-range:focus-within {
  border-color: var(--ld-ice);
  box-shadow: var(--ld-glow-cyan);
}

.shop-price-input {
  width: 0;
  flex: 1 1 auto;
  min-width: 0;
  background: none;
  border: none;
  color: var(--ld-text);
  font-family: var(--ld-font-ui);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 11px 0;
  -webkit-tap-highlight-color: transparent;
  -moz-appearance: textfield;
}
.shop-price-input:focus { outline: none; }
.shop-price-input::-webkit-outer-spin-button,
.shop-price-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-price-input::placeholder { color: var(--ld-faint); font-weight: 600; }

.shop-price-dash {
  color: var(--ld-faint);
  font-size: 13px;
  flex: none;
}

.shop-price-unit {
  flex: none;
  font-size: 13px;
  opacity: .85;
}

.shop-sort-select {
  flex: none;
  max-width: 40%;
  background: linear-gradient(150deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color: var(--ld-text);
  border: 1px solid var(--ld-panel-border);
  border-radius: var(--ld-r-btn);
  padding: 0 10px;
  font-family: var(--ld-font-ui);
  font-size: 12px;
  font-weight: 700;
  -webkit-tap-highlight-color: transparent;
}

.shop-price-buy {
  margin-top: 6px;
  width: 100%;
  border: none;
  border-radius: var(--ld-r-pill);
  background: var(--ld-gold);
  color: var(--ld-on-gold);
  box-shadow: var(--ld-glow-gold);
  font-family: var(--ld-font-ui);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .13s;
}
.shop-price-buy:active { transform: scale(.96); }


/* ══════════════════════════════════════════════════════
   ACHIEVEMENTS
   ══════════════════════════════════════════════════════ */

/* ── Section header ──────────────────────────────────── */
.ach-section-title {
  font-family: var(--ld-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--ld-muted);
  text-transform: uppercase;
  padding: 0 18px;
  margin: 16px 0 8px;
}

/* ── Grid ────────────────────────────────────────────── */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  padding: 0 14px 16px;
}

/* ── Unlock gate (paywall) ───────────────────────────── */
.ach-gate {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 22px 26px;
  background: linear-gradient(160deg, rgba(255,215,90,.07) 0%, rgba(124,92,255,.06) 100%);
  border: 1.5px solid rgba(255,215,90,.22);
  border-radius: 22px;
  text-align: center;
}


.ach-gate-title {
  font-family: var(--ld-font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .10em;
  color: var(--ld-text);
}

.ach-gate-desc {
  font-family: var(--ld-font-ui);
  font-size: 12px;
  color: var(--ld-muted);
  line-height: 1.55;
  max-width: 230px;
}

.ach-gate-btn {
  margin-top: 6px;
  padding: 13px 30px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFD75A 0%, #FFB200 100%);
  color: #1a1200;
  font-family: var(--ld-font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 22px rgba(255,200,58,.38);
  transition: opacity .14s, transform .10s;
}
.ach-gate-btn:active   { opacity: .82; transform: scale(.97); }
.ach-gate-btn:disabled { opacity: .55; }

/* ── Card base ───────────────────────────────────────── */
.ach-card {
  position: relative;
  border-radius: 16px;
  padding: 9px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .14s cubic-bezier(.16,1,.3,1), box-shadow .2s;
  background: rgba(12, 12, 20, 0.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 4px 16px rgba(0,0,0,.32);
}
.ach-card:active { transform: scale(.97); }



/* ── Available (completed, ready to claim) ───────────── */
.ach-card.available {
  border: 1.5px solid rgba(255,200,58,.55);
  cursor: pointer;
  animation: ach-glow 2.4s ease-in-out infinite;
}
.ach-card.available:active { transform: scale(.96); }

@keyframes ach-glow {
  0%,100%  { box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 0 0 0 rgba(255,200,58,0); transform: scale(1); }
  50%      { box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 24px 5px rgba(255,200,58,.20); transform: scale(1.012); }
}

/* ── Claimed ─────────────────────────────────────────── */
.ach-card.claimed {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
}

/* ── Category colour themes ──────────────────────────── */

/* Базовый тинт для всех состояний включая locked */
.ach-card[data-cat="crash"]   { background: linear-gradient(150deg, rgba(251,146,60,.07) 0%, rgba(12,12,20,.95) 100%); border-color: rgba(251,146,60,.22); }
.ach-card[data-cat="vault"]   { background: linear-gradient(150deg, rgba(95,245,223,.06) 0%, rgba(12,12,20,.95) 100%); border-color: rgba(95,245,223,.20); }
.ach-card[data-cat="capsule"] { background: linear-gradient(150deg, rgba(169,139,255,.07) 0%, rgba(12,12,20,.95) 100%); border-color: rgba(169,139,255,.22); }
.ach-card[data-cat="social"]  { background: linear-gradient(150deg, rgba(255,200,58,.07) 0%, rgba(12,12,20,.95) 100%); border-color: rgba(255,200,58,.22); }

/* Яркий тинт для available и claimed */
.ach-card[data-cat="crash"].available,
.ach-card[data-cat="crash"].claimed {
  background: linear-gradient(150deg, rgba(251,146,60,.13) 0%, rgba(12,12,20,.95) 100%);
  border-color: rgba(251,146,60,.42);
  box-shadow: 0 0 0 1px rgba(251,146,60,.14), 0 6px 28px rgba(251,146,60,.10);
}
.ach-card[data-cat="vault"].available,
.ach-card[data-cat="vault"].claimed {
  background: linear-gradient(150deg, rgba(95,245,223,.11) 0%, rgba(12,12,20,.95) 100%);
  border-color: rgba(95,245,223,.40);
  box-shadow: 0 0 0 1px rgba(95,245,223,.12), 0 6px 28px rgba(95,245,223,.08);
}
.ach-card[data-cat="capsule"].available,
.ach-card[data-cat="capsule"].claimed {
  background: linear-gradient(150deg, rgba(169,139,255,.13) 0%, rgba(12,12,20,.95) 100%);
  border-color: rgba(169,139,255,.42);
  box-shadow: 0 0 0 1px rgba(169,139,255,.13), 0 6px 28px rgba(169,139,255,.09);
}
.ach-card[data-cat="social"].available,
.ach-card[data-cat="social"].claimed {
  background: linear-gradient(150deg, rgba(255,200,58,.14) 0%, rgba(12,12,20,.95) 100%);
  border-color: rgba(255,200,58,.42);
  box-shadow: 0 0 0 1px rgba(255,200,58,.14), 0 6px 28px rgba(255,200,58,.08);
}

/* ── Category ambient glow (top edge) — мягкая размытая линия
   вместо плоской полоски, подсвечивает угол карточки ──────── */
.ach-cat-bar {
  position: absolute;
  top: -6px; left: 16%; right: 16%;
  height: 10px;
  border-radius: 999px;
  filter: blur(6px);
  opacity: .55;
  pointer-events: none;
}
[data-cat="crash"]   .ach-cat-bar { background: linear-gradient(90deg, #FB923C, #EA580C); }
[data-cat="vault"]   .ach-cat-bar { background: linear-gradient(90deg, #5FF5DF, #5BB8FF); }
[data-cat="capsule"] .ach-cat-bar { background: linear-gradient(90deg, #A98BFF, #F58BF0); }
[data-cat="social"]  .ach-cat-bar { background: linear-gradient(90deg, #FFD75A, #FFB200); }

/* ── Icon medallion — кольцо-градиент вокруг иконки (тот же
   приём, что у аватарки пользователя, --ld-holo-ring), вместо
   голой плавающей иконки ───────────────────────────────────── */
.ach-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#16131f, #16131f) padding-box,
    conic-gradient(from 200deg, currentColor, transparent 75%) border-box;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 2px 10px rgba(0,0,0,.35);
  transition: box-shadow .2s;
}
.ach-icon svg {
  width: 22px;
  height: 22px;
  transition: filter .2s;
}

/* Цвета по категории — наследуются через currentColor (кольцо + иконка) */
.ach-card[data-cat="crash"]   .ach-icon { color: #FB923C; }
.ach-card[data-cat="vault"]   .ach-icon { color: #5FF5DF; }
.ach-card[data-cat="capsule"] .ach-icon { color: #A98BFF; }
.ach-card[data-cat="social"]  .ach-icon { color: #FFD75A; }


/* Available — свечение цветом категории (кольцо + иконка) */
.ach-card[data-cat="crash"].available   .ach-icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 0 14px rgba(251,146,60,.45); }
.ach-card[data-cat="vault"].available   .ach-icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 0 14px rgba(95,245,223,.45); }
.ach-card[data-cat="capsule"].available .ach-icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 0 14px rgba(169,139,255,.45); }
.ach-card[data-cat="social"].available  .ach-icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 0 14px rgba(255,200,58,.45); }
.ach-card[data-cat="crash"].available   .ach-icon svg { filter: drop-shadow(0 0 8px rgba(251,146,60,.65)); }
.ach-card[data-cat="vault"].available   .ach-icon svg { filter: drop-shadow(0 0 8px rgba(95,245,223,.65)); }
.ach-card[data-cat="capsule"].available .ach-icon svg { filter: drop-shadow(0 0 8px rgba(169,139,255,.65)); }
.ach-card[data-cat="social"].available  .ach-icon svg { filter: drop-shadow(0 0 8px rgba(255,200,58,.65)); }

/* Claimed — чуть слабее */
.ach-card[data-cat="crash"].claimed   .ach-icon svg { filter: drop-shadow(0 0 4px rgba(251,146,60,.35)); }
.ach-card[data-cat="vault"].claimed   .ach-icon svg { filter: drop-shadow(0 0 4px rgba(95,245,223,.35)); }
.ach-card[data-cat="capsule"].claimed .ach-icon svg { filter: drop-shadow(0 0 4px rgba(169,139,255,.35)); }
.ach-card[data-cat="social"].claimed  .ach-icon svg { filter: drop-shadow(0 0 4px rgba(255,200,58,.35)); }

/* Gate icon — тот же медальон-приём, что у карточек достижений */
.ach-gate-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD75A;
  border: 2px solid transparent;
  background:
    linear-gradient(#16131f, #16131f) padding-box,
    conic-gradient(from 200deg, currentColor, transparent 75%) border-box;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 0 20px rgba(255,200,58,.25);
}
.ach-gate-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 14px rgba(255,200,58,.45));
}

/* ── Title & description ─────────────────────────────── */
.ach-title {
  font-family: var(--ld-font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--ld-text);
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
}

.ach-desc {
  font-family: var(--ld-font-ui);
  font-size: 9px;
  color: var(--ld-muted);
  text-align: center;
  line-height: 1.3;
}

/* ── Progress bar ────────────────────────────────────── */
.ach-progress {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 1px;
}

.ach-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.09);
  border-radius: 999px;
  overflow: hidden;
}

.ach-progress-fill {
  height: 100%;
  border-radius: 999px;
  min-width: 0;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

[data-cat="crash"]   .ach-progress-fill { background: linear-gradient(90deg, #FB923C, #EA580C); }
[data-cat="vault"]   .ach-progress-fill { background: linear-gradient(90deg, #5FF5DF, #5BB8FF); }
[data-cat="capsule"] .ach-progress-fill { background: linear-gradient(90deg, #A98BFF, #F58BF0); }
[data-cat="social"]  .ach-progress-fill { background: linear-gradient(90deg, #FFD75A, #FFB200); }

.ach-progress-fill.full {
  animation: ach-bar-shine 1.8s ease-in-out infinite;
}
@keyframes ach-bar-shine {
  0%,100% { filter: brightness(1); }
  50%      { filter: brightness(1.4); }
}

.ach-progress-label {
  display: block;
  text-align: right;
  font-family: var(--ld-font-ui);
  font-size: 8px;
  font-weight: 700;
  color: rgba(150,158,190,.65);
  margin-top: 3px;
}

/* ── Reward pill ─────────────────────────────────────── */
.ach-reward {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255,200,58,.09);
  border: 1px solid rgba(255,200,58,.20);
  border-radius: 999px;
  padding: 1px 7px;
  font-family: var(--ld-font-ui);
  font-size: 9px;
  font-weight: 700;
  color: var(--ld-star);
  margin-top: 2px;
}

/* ── Claim button ────────────────────────────────────── */
.ach-claim-btn {
  position: relative;
  width: 100%;
  padding: 6px 4px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFD75A 0%, #FFB200 100%);
  color: #1a1200;
  font-family: var(--ld-font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
  margin-top: 3px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 10px rgba(255,200,58,.28);
  transition: opacity .12s, transform .10s;
}
.ach-claim-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  background-size: 220% 100%;
  animation: ach-claim-shine 2.6s ease-in-out infinite;
}
@keyframes ach-claim-shine {
  0%   { background-position: 130% 0; }
  60%, 100% { background-position: -30% 0; }
}
.ach-claim-btn:active   { opacity: .8; transform: scale(.97); }
.ach-claim-btn:disabled { opacity: .55; }
.ach-claim-btn:disabled::after { animation: none; }

/* ══════════════════════════════════════════════════════
   STAGED CARD
   ══════════════════════════════════════════════════════ */

.ach-card.staged {
  padding: 0;
}

/* Inner content wrapper (solo & staged) */
.ach-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 8px 8px;
  width: 100%;
}

/* ── Stage dots ──────────────────────────────────────── */
.ach-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 3px 0 1px;
}

.ach-stage-dot {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--ld-font-display);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .2s;
}

.ach-stage-dot em {
  font-style: normal;
  font-weight: 700;
  opacity: .75;
  margin-left: 2px;
}

.ach-stage-dot.claimed {
  background: rgba(100,220,130,.12);
  border-color: rgba(100,220,130,.36);
  color: rgba(140,235,165,.95);
}
.ach-stage-dot.claimed::before {
  content: '✓';
  font-size: 8px;
}

.ach-stage-dot.active {
  background: rgba(255,255,255,.07);
  border-color: currentColor;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 0 8px -1px currentColor;
  /* color inherits from .ach-card[data-cat] .ach-icon color rules */
}

[data-cat="crash"]   .ach-stage-dot.active { color: #FB923C; }
[data-cat="vault"]   .ach-stage-dot.active { color: #5FF5DF; }
[data-cat="capsule"] .ach-stage-dot.active { color: #A98BFF; }
[data-cat="social"]  .ach-stage-dot.active { color: #FFD75A; }

.ach-stage-dot.locked {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.08);
  color: rgba(180,185,210,.28);
}

/* ── Completed overlay ───────────────────────────────── */
.ach-completed-overlay {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(10,10,18,.50);
  border-radius: 17px;
  z-index: 3;
}

.ach-card.completed-all .ach-completed-overlay { display: flex; }

.ach-card.completed-all .ach-card-inner {
  filter: blur(2.5px);
  opacity: .45;
  pointer-events: none;
}

.ach-done-check {
  font-size: 22px;
  line-height: 1;
  color: rgba(100,220,130,.90);
  filter: drop-shadow(0 0 10px rgba(100,220,130,.45));
}

.ach-done-text {
  font-family: var(--ld-font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(100,220,130,.95);
  text-shadow: 0 0 14px rgba(100,220,130,.50);
}

/* ══════════════════════════════════════════════════════
   NFT COLLECTION — центрированное подтверждение покупки
   ══════════════════════════════════════════════════════ */
.nft-confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(4,3,10,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.nft-confirm-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nft-confirm-box {
  width: 100%;
  max-width: 340px;
  background: #12101c;
  border: 1px solid var(--ld-panel-border);
  border-radius: var(--ld-r-card);
  box-shadow: var(--ld-shadow-soft);
  padding: 24px 20px 20px;
  text-align: center;
  transform: scale(.92);
  transition: transform .2s cubic-bezier(.32,.72,0,1);
}
.nft-confirm-overlay.open .nft-confirm-box {
  transform: scale(1);
}

/* ══════════════════════════════════════════════════════
   ЦЕНЫ НА ПОДАРКИ — справка для депозита через NFT
   ══════════════════════════════════════════════════════ */
.gift-prices-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(4,3,10,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.gift-prices-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.gift-prices-sheet {
  width: 100%;
  max-width: 480px;
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  background: var(--ld-bg-screen);
  background-color: #12101c;
  border: 1px solid var(--ld-panel-border);
  border-bottom: none;
  border-radius: 26px 26px 0 0;
  padding: 16px 14px calc(16px + env(safe-area-inset-bottom, 0px));
  box-shadow: var(--ld-shadow-soft);
  transform: translateY(100%);
  transition: transform .28s cubic-bezier(.32,.72,0,1);
}
.gift-prices-overlay.open .gift-prices-sheet {
  transform: translateY(0);
}
.gift-prices-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 12px;
  font-family: var(--ld-font-display, 'Unbounded', sans-serif);
  font-weight: 800; font-style: italic;
  font-size: 15px; color: #fff; letter-spacing: .02em;
  flex-shrink: 0;
}
.gift-prices-close {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.6); cursor: pointer;
  flex-shrink: 0;
}
.gift-prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  align-content: start;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.gift-price-card {
  background: #1c1c1f;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}
.gift-price-img-wrap {
  width: 100%;
  height: 100px;
  background: #2a2a2e;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gift-price-img-wrap img {
  max-width: 72%; max-height: 72%; object-fit: contain;
}
.gift-price-badge {
  position: absolute;
  top: 6px; left: 6px;
  display: flex; align-items: center; gap: 3px;
  background: rgba(0,0,0,.6);
  border-radius: 999px;
  padding: 3px 7px 3px 3px;
  font-size: 10px; font-weight: 800; color: #fff;
  white-space: nowrap;
}
.gift-price-badge img { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }

.nft-confirm-title {
  font-family: var(--ld-font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 12px;
}
.nft-confirm-name {
  font-family: var(--ld-font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--ld-ice);
  margin-bottom: 4px;
}
.nft-confirm-price {
  font-family: var(--ld-font-ui);
  font-size: 20px;
  font-weight: 800;
  color: var(--ld-star);
  margin-bottom: 14px;
}
.nft-confirm-text {
  font-family: var(--ld-font-ui);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ld-text-2);
  margin-bottom: 18px;
}
