@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/bankgothic-lt-bt');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&display=swap');

html, body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.gradient-title {
  background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-silver {
  background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 45%, #9ca3af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bank-title {
  font-family: 'BankGothic Lt BT', 'Bank Gothic', 'BankGothic', Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.presented-by {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: .85;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-card {
  border-radius: 1rem;
  background: radial-gradient(1200px 400px at 80% 20%, rgba(148, 0, 211, 0.25), transparent),
              radial-gradient(800px 400px at 10% 90%, rgba(0, 205, 255, 0.18), transparent);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  border-radius: 0.75rem;
  border: 1px dashed rgba(255,255,255,0.12);
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(4px);
}

.mini-stat .label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.mini-stat .value {
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 300px at 50% -10%, rgba(147,51,234,.25), transparent),
    radial-gradient(900px 300px at 10% 10%, rgba(34,211,238,.15), transparent);
  opacity: .5;
}

.glow {
  box-shadow: 0 0 0 0 rgba(148,0,211,0);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(147,51,234,0.0), 0 0 0 0 rgba(34,211,238,0.0); }
  50% { box-shadow: 0 0 40px 0 rgba(147,51,234,0.35), 0 0 60px 0 rgba(34,211,238,0.25); }
}

.ticket-card {
  position: relative;
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168,85,247,0.45);
  box-shadow: 0 10px 40px rgba(168,85,247,0.15);
}
.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-name {
  font-weight: 700;
  font-size: 1.25rem;
}
.ticket-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: #c084fc;
}
.ticket-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(180deg, rgba(168,85,247,.25), rgba(168,85,247,.05));
  color: #fff;
}
.add-btn:active {
  transform: translateY(1px);
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .75rem;
  align-items: center;
}
.qty-group {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .6rem;
  padding: .25rem;
}
.qty-btn {
  appearance: none;
  border: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: .4rem .55rem;
  border-radius: .5rem;
}
.qty-value {
  min-width: 2ch;
  text-align: center;
  font-weight: 600;
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(0,0,0,1.00) 0%,
      rgba(0,0,0,0.95) 25%,
      rgba(0,0,0,0.90) 40%,
      rgba(0,0,0,0.80) 55%,
      rgba(0,0,0,0.65) 70%,
      rgba(0,0,0,0.35) 85%,
      rgba(0,0,0,0.00) 100%),
    radial-gradient(800px 400px at 20% 10%, rgba(147,51,234,.20), transparent),
    radial-gradient(800px 400px at 80% 90%, rgba(34,211,238,.18), transparent);
}
.glass-nav {
  background: transparent;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-card {
  margin: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.glass-layers {
  position: relative;
  --lg-bg-color: transparent;
  --lg-highlight: rgba(255,255,255,.12);
}
.glass-filter {
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(0px);
  isolation: isolate;
}
.glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--lg-bg-color);
  border-radius: inherit;
}
.glass-specular {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  overflow: hidden;
  box-shadow:
    inset 1px 1px 0 var(--lg-highlight),
    inset 0 0 5px var(--lg-highlight);
}
.glass-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .55rem 1rem .5rem;
}
.glass-content--inline {
  padding: .25rem 1.25rem .25rem .75rem;
  flex: 1 1 auto;
  justify-content: space-between;
}
.poster-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 10px 30px rgba(168,85,247,.2);
}
.hero {
  position: relative;
  padding-top: 1rem;
}
.hero-center .center-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.center-img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: .25rem;
  display: block;
  border-radius: 1rem;
  border: none;
  box-shadow: none;
}
.chips-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  justify-items: center;
}
@media (min-width: 992px) {
  .info-list {
    grid-template-columns: 1fr;
  }
}
.info-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  color: rgba(255,255,255,.90);
}
.phone-number {
  font-size: 1.2rem;
  font-weight: 800;
}
.info-icon {
  font-size: 1.25rem;
  opacity: .9;
}
.info-text {
  font-family: 'BankGothic Lt BT', Inter, system-ui;
  font-weight: 700;
  letter-spacing: .4px;
}
.info-sep {
  color: rgba(255,255,255,.45);
  padding: 0 .25rem;
}

