.flash {
  position: fixed;
  top: 5.5rem;
  right: 1rem;
  z-index: 60;
  max-width: 24rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.flash-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.flash-error,
.flash-danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.flash-warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.flash-info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

#mobileNav.open {
  display: flex !important;
}

.cms-content {
  color: #374151;
  line-height: 1.75;
}

.cms-content h2,
.cms-content h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #2c1810;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.cms-content p {
  margin-bottom: 1rem;
}

.cms-content ul,
.cms-content ol {
  margin: 0 0 1rem 1.25rem;
}

.cms-content a {
  color: #8b7355;
  text-decoration: underline;
}

.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: rgba(44, 24, 16, 0.96);
  color: #fff;
  padding: 1rem;
}

.cookie-banner-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-text p {
  margin-top: 0.35rem;
  color: #d1d5db;
  font-size: 0.875rem;
}

.cookie-banner-text a {
  color: #d4af37;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.cookie-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.cookie-btn-primary {
  background: #d4af37;
  border: none;
  color: #2c1810;
}

.uploaded-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticket-checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ticket-checkout-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.ticket-summary-card,
.ticket-form-card,
.ticket-success-card {
  background: #f5f1e8;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.ticket-summary-price {
  font-family: ui-serif, Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #8b7355;
  margin: 0.5rem 0 1rem;
}

.ticket-summary-list {
  list-style: disc;
  margin-left: 1.25rem;
  color: #4b5563;
  line-height: 1.7;
}

.ticket-form .field {
  margin-bottom: 1rem;
}

.ticket-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.ticket-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font: inherit;
}

.ticket-input:focus {
  outline: none;
  border-color: #8b7355;
  box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.2);
}

.ticket-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid #d1d5db;
  margin: 1rem 0;
  font-size: 1.05rem;
}

.ticket-notice {
  margin-top: 1rem;
  padding: 0.875rem;
  background: #fff;
  border-radius: 0.5rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.ticket-success-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #d4af37;
  color: #2c1810;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.ticket-success-card {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

/* ===== Ticket flow (checkout, payment, success, cancel) ===== */

.ticket-flow {
  background: #faf8f4;
}

.ticket-flow-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #2c1810 0%, #4a3428 50%, #6b5344 100%);
}

.ticket-flow-hero--compact {
  min-height: 260px;
  align-items: center;
}

.ticket-flow-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: ticketHeroZoom 12s ease-out forwards;
}

.ticket-flow-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.92) 0%, rgba(44, 24, 16, 0.72) 45%, rgba(139, 115, 85, 0.55) 100%);
}

.ticket-flow-hero__overlay--warn {
  background: linear-gradient(135deg, rgba(68, 24, 16, 0.94) 0%, rgba(120, 53, 15, 0.78) 100%);
}

.ticket-flow-hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.5rem;
  color: #fff;
}

.ticket-flow-hero--compact .ticket-flow-hero__content {
  padding: 3.5rem 0;
}

.ticket-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 1.25rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ticket-back-link:hover {
  color: #d4af37;
  transform: translateX(-4px);
}

.ticket-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.75rem;
}

.ticket-flow-title {
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.ticket-flow-subtitle {
  max-width: 36rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
}

.ticket-flow-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.ticket-flow-meta__dot {
  opacity: 0.5;
}

.ticket-flow-body {
  padding: 2.5rem 0 4rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.ticket-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.08);
  flex-wrap: wrap;
}

.ticket-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 5.5rem;
}

.ticket-step__marker {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: #e8e2d6;
  color: #6b7280;
  transition: all 0.35s ease;
}

.ticket-step.is-active .ticket-step__marker {
  background: #8b7355;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.2);
  animation: ticketPulse 2s ease-in-out infinite;
}

.ticket-step.is-done .ticket-step__marker {
  background: #d4af37;
  color: #2c1810;
}

.ticket-step__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}

