@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;600;800&display=swap');

:root {
  --bg-color: #060606;
  /* Deepest black */
  --card-bg: rgba(18, 18, 18, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);
  --primary: #e63946;
  /* Vibrant Crimson Red */
  --primary-glow: rgba(230, 57, 70, 0.35);
  --secondary: #ff4d4d;
  --text-main: #ffffff;
  --text-sec: rgba(255, 255, 255, 0.55);
  --success: #00f5a0;
  --error: #e63946;
  --radius: 22px;
  --anim-speed: 0.5s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow Spots */
.glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s infinite alternate ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(-20%, -20%) scale(1);
  }

  100% {
    transform: translate(40%, 40%) scale(1.2);
  }
}

#app {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* Typography */
h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 40%, #e63946 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ticket Blocks with Notches */
.ticket-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 18px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

/* Side Notches */
.ticket-option::before,
.ticket-option::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: var(--bg-color);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.ticket-option::before {
  left: -11px;
}

.ticket-option::after {
  right: -11px;
}

.ticket-option:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.ticket-option.selected {
  background: rgba(230, 57, 70, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.15);
  transform: scale(1.03);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    border-color: var(--primary);
  }

  50% {
    border-color: rgba(230, 57, 70, 0.4);
  }

  100% {
    border-color: var(--primary);
  }
}

.t-icon {
  font-size: 28px;
  margin-right: 15px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
}

.t-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.8px;
  color: #fff;
  line-height: 1.2;
}

.t-per-person {
  display: block;
  font-size: 11px;
  color: var(--text-sec);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.2px;
}

.t-price {
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  white-space: nowrap;
  /* Prevent symbol wrapping */
  margin-left: 10px;
}

/* Badge 'Best Value' */
.badge-popular {
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px var(--primary-glow);
  z-index: 5;
}

/* Input Fields */
input[type="text"] {
  width: 100%;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

input[type="text"]:focus {
  border-color: var(--primary);
  background: rgba(163, 108, 252, 0.05);
  box-shadow: 0 0 10px var(--primary-glow);
}


.picker-field {
  margin-bottom: 16px;
  position: relative;
}

.picker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.picker-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.95), rgba(255, 125, 125, 0.7));
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.28);
}

.picker-trigger {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.88);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  appearance: none;
  -webkit-appearance: none;
}

.picker-trigger-text {
  display: block;
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.picker-trigger.muted {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.picker-trigger.active,
.picker-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 57, 70, 0.45);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.12) inset, 0 14px 30px rgba(230, 57, 70, 0.12);
  background:
    linear-gradient(180deg, rgba(230, 57, 70, 0.11), rgba(230, 57, 70, 0.05)),
    rgba(13, 13, 13, 0.94);
}

.picker-trigger-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.picker-trigger.active .picker-trigger-icon {
  transform: rotate(180deg);
  background: rgba(230, 57, 70, 0.16);
}

.picker-panel {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(10, 10, 10, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.picker-panel.open {
  display: block;
  animation: reveal 0.25s ease;
}

.picker-search {
  width: 100%;
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: #fff;
  font-size: 14px;
  outline: none;
  margin-bottom: 12px;
}

.picker-search:focus {
  border-color: rgba(230, 57, 70, 0.45);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.1) inset;
}

.picker-options {
  display: grid;
  gap: 9px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 3px;
}

.picker-options-list {
  grid-template-columns: 1fr;
}

.picker-options-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.picker-option {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  align-items: center;
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
}

.picker-option:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.picker-option.active {
  background: linear-gradient(180deg, rgba(230, 57, 70, 0.18), rgba(230, 57, 70, 0.09));
  border-color: rgba(230, 57, 70, 0.55);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.2) inset;
}

.picker-custom-input {
  margin-top: 12px;
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--glass-border);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}

.upload-area:hover {
  border-color: var(--primary);
  background: rgba(163, 108, 252, 0.05);
}

.upload-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

#fileInput {
  display: none;
}

.upload-text {
  color: var(--text-sec);
  font-size: 14px;
  font-weight: 500;
}

#previewImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 10;
}

/* Payment Info */
.pay-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.copy-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 14px;
  font-family: 'Outfit', monospace;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  transition: all 0.2s ease;
}

.copy-box:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.1);
}

/* Animations */
.section {
  display: none;
}

