/* ===== SITE CART ===== */

.cart-page { padding: 40px 0 80px; }

/* Page head (beta pattern) */
.page-head { margin-bottom: 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.page-head .crumb { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-dim); font-weight: 600; }
.page-head h1 { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 8px 0 0; color: #fff; }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.cart-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.cart-side { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }

.cart-block {
  padding: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,106,0.22);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(212,175,106,0.05), 0 8px 24px rgba(212,175,106,0.04);
}
.cart-block-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.sec-title { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.sec-sub { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.cart-block-head .block-total { font-size: 14px; color: var(--text-muted); }
.cart-block-head .block-total strong { color: #fff; font-weight: 700; }

/* Games grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); gap: 14px; }
@media (max-width: 780px) { .games-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); } }
.game-item { display: flex; flex-direction: column; position: relative; }
.game-item .cv {
  aspect-ratio: var(--game-card-aspect);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.game-item:hover .cv { border-color: var(--border-blue); }
.game-item .del {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  color: #ff7878;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s, transform .2s, opacity .2s;
  opacity: 0; z-index: 3;
}
.game-item:hover .del,
.game-item .del:focus-visible { opacity: 1; }
.game-item .del:hover { background: rgba(255,120,120,0.2); transform: scale(1.08); }
.game-item .del svg { width: 13px; height: 13px; stroke-width: 2.5; pointer-events: none; }
.game-platforms {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  z-index: 2;
}
.game-platform {
  padding: 3.3px 6.6px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3.3px;
  font-size: 9.9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}
.game-item .nm { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: -0.015em; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-item .ed { font-size: 12px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.01em; margin-top: 3px; margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-item .game-prices { display: flex; align-items: center; gap: 6px; margin-top: 0; }
.game-item .game-price { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -0.02em; font-feature-settings: "tnum"; }
.game-item .game-price .currency { color: inherit; opacity: 0.7; }
.game-discount-inline {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: -0.02em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(74,124,255,0.3);
}

/* Subscription rows */
.subs-list { display: flex; flex-direction: column; gap: 10px; }
.sub-row {
  display: grid;
  grid-template-columns: 92px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: border-color .2s;
}
.sub-row:hover { border-color: rgba(212,175,106,0.22); }
.sub-cover {
  height: 56px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  container-type: inline-size;
}
.sub-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.sub-cover .sc-bg-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 0.78;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  font-size: clamp(64px, 74cqw, 104px);
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.sub-cover .sc-bg-num.single { font-size: clamp(76px, 88cqw, 122px); letter-spacing: -0.03em; }
.sub-cover .sc-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.sub-cover .ps-logo { height: clamp(13px, 16cqw, 18px); max-width: 74px; object-fit: contain; display: block; }
.sub-cover .sc-tier { font-size: clamp(12px, 18cqw, 18px); font-weight: 900; line-height: 1; letter-spacing: 0.03em; }
.sub-cover.sc-essential { background: #c0c0c6; }
.sub-cover.sc-essential::before {
  background:
    radial-gradient(ellipse 70% 80% at 30% 20%, rgba(255,255,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 75% 80%, rgba(160,160,175,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 50%, rgba(220,220,228,0.3) 0%, transparent 70%),
    linear-gradient(155deg, #d6d6dc 0%, #b5b5be 40%, #a0a0ac 70%, #c0c0c8 100%);
}
.sub-cover.sc-essential .sc-bg-num { background: linear-gradient(180deg, #ebebf0 0%, #6d6d78 100%); -webkit-background-clip: text; background-clip: text; }
.sub-cover.sc-essential .sc-tier { color: #1a1a20; }
.sub-cover.sc-extra { background: #c9a035; }
.sub-cover.sc-extra::before {
  background:
    radial-gradient(ellipse 65% 75% at 25% 25%, rgba(255,230,140,0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 80% 75%, rgba(160,120,20,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(230,195,80,0.25) 0%, transparent 65%),
    linear-gradient(155deg, #e2c560 0%, #caa530 35%, #a88520 65%, #dbb845 100%);
}
.sub-cover.sc-extra .sc-bg-num { background: linear-gradient(180deg, #f4da80 0%, #5c4510 100%); -webkit-background-clip: text; background-clip: text; }
.sub-cover.sc-extra .sc-tier { color: #000; }
.sub-cover.sc-deluxe { background: #000; --accent: #f5c518; }
.sub-cover.sc-deluxe::before {
  background:
    radial-gradient(ellipse 60% 65% at 35% 30%, rgba(200,170,100,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 55% at 70% 70%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(200,170,100,0.05) 0%, transparent 65%),
    linear-gradient(155deg, #0e0e0e 0%, #050505 40%, #000 70%, #0a0a0a 100%);
}
.sub-cover.sc-deluxe .sc-bg-num { background: linear-gradient(180deg, #d6b85a 0%, #000 100%); -webkit-background-clip: text; background-clip: text; }
.sub-cover.sc-deluxe .sc-tier { color: var(--accent); }
.sub-cover.sc-deluxe .ps-logo-wrap { position: relative; display: inline-block; height: clamp(13px, 16cqw, 18px); line-height: 0; }
.sub-cover.sc-deluxe .ps-logo-wrap .tinted-img {
  height: 100%;
  width: auto;
  display: block;
  clip-path: inset(0 0 0 25.5%);
  filter: brightness(0) saturate(100%) invert(78%) sepia(68%) saturate(2000%) hue-rotate(358deg) brightness(105%) contrast(101%);
}
.sub-cover.sc-deluxe .ps-logo-wrap .crest { position: absolute; left: 0; top: 0; height: 100%; width: auto; display: block; }
.sub-cover.sc-eaplay { background: #1a1a3e; }
.sub-cover.sc-eaplay::before {
  background:
    radial-gradient(ellipse 55% 65% at 80% 15%, rgba(220,50,80,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 90% 40%, rgba(180,40,100,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 15% 85%, rgba(40,40,120,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(30,30,80,0.3) 0%, transparent 70%),
    linear-gradient(155deg, #22224a 0%, #1a1a40 30%, #14142e 60%, #1e1e48 100%);
}
.sub-cover.sc-eaplay .sc-bg-num {
  background: linear-gradient(180deg, #4c4c8c 0%, #0d0d24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(60px, 90cqw, 110px);
}
.sub-cover.sc-eaplay .ea-logo { height: clamp(20px, 28cqw, 30px); display: block; object-fit: contain; }
.sub-cover.sc-eaplay .ea-label { font-weight: 900; font-size: clamp(10px, 16cqw, 16px); line-height: 1; letter-spacing: 0.04em; color: #ff4654; }
.sub-info { min-width: 0; }
.sub-family { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; }
.sub-title { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-top: 2px; }
.sub-meta { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.sub-price { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.02em; font-feature-settings: "tnum"; white-space: nowrap; }
.sub-price .currency { margin-left: 2px; color: inherit; opacity: 0.7; }
.sub-del {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.4);
  color: #ff7878;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.sub-del:hover { background: rgba(255,120,120,0.2); transform: scale(1.05); }
.sub-del svg { width: 14px; height: 14px; stroke-width: 2.5; pointer-events: none; }

/* Addons list */
.addons-list { display: flex; flex-direction: column; gap: 10px; }
.addon-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
}
.addon-row .av {
  width: 56px; height: 56px;
  background-size: cover; background-position: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.addon-row .nm { font-size: 14px; font-weight: 600; color: #fff; }
.addon-row .price { font-size: 15px; font-weight: 800; color: #fff; font-feature-settings: "tnum"; }
.addon-row .price .currency { margin-left: 2px; opacity: 0.7; }

/* Top-up cards (beta cart_india pattern) */
.cards-list { display: flex; flex-direction: column; gap: 10px; }
.topup-card { display: grid; grid-template-columns: 56px 1fr auto; gap: 16px; align-items: center; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; transition: border-color .2s; }
.topup-card:hover { border-color: var(--border-strong); }
.topup-card .th { width: 56px; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-strong); }
.topup-card .th img { width: 100%; height: 100%; object-fit: cover; display: block; }
.topup-card > div:not(.th):not(.qty) { min-width: 0; }
.topup-card .nm { font-size: 14px; font-weight: 700; color: #fff; }
.topup-card .pr { font-size: 12px; color: var(--text-muted); margin-top: 3px; font-family: inherit; font-weight: 500; }
.topup-card .qty { display: flex; align-items: center; gap: 6px; padding: 4px; background: rgba(0,0,0,0.3); border-radius: 10px; }
.topup-card .qty button { width: 28px; height: 28px; border-radius: 7px; background: rgba(255,255,255,0.06); color: var(--text); font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s; border: none; font-family: inherit; }
.topup-card .qty button:hover:not(:disabled) { background: rgba(255,255,255,0.1); }
.topup-card .qty button:disabled { opacity: 0.3; cursor: not-allowed; }
.topup-card .qty .n { font-family: 'Geist', sans-serif; min-width: 22px; text-align: center; font-weight: 700; font-size: 14px; color: #fff; }

.cards-total { font-size: 16px; color: var(--text-muted); }
.cards-total strong { color: #fff; font-family: inherit; font-weight: 700; }

.faq-row { background: rgba(74,124,255,0.04); border: 1px solid rgba(74,124,255,0.18); border-radius: 12px; overflow: hidden; transition: background .2s; margin-bottom: 14px; }
.faq-row:hover { background: rgba(74,124,255,0.06); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: transparent; border: none; color: inherit; cursor: pointer; font-family: inherit; text-align: left; gap: 14px; }
.faq-q-wrap { display: flex; align-items: center; gap: 12px; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(74,124,255,0.18); color: var(--blue-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; font-size: 14px; }
.faq-q { font-size: 14px; font-weight: 700; color: var(--text); }
.faq-arr { width: 18px; height: 18px; color: var(--text-muted); transition: transform .25s; flex-shrink: 0; }
.faq-row.open .faq-arr { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 18px 0 60px; }
.faq-row.open .faq-body { max-height: 200px; padding: 0 18px 16px 60px; }
.faq-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.add-card-btn { margin-top: 12px; padding: 12px; background: rgba(74,124,255,0.08); border: 1px dashed rgba(74,124,255,0.3); border-radius: 10px; color: var(--blue-bright); font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; width: 100%; transition: background .2s, border-color .2s; }
.add-card-btn:hover { background: rgba(74,124,255,0.14); border-color: rgba(74,124,255,0.5); }
.add-card-btn:disabled { opacity: 0.55; cursor: progress; }
/* Add card modal (beta cart_india pattern) */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 100; opacity: 0; pointer-events: none; transition: opacity .2s; padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { max-width: 640px; width: calc(100% - 40px); max-height: 86vh; overflow: auto; background: linear-gradient(160deg, #141925 0%, #0c0f18 100%); border: 1px solid var(--border-strong); border-radius: 18px; padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05); transform: scale(0.96); transition: transform .2s; }
.modal-overlay.open .modal { transform: scale(1); }
.modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.modal-head h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.015em; margin: 0; color: #fff; }
.modal-close { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); color: var(--text-muted); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, color .2s; border: none; }
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.modal-close svg { width: 16px; height: 16px; stroke-width: 2.5; }
.modal-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.denom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.denom-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; padding: 12px 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s, transform .15s; font-family: inherit; color: var(--text); text-align: left; }
.denom-item:hover { border-color: var(--border-gold); background: rgba(212,175,106,0.06); transform: translateY(-1px); }
.denom-item:disabled { opacity: 0.55; cursor: progress; transform: none; }
.denom-item .th { width: 56px; aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-strong); display: block; }
.denom-item .th img { width: 100%; height: 100%; object-fit: cover; display: block; }
.denom-item > span:not(.th):not(.add-ico) { min-width: 0; }
.denom-item .nm { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.denom-item .pr { display: block; font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.denom-item .add-ico { width: 34px; height: 34px; border-radius: 8px; border: 1.5px solid rgba(212,175,106,0.4); color: var(--gold-bright); background: transparent; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.denom-item .add-ico svg { width: 14px; height: 14px; stroke-width: 2.5; }
.denom-item:hover .add-ico { border-color: var(--gold-bright); background: rgba(212,175,106,0.1); color: #f0d78a; transform: rotate(90deg); }

/* Need-account row with flag + iOS toggle */
.need-acc-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: 14px; cursor: pointer; transition: background .2s, border-color .2s; margin-top: 12px; }
.need-acc-row:hover { background: rgba(255,255,255,0.04); }
.need-acc-row.checked { background: rgba(94,212,163,0.05); border-color: rgba(94,212,163,0.3); }
.need-acc-flag { width: 44px; height: 32px; border-radius: 6px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border-strong); box-shadow: 0 2px 6px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; background: #e30a17; }
.need-acc-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.need-acc-text { flex: 1; min-width: 0; }
.need-acc-text .ttl { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.need-acc-text .sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; font-weight: 500; line-height: 1.3; }
.ios-toggle { width: 50px; height: 30px; border-radius: 999px; background: rgba(255,255,255,0.1); position: relative; flex-shrink: 0; transition: background .25s; cursor: pointer; }
.ios-toggle::after { content: ''; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.25); transition: transform .25s ease; }
.need-acc-row.checked .ios-toggle { background: #34c759; }
.need-acc-row.checked .ios-toggle::after { transform: translateX(20px); }

/* Summary card */
.summary-card {
  padding: 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,106,0.22);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(212,175,106,0.05), 0 8px 24px rgba(212,175,106,0.04);
}
.sum-title { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; margin-bottom: 14px; }
.sum-row { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 14px; }
.sum-row.hidden { display: none; }
.sum-row .k { color: var(--text-muted); }
.sum-row .v { font-weight: 600; color: #fff; font-feature-settings: "tnum"; }
.sum-row.pos .v { color: #3ddc84; font-weight: 700; }
.sum-final { margin-top: 8px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: baseline; }
.sum-final .k { font-size: 13px; color: var(--text-muted); }
.sum-final .v { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; color: #fff; font-feature-settings: "tnum"; }
.sum-final .v .currency { font-size: 18px; font-weight: 700; margin-left: 4px; opacity: 0.7; }

.cta-btn {
  width: 100%;
  padding: 16px;
  margin-top: 16px;
  background: linear-gradient(135deg, #2d62ff 0%, #4a7cff 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 8px 22px rgba(74,124,255,0.35);
}
.cta-btn:not(:disabled):hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(74,124,255,0.5); }
.cta-btn:disabled,
.cta-btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.cta-soon {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

/* Checkout form wrapper (form is parent of cart-block + summary-card) */
#siteCheckoutForm { display: flex; flex-direction: column; gap: 14px; }
.cart-checkout-block { padding: 20px; }
.cart-checkout-title { font-size: 15px; margin-bottom: 12px; }

/* Payment tabs (beta .pay-tabs-mini) */
.pay-tabs-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-tab-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.pay-tab-mini:hover { background: rgba(255,255,255,0.05); }
.pay-tab-mini.active { border-color: var(--border-gold); background: rgba(212,175,106,0.08); }
.pay-tab-mini .ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.pay-tab-mini .ico.ico-crypto { background: rgba(247,147,26,0.15); }
.pay-tab-mini .ico img { width: 32px; height: 32px; object-fit: contain; display: block; border-radius: 7px; }
.pay-tab-mini .ico svg { width: 32px; height: 32px; display: block; }
.pay-tab-mini .nm { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }

/* Expand rows (promo / bonus / email) */
.expand-rows { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.expand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  transition: background .2s;
}
.expand-row:hover { background: rgba(255,255,255,0.04); }
.expand-row .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s;
}
.expand-row.open .dot {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,124,255,0.14), inset 0 1px 0 rgba(255,255,255,0.18);
}
.expand-row .lb { flex: 1; color: #fff; font-weight: 600; }
.expand-row .arr { color: var(--text-dim); transition: transform .2s; }
.expand-row.open .arr { transform: rotate(180deg); }
.expand-body { padding: 0 4px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.expand-body.open { max-height: 340px; padding: 12px 4px 4px; }

/* Promo input row + apply button */
.promo-row { display: flex; gap: 8px; }
.promo-row input {
  flex: 1;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.promo-row input::placeholder { color: var(--text-dim); }
.promo-row input:focus { border-color: var(--border-blue); background: rgba(255,255,255,0.05); }
.apply-btn {
  padding: 12px 18px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  letter-spacing: 0.02em;
}
.apply-btn:hover { background: var(--blue-bright); transform: translateY(-1px); }
.apply-btn.is-applied { background: #3ddc84; color: #062518; }

/* Bonus slider block */
.bonus-block {
  padding: 14px;
  background: linear-gradient(160deg, rgba(212,175,106,0.06) 0%, rgba(74,124,255,0.03) 100%);
  border: 1px solid rgba(212,175,106,0.2);
  border-radius: 12px;
}
.bonus-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.bonus-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.bonus-input-wrap { display: flex; align-items: baseline; gap: 2px; border-bottom: 1px solid var(--border-strong); padding-bottom: 0; transition: border-bottom-color .15s; }
.bonus-input-wrap:focus-within { border-bottom-color: var(--gold-bright); }
.bonus-input {
  width: 58px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-bright);
  text-align: right;
  outline: none;
  padding: 2px 0;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
}
.bonus-input::-webkit-outer-spin-button,
.bonus-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bonus-currency { font-size: 18px; font-weight: 800; color: var(--gold-bright); letter-spacing: -0.02em; }
.bonus-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-strong);
  outline: none;
  cursor: pointer;
}
.bonus-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 2px 10px rgba(212,175,106,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.2);
  cursor: grab;
  transition: transform .15s;
}
.bonus-slider::-webkit-slider-thumb:hover { transform: scale(1.08); }
.bonus-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.bonus-slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 2px 10px rgba(212,175,106,0.5);
  cursor: grab;
}
.bonus-slider::-moz-range-track { height: 6px; border-radius: 3px; background: var(--border-strong); border: none; }
.bonus-footer { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--text-dim); font-weight: 500; }
.bonus-apply {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a0c12;
  border: 0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(212,175,106,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform .2s, box-shadow .2s;
}
.bonus-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212,175,106,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}

.hidden { display: none !important; }

/* Account destination block (beta cart accountBlock) */
.psn-linked {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(94,212,163,0.06);
  border: 1px solid rgba(94,212,163,0.25);
  border-radius: 12px;
}
.psn-linked .ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(94,212,163,0.2);
  color: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}
.psn-linked .ico svg { width: 18px; height: 18px; }
.psn-linked > div:not(.ico):not(.change) { min-width: 0; }
.psn-linked .lb {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.psn-linked .em {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}
.psn-linked .pass {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.08em;
  font-family: 'Geist', sans-serif;
}
.psn-linked .change {
  font-size: 12px;
  color: var(--blue-bright);
  font-weight: 600;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s;
}
.psn-linked .change:hover { background: rgba(74,124,255,0.1); }
.psn-edit {
  padding: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.psn-edit input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.psn-edit input:focus { border-color: var(--border-blue); background: rgba(255,255,255,0.05); }
.psn-edit-actions { display: flex; gap: 8px; margin-top: 4px; }
.psn-edit-actions .save {
  flex: 1;
  padding: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.psn-edit-actions .save:hover { background: var(--blue-bright); }
.psn-edit-actions .cancel {
  padding: 12px 18px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.psn-edit-actions .cancel:hover { background: rgba(255,255,255,0.03); color: var(--text); }
.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
}
.account-tab {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s;
}
.account-tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.03); }
.account-tab.active {
  background: var(--bg-elevated-hover);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* TR method pill (account vs gift_codes) — стиль из референса d/cart_turkey.html */
.method-pill {
  display: inline-flex;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}
.method-pill button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  letter-spacing: 0.01em;
}
.method-pill button:hover:not(.active):not(:disabled) {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.method-pill button.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #0a0c12;
  box-shadow: 0 4px 14px rgba(212,175,106,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-0.5px);
}
.method-pill button:disabled { opacity: 0.7; cursor: progress; }
@media (max-width: 680px) {
  .method-pill { width: 100%; padding: 4px; }
  .method-pill button { flex: 1; padding: 11px 14px; font-size: 13px; }
}

/* FAQ-row для блока «Карты для пополнения» (TR codes) — стиль из референса */
.faq-row {
  background: rgba(74,124,255,0.04);
  border: 1px solid rgba(74,124,255,0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: background .2s;
  margin-bottom: 14px;
}
.faq-row:hover { background: rgba(74,124,255,0.06); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 14px;
}
.faq-q-wrap { display: flex; align-items: center; gap: 12px; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74,124,255,0.18);
  color: #6b94ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
}
.faq-q { font-size: 14px; font-weight: 700; color: var(--text); }
.faq-arr {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-row.open .faq-arr { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 18px 0 60px;
}
.faq-row.open .faq-body { max-height: 200px; padding: 0 18px 16px 60px; }
.faq-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Игра, добавленная из remainder-блока — золотая дышащая рамка (TR codes) */
.game-item.added-from-remainder .cv {
  border: 1.5px solid rgba(212,175,106,0.45);
  animation: addedBreath 3s ease-in-out infinite;
}
.game-item.added-from-remainder .nm { color: var(--gold-bright); }
@keyframes addedBreath {
  0%, 100% { border-color: rgba(212,175,106,0.35); }
  50% { border-color: rgba(232,196,126,0.85); }
}

/* Remainder block — игры со скидкой на остаток (TR codes mode) */
.remainder {
  margin-top: 18px;
  padding: 22px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(212,175,106,0.25);
  box-shadow: 0 0 0 1px rgba(212,175,106,0.04);
  transition: opacity .3s;
}
.remainder.empty { opacity: 0.55; }
.remainder-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.remainder-head .amt {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  font-family: 'Geist', sans-serif;
  font-feature-settings: "tnum";
}
.remainder-head .badge {
  padding: 4px 10px;
  background: rgba(94,212,163,0.12);
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.remainder-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.remainder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 1100px) { .remainder-grid { grid-template-columns: 1fr; } }
.remainder-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.25, 1), border-color .25s, box-shadow .35s, opacity .25s;
  cursor: pointer;
}
.remainder-item:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 1px rgba(212,175,106,0.18), 0 8px 24px rgba(212,175,106,0.18);
}
.remainder-item.leaving { opacity: 0; transform: scale(0.92); pointer-events: none; }
.remainder-item .cv {
  position: relative;
  width: 48px;
  aspect-ratio: var(--game-card-aspect, 3 / 4);
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-strong);
  transition: transform .4s cubic-bezier(0.2, 0.8, 0.25, 1);
  overflow: hidden;
}
.remainder-item:hover .cv { transform: scale(1.06) rotate(-1deg); }
.remainder-item .remainder-discount {
  position: absolute;
  left: 4px;
  bottom: 4px;
  padding: 2px 5px;
  background: var(--blue, #4a7cff);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: -0.02em;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(74, 124, 255, 0.3);
}
.remainder-item .nm {
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.remainder-item .pr {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
  font-feature-settings: "tnum";
}
.remainder-item .add {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 600;
  transition: color .2s, background .2s;
}
.remainder-item:hover .add {
  color: var(--gold-bright);
  background: rgba(212,175,106,0.1);
}

.new-account-info {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(74,124,255,0.08), rgba(74,124,255,0.02));
  border: 1px solid rgba(74,124,255,0.2);
  border-radius: 12px;
}
.new-account-info .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74,124,255,0.2);
  color: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.new-account-info .ico svg { width: 20px; height: 20px; stroke-width: 2; }
.new-account-info .txt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.new-account-info .txt strong { color: var(--blue-bright); font-weight: 600; }
.new-account-info .txt .check-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.new-account-info .txt .check-list li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text); }
.new-account-info .txt .check-list svg { width: 14px; height: 14px; color: var(--green-bright); flex-shrink: 0; }

.cta-btn.is-loading {
  opacity: 0.65;
  cursor: progress;
  pointer-events: none;
}

.checkout-error {
  min-height: 0;
  font-size: 12px;
  color: #ff7878;
  line-height: 1.4;
}
.checkout-error:empty { display: none; }

.checkout-hint {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.45;
}

/* Empty state */
.cart-empty {
  padding: 60px 24px;
  text-align: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(212,175,106,0.22);
  border-radius: 14px;
}
.cart-empty .ico {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}
.cart-empty .ico svg { width: 28px; height: 28px; }
.cart-empty h2 { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.015em; margin: 0 0 8px; }
.cart-empty p { font-size: 14px; color: var(--text-muted); margin: 0 0 22px; }
.cart-empty .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cart-empty .btn-primary {
  background: linear-gradient(135deg, #2d62ff 0%, #4a7cff 100%);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.cart-empty .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(74,124,255,0.4); }
.cart-empty .btn-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.cart-empty .btn-ghost:hover { background: rgba(255,255,255,0.07); }

/* Responsive */
@media (max-width: 920px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-side { position: static; top: auto; }
}
@media (max-width: 520px) {
  .sub-row { grid-template-columns: 64px 1fr auto; row-gap: 8px; }
  .sub-row .sub-del { grid-column: 3 / 4; grid-row: 1 / 2; align-self: start; }
  .sub-row .sub-price { grid-column: 2 / 4; grid-row: 2 / 3; }
  .addon-row { grid-template-columns: 56px 1fr auto; }
  .topup-card { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 12px; }
  .topup-card .th { width: 48px; }
  .denom-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE FOUNDATION (B5/B6) ===== */
@media (max-width: 600px) {
  .cart-page { padding: 28px 0 60px; }
  .page-head { gap: 12px; margin-bottom: 18px; }
  .page-head .crumb { font-size: 10px; letter-spacing: 0.14em; }
  .page-head h1 { font-size: 26px; margin-top: 4px; }

  .cart-layout { gap: 18px; }
  .cart-main { gap: 16px; }
  .cart-side { gap: 12px; }
  .cart-block { padding: 16px; border-radius: 12px; }
  .cart-block-head { margin-bottom: 14px; gap: 12px; }
  .sec-title { font-size: 16px; }
  .sec-sub { font-size: 12px; }
  .cart-block-head .block-total { font-size: 13px; }

  /* Games grid: target 2 cards/row on phones with readable titles */
  .games-grid { gap: 12px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .game-item .cv { margin-bottom: 8px; }
  /* Touch users have no hover — always show delete button on phones */
  .game-item .del { opacity: 1; width: 30px; height: 30px; top: 6px; right: 6px; }
  .game-item .nm { font-size: 13px; }
  .game-item .ed { font-size: 11px; margin-bottom: 4px; }
  .game-item .game-price { font-size: 13px; }

  /* Sub-row already reflows at 520; tighten chrome */
  .sub-row { padding: 10px; gap: 12px; }
  .sub-cover { height: 50px; }
  .sub-family { font-size: 10px; letter-spacing: 0.1em; }
  .sub-title { font-size: 14px; }
  .sub-meta { font-size: 11px; }
  .sub-price { font-size: 15px; }
  .sub-del { width: 30px; height: 30px; }

  .addon-row { padding: 10px; gap: 12px; }
  .addon-row .av { width: 50px; height: 50px; }
  .addon-row .nm { font-size: 13px; }
  .addon-row .price { font-size: 14px; }

  /* India top-up cards: qty buttons bumped to 34px tap target (was 28px) */
  .topup-card { padding: 12px; gap: 12px; }
  .topup-card .nm { font-size: 13px; }
  .topup-card .pr { font-size: 11px; }
  .topup-card .qty { padding: 3px; gap: 4px; }
  .topup-card .qty button { width: 34px; height: 34px; font-size: 16px; border-radius: 8px; }
  .topup-card .qty .n { min-width: 22px; font-size: 14px; }
  .cards-total { font-size: 14px; }

  /* FAQ rows */
  .faq-row { margin-bottom: 10px; border-radius: 10px; }
  .faq-trigger { padding: 12px 14px; gap: 10px; }
  .faq-q-wrap { gap: 10px; }
  .faq-icon { width: 24px; height: 24px; font-size: 13px; }
  .faq-q { font-size: 13px; }
  .faq-body { padding: 0 14px 0 48px; }
  .faq-row.open .faq-body { padding: 0 14px 14px 48px; max-height: 240px; }
  .faq-body p { font-size: 12.5px; }
  .add-card-btn { padding: 11px; font-size: 12px; }

  /* Add-card modal */
  .modal { padding: 18px; border-radius: 14px; }
  .modal-head h2 { font-size: 18px; }
  .modal-close { width: 30px; height: 30px; }
  .modal-close svg { width: 14px; height: 14px; }
  .modal-sub { font-size: 12px; margin-bottom: 16px; }
  .denom-grid { gap: 8px; }
  .denom-item { padding: 10px 12px; gap: 12px; grid-template-columns: 48px 1fr auto; }
  .denom-item .th { width: 48px; }
  .denom-item .nm { font-size: 14px; }
  .denom-item .pr { font-size: 12px; }
  .denom-item .add-ico { width: 30px; height: 30px; }

  /* India "need account" toggle row */
  .need-acc-row { padding: 12px 14px; gap: 12px; margin-top: 10px; border-radius: 12px; }
  .need-acc-flag { width: 38px; height: 26px; }
  .need-acc-text .ttl { font-size: 13px; }
  .need-acc-text .sub { font-size: 11px; }

  /* Summary card */
  .summary-card { padding: 16px; border-radius: 12px; }
  .sum-title { font-size: 10px; margin-bottom: 12px; letter-spacing: 0.1em; }
  .sum-row { font-size: 13px; padding: 6px 0; }
  .sum-final { padding-top: 12px; margin-top: 6px; }
  .sum-final .k { font-size: 12px; }
  /* Large IN totals ("999,999 Rs") otherwise wrap awkwardly */
  .sum-final .v { font-size: 26px; }
  .sum-final .v .currency { font-size: 14px; }

  .cta-btn { padding: 14px; font-size: 14px; margin-top: 14px; }
  .cta-soon { font-size: 11px; }
  .cart-checkout-block { padding: 16px; }
  .cart-checkout-title { font-size: 14px; }

  /* Payment tabs row stays 2-col but compact */
  .pay-tabs-mini { gap: 8px; }
  .pay-tab-mini { padding: 12px 14px; gap: 10px; }
  .pay-tab-mini .ico { width: 30px; height: 30px; border-radius: 8px; }
  .pay-tab-mini .ico img,
  .pay-tab-mini .ico svg { width: 26px; height: 26px; }
  .pay-tab-mini .nm { font-size: 13px; }

  /* Expand rows (promo / bonus / email) */
  .expand-rows { gap: 6px; margin-top: 14px; }
  .expand-row { padding: 11px 14px; gap: 10px; font-size: 12px; }
  .expand-row .dot { width: 16px; height: 16px; }
  .expand-body.open { padding: 10px 4px 4px; max-height: 380px; }

  /* Promo row: stack input + apply (was inline, tight at 360) */
  .promo-row { flex-direction: column; gap: 8px; }
  /* iOS auto-zoom triggers below 16px on text inputs */
  .promo-row input { padding: 12px 14px; font-size: 16px; }
  .apply-btn { padding: 12px 16px; font-size: 12px; width: 100%; }

  /* Bonus block: bigger slider thumb for touch */
  .bonus-block { padding: 12px; border-radius: 10px; }
  .bonus-input { font-size: 17px; }
  .bonus-currency { font-size: 17px; }
  .bonus-slider::-webkit-slider-thumb { width: 28px; height: 28px; }
  .bonus-slider::-moz-range-thumb { width: 28px; height: 28px; }
  .bonus-apply { padding: 11px; font-size: 11px; }

  /* PSN linked + edit form */
  .psn-linked { padding: 12px 14px; gap: 12px; grid-template-columns: 32px 1fr auto; border-radius: 10px; }
  .psn-linked .ico { width: 32px; height: 32px; }
  .psn-linked .ico svg { width: 16px; height: 16px; }
  .psn-linked .em { font-size: 13px; }
  .psn-linked .pass { font-size: 12px; }
  .psn-linked .change { font-size: 11px; padding: 5px 8px; }

  .psn-edit { padding: 14px; gap: 8px; border-radius: 10px; }
  /* iOS no-zoom on focus */
  .psn-edit input { padding: 12px; font-size: 16px; }
  .psn-edit-actions { gap: 8px; }
  .psn-edit-actions .save { padding: 11px; font-size: 12px; }
  .psn-edit-actions .cancel { padding: 11px 16px; font-size: 12px; }

  .account-tabs { gap: 4px; padding: 4px; margin-bottom: 12px; }
  .account-tab { font-size: 12px; padding: 9px 10px; }

  .new-account-info { padding: 14px; gap: 12px; grid-template-columns: 34px 1fr; }
  .new-account-info .ico { width: 34px; height: 34px; }
  .new-account-info .ico svg { width: 17px; height: 17px; }
  .new-account-info .txt { font-size: 12px; }
  .new-account-info .txt .check-list li { font-size: 11px; }
  .new-account-info .txt .check-list svg { width: 12px; height: 12px; }

  .checkout-error { font-size: 11.5px; }
  .checkout-hint { font-size: 11px; }

  /* Empty state */
  .cart-empty { padding: 44px 16px; }
  .cart-empty .ico { width: 56px; height: 56px; margin-bottom: 14px; }
  .cart-empty .ico svg { width: 24px; height: 24px; }
  .cart-empty h2 { font-size: 18px; }
  .cart-empty p { font-size: 13px; margin-bottom: 18px; }
  .cart-empty .actions { gap: 8px; }
  .cart-empty .btn-primary,
  .cart-empty .btn-ghost { padding: 11px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  .page-head h1 { font-size: 22px; }
  .sum-final .v { font-size: 24px; }
  .sum-final .v .currency { font-size: 13px; }
}