.ticket-step.is-active .ticket-step__label,
.ticket-step.is-done .ticket-step__label {
  color: #2c1810;
}

.ticket-step__line {
  flex: 1;
  min-width: 2rem;
  max-width: 4rem;
  height: 3px;
  background: #e8e2d6;
  border-radius: 9999px;
  margin: 0 0.5rem 1.25rem;
  transition: background 0.35s ease;
}

.ticket-step__line.is-done {
  background: linear-gradient(90deg, #d4af37, #8b7355);
}

.ticket-panel {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 16px 48px rgba(44, 24, 16, 0.08);
  border: 1px solid rgba(139, 115, 85, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(44, 24, 16, 0.12);
}

.ticket-panel__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 0.5rem;
}

.ticket-panel__subtitle {
  color: #6b7280;
  font-size: 0.9rem;
  margin: -0.5rem 0 1.25rem;
}

.ticket-panel__heading {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c1810;
  margin: 0 0 0.5rem;
}

.ticket-panel__lead {
  color: #6b7280;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.ticket-perks {
  display: grid;
  gap: 0.625rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(139, 115, 85, 0.25);
}

.ticket-perk {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.ticket-perk span:first-child {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f1e8;
  border-radius: 0.5rem;
}

.ticket-qty-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.ticket-qty-btn {
  width: 3rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #f5f1e8;
  color: #2c1810;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ticket-qty-btn:hover {
  background: #d4af37;
  transform: scale(1.05);
}

.ticket-qty-input {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.ticket-submit-btn {
  width: 100%;
  margin-top: 0.75rem;
  border: none;
  cursor: pointer;
  font: inherit;
}

.ticket-btn-primary,
a.ticket-btn-primary,
button.ticket-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border-radius: 0.625rem;
  border: none;
  background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
  color: #2c1810;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ticket-btn-primary:hover,
button.ticket-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.45);
  filter: brightness(1.05);
  color: #2c1810;
}

.ticket-panel--form {
  border-top: 4px solid #d4af37;
}

.ticket-panel--summary {
  border-top: 4px solid #8b7355;
}

.ticket-notice--wide {
  margin-top: 2rem;
  max-width: 100%;
}

/* Landing page /vstupenky */

.ticket-landing-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0f0a 0%, #2c1810 40%, #5c4a3a 100%);
  color: #fff;
}

.ticket-landing-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 50%, #d4af37 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #d4af37 1px, transparent 1px);
  background-size: 48px 48px;
}

.ticket-landing-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 0 3rem;
}

.ticket-landing-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ticket-landing-stat {
  min-width: 8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.875rem;
  backdrop-filter: blur(8px);
}

.ticket-landing-stat strong {
  display: block;
  font-family: ui-serif, Georgia, serif;
  font-size: 1.75rem;
  color: #d4af37;
  margin-bottom: 0.25rem;
}

.ticket-landing-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.ticket-landing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ticket-landing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ticket-landing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ticket-landing-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44, 24, 16, 0.1);
  border: 1px solid rgba(139, 115, 85, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ticket-landing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(44, 24, 16, 0.16);
}

.ticket-landing-card__media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}

.ticket-landing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ticket-landing-card:hover .ticket-landing-card__media img {
  transform: scale(1.06);
}

.ticket-landing-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b7355, #2c1810);
}

.ticket-landing-card__status {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: #d4af37;
  color: #2c1810;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ticket-landing-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ticket-landing-card__dates {
  font-size: 0.8rem;
  color: #8b7355;
  margin: 0 0 0.5rem;
}

.ticket-landing-card__title {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.ticket-landing-card__title a {
  color: #2c1810;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ticket-landing-card__title a:hover {
  color: #8b7355;
}

.ticket-landing-card__excerpt {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}

.ticket-landing-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee8dc;
}

.ticket-landing-card__price-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b7355;
}

.ticket-landing-card__price {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.5rem;
  color: #2c1810;
}