.section.active {
  display: block;
  animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.guest-transition {
  animation: guest-reveal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.guest-transition {
  animation: reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Nav Tabs for Admin */
.nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.nav-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-sec);
}

.nav-tab.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* Admin Specific */
.ticket-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.btn-edit,
.btn-revoke,
.btn-send,
.btn-confirm {
  border: none !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-confirm {
  background: rgba(255, 213, 79, 0.18) !important;
  color: #ffd54f !important;
}

.btn-confirm:disabled {
  opacity: 0.7;
  cursor: progress;
}

.btn-edit {
  background: rgba(78, 168, 222, 0.2) !important;
  color: var(--secondary) !important;
}

.btn-revoke {
  background: rgba(255, 77, 77, 0.15) !important;
  color: var(--error) !important;
}

.btn-send {
  background: rgba(120, 217, 149, 0.2) !important;
  color: #78d995 !important;
}

.btn-edit:hover,
.btn-revoke:hover,
.btn-send:hover,
.btn-confirm:hover {
  transform: translateY(-1px);
  filter: brightness(1.2);
}

.ticket-select {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.order-summary {
  position: sticky;
  top: 10px;
  z-index: 20;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.order-summary-kicker {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.order-summary-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.order-summary-title {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.order-summary-meta {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.4;
}

.order-summary-price {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.order-summary-reference {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 214, 217, 0.92);
  font-size: 12px;
  line-height: 1.45;
}

.ws-notice {
  margin: -10px 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(230, 57, 70, 0.09);
  border: 1px solid rgba(230, 57, 70, 0.22);
  color: #ffd8db;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .order-summary {
    top: 6px;
    padding: 13px 14px;
  }

  .order-summary-main {
    align-items: center;
  }

  .order-summary-title {
    font-size: 15px;
  }

  .order-summary-price {
    font-size: 16px;
  }
}


.admin-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.admin-rail-card {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 12, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.admin-rail-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  opacity: 0.9;
}

.admin-rail-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.admin-rail-card--neutral::after {
  background: rgba(255, 255, 255, 0.16);
}

.admin-rail-card--warning::after {
  background: linear-gradient(90deg, rgba(255, 209, 102, 0.55), #ffd166);
}

.admin-rail-card--error::after {
  background: linear-gradient(90deg, rgba(255, 77, 77, 0.5), #ff4d4d);
}

.admin-rail-card--success::after {
  background: linear-gradient(90deg, rgba(0, 245, 160, 0.45), #00f5a0);
}

.admin-rail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.admin-rail-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.admin-rail-value {
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.admin-rail-meta {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.admin-rail-action {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-rail-action:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diag-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.86);
}

.diag-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.diag-card-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.diag-card-subtitle {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.4;
}

.diag-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.diag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.diag-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.95;
}

.diag-chip--success {
  color: #8cffc5;
  background: rgba(0, 245, 160, 0.09);
}

.diag-chip--warning {
  color: #ffe08a;
  background: rgba(255, 209, 102, 0.11);
}

.diag-chip--error {
  color: #ffb0b0;
  background: rgba(255, 77, 77, 0.1);
}

.diag-chip--neutral {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
}

.diag-list {
  display: grid;
  gap: 10px;
}

.diag-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.diag-label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 600;
}

.diag-value {
  color: #fff;
  font-size: 12px;
  text-align: right;
  line-height: 1.45;
  max-width: 62%;
  word-break: break-word;
}

.diag-note {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
}

.diag-note--error {
  color: #ffd8db;
  background: rgba(230, 57, 70, 0.09);
  border-color: rgba(230, 57, 70, 0.22);
}

.diag-note--warning {
  color: #ffe4a6;
  background: rgba(255, 209, 102, 0.08);
  border-color: rgba(255, 209, 102, 0.18);
}

@media (max-width: 640px) {
  .admin-rail,
  .diagnostics-grid {
    grid-template-columns: 1fr;
  }

  .admin-rail-card,
  .diag-card {
    padding: 15px 14px;
  }

  .admin-rail-value {
    font-size: 24px;
  }

  .diag-row {
    flex-direction: column;
  }

  .diag-value {
    max-width: 100%;
    text-align: left;
  }
}


.admin-filter-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.75) 50%), linear-gradient(135deg, rgba(255,255,255,0.75) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px !important;
}

.admin-filter-select option {
  background: #151515;
  color: #ffffff;
}


.quote-lock {
  margin: 8px 0 14px;
  padding: 12px 13px;
  border-radius: 16px;
  border: 1px solid rgba(0, 245, 160, 0.18);
  background: rgba(0, 245, 160, 0.07);
  color: #dfffee;
}

.quote-lock-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.quote-lock-details {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.quote-lock--expired {
  border-color: rgba(230, 57, 70, 0.28);
  background: rgba(230, 57, 70, 0.09);
  color: #ffd8db;
}

.quote-lock-refresh {
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.ticket-option.loading {
  opacity: 0.72;
  pointer-events: none;
}