.btn-glass-wide {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: .9rem 2rem;
  font-weight: 700;
}

.glass-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.glass-chip .glass-filter {
  backdrop-filter: blur(6px);
}
.glass-chip .glass-overlay {
  background: rgba(255,255,255,.08);
}
.glass-chip .glass-content {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
}
.glass-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  overflow: hidden;
}
.glass-button .glass-content {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.6rem;
  color: #fff;
  font-weight: 700;
}
.btn-wide-3d .glass-content {
  padding: 1rem 2.25rem;
  min-width: 320px;
  justify-content: center;
}
@media (min-width: 992px) {
  .btn-wide-3d .glass-content {
    min-width: 380px;
  }
}
.btn-silver-3d .glass-overlay {
  background:
    linear-gradient(180deg, #ffffff 0%, #e5e7eb 40%, #cfd4da 60%, #9ca3af 100%);
}
.btn-silver-3d .glass-content {
  color: #0a0f1d;
}
.btn-silver-3d .btn-label {
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
.btn-silver-3d .glass-specular {
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.7),
    inset 0 8px 16px rgba(255,255,255,.35),
    inset 0 -8px 16px rgba(0,0,0,.25),
    0 16px 40px rgba(0,0,0,.45);
}
.btn-silver-3d:active .glass-specular {
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.6),
    inset 0 4px 10px rgba(255,255,255,.25),
    inset 0 -4px 10px rgba(0,0,0,.35),
    0 8px 24px rgba(0,0,0,.40);
}
.glass-button .glass-filter {
  backdrop-filter: blur(6px);
}
.glass-button .glass-overlay {
  background: rgba(255,255,255,.08);
}
.btn-transparent .glass-filter {
  backdrop-filter: none;
}
.btn-transparent .glass-overlay {
  background: transparent;
}
.btn-silver-flat .glass-filter {
  backdrop-filter: none;
}
.btn-silver-flat .glass-overlay {
  background:
    linear-gradient(180deg, #ffffff 0%, #e5e7eb 40%, #cfd4da 60%, #9ca3af 100%);
}
.btn-silver-flat .glass-specular {
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.7);
}
.btn-silver-flat .btn-label {
  color: #0a0f1d;
}
.btn-silver-flat .material-symbols-outlined {
  color: #0a0f1d;
}
.btn-silver-flat .glass-content {
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-silver-flat:hover .glass-content {
  transform: translateY(-1px);
}
.btn-silver-flat:hover .glass-overlay {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef0f2 40%, #d9dee3 60%, #aab0b7 100%);
}
.btn-silver-flat:hover .glass-specular {
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.8), 0 8px 24px rgba(0,0,0,.35);
}
.add-btn {
  backdrop-filter: blur(6px);
}
.qty-btn {
  backdrop-filter: blur(4px);
}
.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  color: rgba(255,255,255,.5);
}
.tickets-area {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .tickets-area {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.ticket-stub {
  display: grid;
  grid-template-columns: 1fr 220px;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  background-color: #0a0f1d;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ticket-stub:hover {
  transform: translateY(-4px);
  border-color: rgba(168,85,247,.45);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 10px 30px rgba(168,85,247,.18);
}
.ticket-bg-vip {
  background: url('assets/viback.png') center / cover no-repeat;
}
.ticket-bg-vip_crown {
  background: url('assets/vipcrownback.png') center / cover no-repeat;
}
.ticket-bg-diamond {
  background: url('assets/diamondback.png') center / cover no-repeat;
}
.ticket-bg-golden {
  background: url('assets/goldback.png') center / cover no-repeat;
}
.ticket-bg-silver {
  background: url('assets/silverback.png') center / cover no-repeat;
}
.ticket-stub::before,
.ticket-stub::after {
  content: "";
  position: absolute;
  right: calc(213px - 8px);
  width: 30px;
  height: 30px;
  background: #000;
  border: 1px solid rgba(255,255,255,.9);
  z-index: 3;
  border-radius: 50%;
}
.ticket-stub::before { top: -15px; }
.ticket-stub::after { bottom: -15px; }
.stub-left {
  padding: 1rem 1.25rem;
}
.stub-right {
  position: relative;
  border-left: 2px dashed rgba(255,255,255,.8);
  background-color: #000;
  padding: 1rem .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.ticket-name {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .3px;
}
.ticket-tier {
  display: inline-block;
  font-weight: 700;
  color: #c084fc;
}
.ticket-meta-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  margin-top: .5rem;
}
.stub-actions {
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.price-badge {
  font-weight: 700;
  color: #c084fc;
  font-size: 1.1rem;
}
.barcode {
  width: 90%;
  height: 52px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0px,
    rgba(255,255,255,.95) 2px,
    transparent 3px,
    transparent 6px
  );
  opacity: .65;
  border-radius: .25rem;
}
/* Modern ticket inner layout */
.tm-left {
  padding: 1.25rem 1.5rem;
}
.tm-title {
  font-family: 'BankGothic Lt BT', 'Bank Gothic', 'BankGothic', Inter, system-ui;
  font-weight: 700;
  letter-spacing: .8px;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  text-shadow: 0 3px 12px rgba(0,0,0,.85);
}
.tm-artist {
  margin: 0;
  padding: 0;
  font-size: clamp(0.84rem, 2.66vw, 1.96rem);
  font-weight: 700;
  letter-spacing: .8px;
}
.tm-side-artist {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .8px;
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  text-align: center;
}
.tm-cards {
  margin-top: .75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.tm-box {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border-radius: .75rem;
  padding: .6rem .8rem;
}
.tm-label {
  font-size: .75rem;
  letter-spacing: .5px;
  color: rgba(255,255,255,.7);
}
.tm-value {
  font-weight: 800;
  font-size: 1.15rem;
}
.tm-mini {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: .25rem;
}
.tm-bar {
  margin-top: .4rem;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  overflow: hidden;
}
.tm-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  border-radius: 999px;
}
.tm-tagline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  padding: .5rem .9rem;
  border-radius: .75rem;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  font-style: italic;
}
.tm-side-header {
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .8px;
  color: rgba(255,255,255,.85);
  text-align: center;
}
.tm-side-price {
  font-weight: 900;
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
}
.tm-add {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border-radius: .75rem;
  border: 1px solid rgba(0,0,0,.2);
  background: linear-gradient(180deg, #ffffff, #e9e9e9);
  color: #000;
  font-weight: 700;
  margin-top: auto;
  width: 100%;
}
.tm-add.in-cart {
  border: 1px solid rgba(0,0,0,.25);
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
}
.tm-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 .5rem;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  margin-left: .5rem;
}
.tm-add:disabled {
  opacity: .6;
  cursor: not-allowed;
}
/* Ticket card quantity controls - card style separated buttons */
.tm-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
.tm-qty-btn-modern {
  appearance: none;
  border: 1px solid rgba(0,0,0,.15);
  background: linear-gradient(180deg, #ffffff, #e9e9e9);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0;
  width: 42px;
  height: 42px;
  border-radius: .75rem;
  transition: all .15s;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.tm-qty-btn-modern .material-symbols-outlined {
  font-size: 22px;
  font-weight: 700;
}
.tm-qty-btn-modern:hover {
  background: linear-gradient(180deg, #f0f0f0, #ddd);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.tm-qty-btn-modern:active {
  transform: scale(.95);
}
.tm-qty-btn-modern:disabled {
  opacity: .3;
  cursor: not-allowed;
}
.tm-qty-value {
  min-width: 44px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: .75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
/* Mobile: stack date/day/time items */
@media (max-width: 576px) {
  .hero-name {
    white-space: nowrap;
    font-size: clamp(1.6rem, 8vw, 2.4rem);
    line-height: 1.05;
  }
  .text-6xl {
    font-size: 3rem !important;
  }
  .hero-center .center-wrap {
    max-width: 100%;
    padding: 0 1rem;
  }
  .center-img {
    max-width: 88vw;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container, .row, [class*="col-"], .hero-center .container {
    width: 100%;
    max-width: 100%;
    padding-left: .75rem;
    padding-right: .75rem;
  }
  #tickets.container {
    padding-left: .75rem;
    padding-right: .75rem;
  }
  .row.g-4 {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .row.g-4 > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  .tickets-area, .ticket-stub, .tm-left, .tm-cards {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .tickets-area {
    gap: .75rem;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  .info-list {
    justify-items: center;
    text-align: center;
  }
  .info-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
  }
  .info-list .info-sep {
    display: none;
  }

  #checkoutSummary .cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: .75rem;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
  }
  #checkoutSummary .cart-item .qty-group {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: .5rem;
    padding: .25rem .35rem;
    background: rgba(0,0,0,.25);
  }
  #checkoutSummary .cart-item .qty-btn {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: .4rem;
    background: rgba(255,255,255,.08);
  }
  #checkoutSummary .cart-item .qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
  }
  #checkoutSummary .cart-item .btn-outline-light {
    display: none;
  }
  #checkoutSummary .cart-item .fw-bold {
    text-align: right;
    font-weight: 800;
  }
  .checkout-totalbar {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: .75rem;
  }
  .checkout-form .form-glass {
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .checkout-form .form-label {
    font-size: 1rem;
    color: rgba(255,255,255,.88);
    margin-bottom: .4rem;
    font-weight: 600;
  }
  .checkout-form .form-control {
    height: 48px;
    line-height: 48px;
    padding: .5rem .75rem;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: .6rem;
  }
  .checkout-form .form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
  }
  #backToSummary {
    border-color: rgba(255,255,255,.18);
  }
}