.ticket-landing-card__footer .ticket-btn-primary {
  width: auto;
  min-width: 7rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.ticket-landing-faq {
  margin-top: 3rem;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(139, 115, 85, 0.12);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.06);
}

.ticket-widget__cta {
  width: 100%;
  margin-bottom: 0.75rem;
}

.ticket-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .ticket-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ticket-trust-item {
  background: #fff;
  border-radius: 0.875rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(139, 115, 85, 0.1);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.05);
  transition: transform 0.25s ease;
}

.ticket-trust-item:hover {
  transform: translateY(-4px);
}

.ticket-trust-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.ticket-trust-item strong {
  display: block;
  color: #2c1810;
  margin-bottom: 0.35rem;
}

.ticket-trust-item span:last-child {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.ticket-reveal {
  animation: ticketFadeUp 0.65s ease both;
  animation-delay: var(--reveal-delay, 0ms);
}

.ticket-success-pop {
  animation: ticketSuccessPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ticket-success-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  background: #d4af37;
  color: #2c1810;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}

.ticket-cancel-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.ticket-mode-badge {
  display: inline-block;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #f5e6a8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ticket-result-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(44, 24, 16, 0.08);
  border: 1px solid rgba(139, 115, 85, 0.12);
  margin-bottom: 2rem;
}

.ticket-result-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  text-align: center;
  margin: 0 0 1.75rem;
}

.ticket-order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ticket-order-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ticket-order-stat {
  background: #f5f1e8;
  border-radius: 0.75rem;
  padding: 1rem 1.125rem;
}

.ticket-order-stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b7355;
  margin-bottom: 0.35rem;
}

.ticket-order-stat strong {
  color: #2c1810;
  font-size: 1rem;
  word-break: break-word;
}

.ticket-order-stat code {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.15rem 0.4rem;
  border-radius: 0.35rem;
}

.ticket-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .ticket-action-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ticket-action-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.875rem;
  border: 1px solid rgba(139, 115, 85, 0.12);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ticket-action-card:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 16px 36px rgba(44, 24, 16, 0.1);
}

.ticket-action-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.ticket-action-card strong {
  color: #2c1810;
}

.ticket-action-card span:last-child {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.5;
}

.ticket-flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.ticket-next-steps {
  margin-top: 1rem;
}

.ticket-help-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(139, 115, 85, 0.12);
}

.ticket-info-steps {
  display: grid;
  gap: 1.25rem;
  margin: 1.25rem 0 1.5rem;
}

.ticket-info-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ticket-info-step__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #8b7355;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.ticket-info-step strong {
  display: block;
  color: #2c1810;
  margin-bottom: 0.25rem;
}

.ticket-info-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.55;
}

.ticket-text-link {
  display: inline-flex;
  align-items: center;
  color: #8b7355;
  font-weight: 600;
  transition: color 0.2s ease;
}

.ticket-text-link:hover {
  color: #d4af37;
}

.ticket-text-link--inline {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.ticket-demo-hint {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.6;
}

.ticket-demo-hint code {
  background: #f5f1e8;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.ticket-checkout-grid--single {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .ticket-checkout-grid--single {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.ticket-widget {
  background: linear-gradient(145deg, #2c1810 0%, #4a3428 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 48px rgba(44, 24, 16, 0.25);
  position: relative;
  overflow: hidden;
}

.ticket-widget::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ticket-widget__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.ticket-widget__price {
  font-family: ui-serif, Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.ticket-widget__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.ticket-widget .btn-primary {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.ticket-widget__secondary {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ticket-widget__secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

@keyframes ticketFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ticketPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(139, 115, 85, 0.12);
  }
}

@keyframes ticketSuccessPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ticketHeroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .ticket-stepper {
    gap: 0.25rem;
  }

  .ticket-step__line {
    display: none;
  }

  .ticket-step {
    min-width: 4.5rem;
  }

  .ticket-step__label {
    font-size: 0.65rem;
  }
}

