/* ============================================================
   GRAVITY — basket 2026

   One block per ticket instead of five labelled bands. The old
   markup printed "Tickets", "Quantity" and "Price" twice — once
   as column headers and again inside every row as d-md-none —
   and separated them with two cart-circle.png images per item.
   All of that is gone; the values explain themselves.

   Loaded on every page because the basket modal is in the footer
   of every page. Around 4 KB.
   ============================================================ */

#miniCartModal .modal-content { background: #0B0B0E; border: none; border-radius: 24px; }
#miniCartModal .modal-body    { padding: 0 !important; }

.g26cart { --ln: rgba(255,255,255,.10); --fg2: rgba(255,255,255,.66); --fg3: rgba(255,255,255,.46);
  --act: #FF520E; --gone: #FF4438; --ok: #34D07F; --tap: 44px;
  color: #fff; font-family: 'DM Sans', sans-serif; }

.g26cart-head { padding: 16px 18px 10px; }
.g26cart-head h4 { font-family: 'Clash Display', sans-serif; font-size: 19px; font-weight: 600; margin: 0; }
.g26cart-head span { color: var(--fg3); font-weight: 400; }

/* ---- rows ---- */
.g26cart-items { padding: 0 18px; }
.g26cart-row { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; gap: 13px;
  align-items: start; padding: 15px 0; border-top: 1px solid var(--ln); }
.g26cart-row:first-child { border-top: none; }
.g26cart-row.is-busy { opacity: .55; pointer-events: none; }

.g26cart-thumb img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; display: block; }
.g26cart-meta { min-width: 0; }
.g26cart-ev { font-size: 10.5px; letter-spacing: .10em; text-transform: uppercase; color: var(--fg3); margin-bottom: 4px; }
.g26cart-tt { font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 500;
  line-height: 1.3; overflow-wrap: anywhere; }
.g26cart-unit { font-size: 12.5px; color: var(--fg2); margin-top: 5px; }
.g26cart-unit .amount { color: inherit; }

.g26cart-qty { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 2px; margin-top: 9px; }
.g26cart-q { width: var(--tap); height: var(--tap); border-radius: 50%; border: 0; background: none;
  color: #fff; font-size: 17px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.g26cart-q:hover { background: rgba(255,255,255,.10); }
.g26cart-n { min-width: 30px; text-align: center; font-size: 14.5px; font-variant-numeric: tabular-nums; }

.g26cart-end { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.g26cart-rm { width: var(--tap); height: var(--tap); display: grid; place-items: center;
  margin: -11px -12px 0 0; color: var(--fg3); font-size: 17px; text-decoration: none; }
.g26cart-rm:hover { color: var(--gone); }
.g26cart-line { font-family: 'Clash Display', sans-serif; font-size: 15px; font-weight: 600;
  font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---- notice ---- */
.g26cart-notice { display: none; margin: 0 18px; padding: 11px 13px; border-radius: 12px;
  background: rgba(255,68,56,.12); border: 1px solid rgba(255,68,56,.35);
  color: #FFB3AC; font-size: 13px; line-height: 1.45; }
.g26cart-notice.show { display: block; }

/* ---- totals ---- */
.g26cart-foot { border-top: 1px solid var(--ln); padding: 16px 18px 20px; background: #101013;
  border-radius: 0 0 24px 24px; margin-top: 15px; }
.g26cart-trow { display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--fg2); margin-bottom: 9px; }
.g26cart-trow span:last-child { font-variant-numeric: tabular-nums; }
.g26cart-trow.save { color: var(--ok); }
.g26cart-trow.total { font-family: 'Clash Display', sans-serif; color: #fff; font-size: 20px;
  font-weight: 600; margin: 13px 0 3px; padding-top: 13px; border-top: 1px solid var(--ln); }
.g26cart-tax { font-size: 11.5px; color: var(--fg3); text-align: right; margin-bottom: 15px; }

.g26cart-cta { display: block; width: 100%; background: var(--act); color: #fff; border: 0;
  border-radius: 999px; min-height: 52px; padding: 16px; text-align: center; text-decoration: none;
  font-weight: 700; font-size: 16px; line-height: 1.2; transition: background .15s ease; }
.g26cart-cta:hover { background: #FF6A2E; color: #fff; }

.g26cart-trust { display: flex; justify-content: center; gap: 8px 18px; flex-wrap: wrap;
  margin-top: 13px; font-size: 11.5px; color: var(--fg3); }
.g26cart-trust b { color: var(--fg2); font-weight: 500; }

.g26cart-clear { text-align: center; margin-top: 12px; }
.g26cart-clear button { background: none; border: 0; color: var(--fg3); font-size: 12.5px;
  cursor: pointer; padding: 0 16px; min-height: var(--tap);
  text-decoration: underline; text-underline-offset: 3px; }
.g26cart-clear button:hover { color: var(--gone); }

/* ---- empty ---- */
.g26cart-empty { padding: 34px 18px 40px; text-align: center; }
.g26cart-empty p { color: var(--fg2); font-size: 15px; margin-bottom: 18px; }
.g26cart-ghost { display: inline-block; border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
  padding: 14px 26px; color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; }
.g26cart-ghost:hover { border-color: #fff; color: #fff; }