@media (max-width: 576px) {
  .ticket-stub {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
  .ticket-stub::before,
  .ticket-stub::after {
    display: none;
  }
  .stub-right { display: none; }
  .tm-left {
    padding: .85rem;
    display: flex;
    flex-direction: column;
  }
  .tm-add {
    margin-top: 1rem;
  }
  .tm-qty-controls {
    margin-top: 1rem;
  }
  .tm-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cart-item {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: .5rem;
  }
}
.checkout-fixed-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: .9rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .02em;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  background: linear-gradient(180deg, #22c55e, #16a34a) !important;
  color: #fff !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -4px 30px rgba(0,0,0,.5);
}
.checkout-fixed-mobile .material-symbols-outlined {
  font-size: 22px;
}
.checkout-fixed-mobile-glass {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  height: 70px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.side-cart {
  position: sticky;
  top: 84px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem;
}
.btn-checkout-silver {
  appearance: none;
  border: 1px solid rgba(255,255,255,.7);
  background:
    linear-gradient(180deg, #ffffff 0%, #e5e7eb 40%, #cfd4da 60%, #9ca3af 100%);
  color: #0a0f1d;
  font-weight: 800;
  border-radius: .8rem;
  padding: .75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.8),
    inset 0 8px 16px rgba(255,255,255,.35),
    inset 0 -6px 12px rgba(0,0,0,.18),
    0 10px 24px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-checkout-silver:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.9),
    inset 0 10px 20px rgba(255,255,255,.40),
    inset 0 -8px 14px rgba(0,0,0,.20),
    0 16px 36px rgba(0,0,0,.40);
}
.btn-checkout-silver:active {
  transform: translateY(0);
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.75),
    inset 0 6px 12px rgba(255,255,255,.28),
    inset 0 -6px 12px rgba(0,0,0,.22),
    0 8px 20px rgba(0,0,0,.38);
}
.btn-checkout-silver .material-symbols-outlined {
  color: #0a0f1d;
}

.glass-modal {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 48px rgba(0,0,0,.45);
}

@media (min-width: 992px) {
  #checkoutModal .modal-dialog {
    max-width: 30%;
  }
  #backToSummary {
    display: none;
  }
  .checkout-form .form-control {
    height: 48px;
    line-height: 48px;
    padding: .5rem .75rem;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: .6rem;
  }
  .checkout-form .form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
  }
}
