/**
 * Event V2 Modal Styles
 * Mobile-first design for the redesigned checkout modal
 */
body.modal-open-v2 {
  overflow: hidden; }

.modal-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050; }
  .modal-v2 .modal-overlay-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.5); }
  .modal-v2 .modal-dialog-v2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    margin: 0;
    max-width: none; }
    @media (min-width: 768px) {
      .modal-v2 .modal-dialog-v2 {
        align-items: center;
        padding: 2rem; } }
.modal-content-v2 {
  background: #ffffff;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  border-radius: 24px 24px 0 0;
  overflow: hidden; }
  .modal-content-v2.step-fade-in {
    animation: stepFadeIn 0.2s ease-out both; }
  @media (min-width: 768px) {
    .modal-content-v2 {
      max-width: 520px;
      height: auto;
      min-height: 400px;
      max-height: min(90vh, 800px);
      border-radius: 24px; } }
  @media (min-width: 768px) and (max-height: 700px) {
    .modal-content-v2 {
      max-height: 100vh;
      max-height: 100dvh; } }

.modal-dialog-v2.modal-opening .modal-content-v2 {
  animation: slideUp 0.3s ease-out; }
  @media (min-width: 768px) {
    .modal-dialog-v2.modal-opening .modal-content-v2 {
      animation: scaleFadeIn 0.2s ease-out; } }

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0; }
  to {
    transform: translateY(0);
    opacity: 1; } }

@keyframes scaleFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95); }
  to {
    opacity: 1;
    transform: scale(1); } }

@keyframes stepFadeIn {
  from { opacity: 0; }
  to { opacity: 1; } }

.step-skeleton .skel-block {
  background: #e5e7eb;
  position: relative;
  overflow: hidden; }
  .step-skeleton .skel-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    animation: shimmer 1.2s ease-in-out infinite; }

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); } }

.modal-header-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0; }
  .modal-header-v2 .modal-header-left,
  .modal-header-v2 .modal-header-right {
    width: 100px; }
  .modal-header-v2 .modal-header-left {
    text-align: left; }
  .modal-header-v2 .modal-header-right {
    text-align: right; }
  .modal-header-v2 .modal-header-center {
    flex: 1;
    display: flex;
    justify-content: center; }
  .modal-header-v2 .close-btn,
  .modal-header-v2 .back-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #6b7280;
    transition: color 150ms ease;
    border-radius: 6px;
    outline: none;
    -webkit-tap-highlight-color: transparent; }
    .modal-header-v2 .close-btn:hover,
    .modal-header-v2 .back-btn:hover {
      color: #1f2937;
      background: #f3f4f6; }
    .modal-header-v2 .close-btn:focus,
    .modal-header-v2 .back-btn:focus {
      outline: none;
      box-shadow: none; }
  .modal-header-v2 .code-toggle-btn {
    background: none;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 150ms ease;
    display: flex;
    align-items: center;
    gap: 6px; }
    .modal-header-v2 .code-toggle-btn .code-icon {
      font-size: 14px; }
    .modal-header-v2 .code-toggle-btn:hover {
      border-color: currentColor; }
    .modal-header-v2 .code-toggle-btn.active {
      background: #f9fafb;
      border-color: #6366f1;
      color: #6366f1; }

.step-indicator {
  display: flex;
  align-items: center;
  gap: 4px; }
  .step-indicator .step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    background: #f9fafb;
    color: #9ca3af;
    transition: all 150ms ease; }
    .step-indicator .step.active {
      background: #6366f1;
      color: #ffffff; }
    .step-indicator .step.completed {
      background: #10b981;
      color: #ffffff; }
    .step-indicator .step svg {
      width: 12px;
      height: 12px;
      display: block;
      flex-shrink: 0;
      margin: 0; }
  .step-indicator .step-line {
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    transition: background 150ms ease; }
    .step-indicator .step-line.completed {
      background: #10b981; }

.code-entry-v2 {
  padding: 10px 20px 3px;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6; }
  .code-entry-v2 .code-entry-inner {
    display: flex;
    gap: 8px; }
  .code-entry-v2 .code-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    transition: border-color 150ms ease; }
    .code-entry-v2 .code-input:focus {
      outline: none;
      border-color: #6366f1; }
  .code-entry-v2 .code-apply-btn {
    padding: 12px 20px;
    background: #6366f1;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 150ms ease; }
    .code-entry-v2 .code-apply-btn:hover {
      opacity: 0.9; }
    .code-entry-v2 .code-apply-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed; }
  .code-entry-v2 .code-message {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 5px;
    font-size: 13px; }
    .code-entry-v2 .code-message.success {
      color: #10b981; }
    .code-entry-v2 .code-message.error {
      color: #ef4444; }

.modal-body-v2 {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
  min-height: 0; }
  .modal-body-v2::-webkit-scrollbar {
    width: 6px; }
  .modal-body-v2::-webkit-scrollbar-track {
    background: transparent; }
  .modal-body-v2::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px; }

.event-info-card-v2 {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 20px; }
  .event-info-card-v2 .event-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden; }
    .event-info-card-v2 .event-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .event-info-card-v2 .event-details {
    flex: 1;
    min-width: 0; }
  .event-info-card-v2 .event-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .event-info-card-v2 .event-age-badge {
    flex-shrink: 0;
    align-self: center;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 6px 10px;
    line-height: 1; }
  .event-info-card-v2 .event-datetime,
  .event-info-card-v2 .event-venue {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px; }
    .event-info-card-v2 .event-datetime svg,
    .event-info-card-v2 .event-venue svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: #9ca3af;
      margin-right: 0; }

.section-title {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px; }

.ticket-cards-v2 {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.ticket-card-v2 {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 150ms ease; }
  .ticket-card-v2.expanded {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); }
  .ticket-card-v2.sold-out {
    opacity: 0.6; }
    .ticket-card-v2.sold-out .ticket-card-header {
      cursor: default; }
  .ticket-card-v2 .ticket-card-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    gap: 12px;
    transition: background 150ms ease; }
    .ticket-card-v2 .ticket-card-header:hover:not(.sold-out .ticket-card-v2 .ticket-card-header) {
      background: #f9fafb; }
  .ticket-card-v2 .ticket-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6b7280; }
  .ticket-card-v2 .ticket-card-info {
    flex: 1;
    min-width: 0; }
  .ticket-card-v2 .ticket-card-name-row {
    display: flex;
    align-items: center;
    gap: 8px; }
  .ticket-card-v2 .ticket-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0; }
  .ticket-card-v2 .tier-qty-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #6366f1;
    color: white;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0; }
  .ticket-card-v2 .ticket-release-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 4px;
    text-transform: uppercase; }
  .ticket-card-v2 .ticket-status-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 4px; }
    .ticket-card-v2 .ticket-status-badge.sold-out {
      background: #fee2e2;
      color: #dc2626; }
    .ticket-card-v2 .ticket-status-badge.restricted {
      background: #f9fafb;
      color: #9ca3af; }
    .ticket-card-v2 .ticket-status-badge.unlocked {
      background: #d1fae5;
      color: #059669; }
    .ticket-card-v2 .ticket-status-badge.waitlist {
      background: #fef3c7;
      color: #d97706; }
    .ticket-card-v2 .ticket-status-badge.limited {
      background: #fef3c7;
      color: #d97706; }
    .ticket-card-v2 .ticket-status-badge.very-limited {
      background: #df47591a;
      color: #DF4759; }
  .ticket-card-v2 .ticket-card-price {
    text-align: right;
    flex-shrink: 0; }
    .ticket-card-v2 .ticket-card-price .price-amount {
      font-size: 13px;
      font-weight: 700;
      color: #1f2937; }
      .ticket-card-v2 .ticket-card-price .price-amount.free {
        color: #10b981; }
    .ticket-card-v2 .ticket-card-price .price-original {
      font-size: 12px;
      color: #9ca3af;
      text-decoration: line-through; }
    .ticket-card-v2 .ticket-card-price .price-discounted {
      font-size: 16px;
      font-weight: 700;
      color: #10b981; }
  .ticket-card-v2 .ticket-card-expand-icon {
    color: #9ca3af;
    transition: transform 150ms ease; }
  .ticket-card-v2.expanded .ticket-card-expand-icon {
    transform: rotate(180deg); }
  .ticket-card-v2 .ticket-card-body {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid #f3f4f6;
    margin-top: -1px; }
  .ticket-card-v2.expanded .ticket-card-body {
    display: block; }
  .ticket-card-v2 .ticket-card-description {
    font-size: 13px;
    color: #6b7280;
    margin: 12px 0px -5px 0px;
    line-height: 1.5; }
    .ticket-card-v2 .ticket-card-description p {
      margin: 0; }

.quantity-selector-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 5px; }
  .quantity-selector-v2 .qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 150ms ease;
    color: #1f2937;
    padding: 0; }
    .quantity-selector-v2 .qty-btn svg {
      display: block;
      width: 20px;
      height: 20px;
      margin: 0; }
    .quantity-selector-v2 .qty-btn:hover:not(:disabled) {
      border-color: #f59794;
      background: #f59794;
      color: #ffffff; }
    .quantity-selector-v2 .qty-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed; }
  .quantity-selector-v2 .qty-value {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    min-width: 40px;
    text-align: center; }

.modal-footer-v2 {
  padding: 16px;
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
  flex-shrink: 0;
  flex-grow: 0;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  position: relative;
  z-index: 10; }
  .modal-footer-v2 .order-summary-mini {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px; }
    .modal-footer-v2 .order-summary-mini .summary-tickets {
      color: #6b7280; }
    .modal-footer-v2 .order-summary-mini .summary-total {
      font-weight: 700;
      color: #1f2937; }

.checkout-btn-v2 {
  width: 100%;
  padding: 16px 24px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 150ms ease; }
  .checkout-btn-v2:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px); }
  .checkout-btn-v2:disabled {
    background: #e5e7eb;
    color: #ffffff;
    cursor: not-allowed;
    transform: none;
    opacity: 0.3; }
  .checkout-btn-v2.ticketing-closed {
    font-size: 14px;
    opacity: 0.6; }
  .checkout-btn-v2 .btn-spinner {
    animation: spin 1s linear infinite; }

.ticket-cards-v2.ticketing-closed .ticket-card-v2:not(.captain) {
  opacity: 0.6;
  pointer-events: none; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.step-title-v2 {
  text-align: center;
  margin-bottom: 24px; }
  .step-title-v2 h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px; }
  .step-title-v2 p {
    font-size: 14px;
    color: #6b7280;
    margin: 0; }

.user-info-form-v2 .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0px 10px; }
  @media (max-width: 400px) {
    .user-info-form-v2 .form-row {
      grid-template-columns: 1fr 1fr;
      display: grid;
      margin-bottom: -10px; } }
.user-info-form-v2 .form-group-v2 {
  margin-bottom: 16px; }
  .user-info-form-v2 .form-group-v2 label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px; }
  .user-info-form-v2 .form-group-v2 .form-input-v2 {
    width: 100%;
    padding: 9px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 150ms ease; }
    .user-info-form-v2 .form-group-v2 .form-input-v2:focus {
      outline: none;
      border-color: #6366f1; }
    .user-info-form-v2 .form-group-v2 .form-input-v2.error {
      border-color: #ef4444; }
  .user-info-form-v2 .form-group-v2 .form-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px; }
  .user-info-form-v2 .form-group-v2 .form-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px; }

/* International Phone Input Styles */
.phone-input-wrapper {
  width: 100%; }

.phone-input-wrapper .iti {
  width: 100%; }

.phone-input-wrapper .iti__flag-container {
  padding: 0; }

.phone-input-wrapper .iti__selected-flag {
  padding: 0 6px 0 10px;
  background: transparent;
  border-radius: 11px 0px 0px 11px;
  height: 100%; }

.phone-input-wrapper .iti__selected-flag:hover,
.phone-input-wrapper .iti__selected-flag:focus {
  background: transparent !important; }

.phone-input-wrapper .iti__selected-dial-code {
  font-size: 14px;
  color: #374151;
  padding-left: 2px; }

.phone-input-wrapper .iti__arrow {
  border-top-color: #6b7280;
  margin-left: 6px; }

.phone-input-wrapper .iti input {
  width: 100%;
  padding: 14px 16px 14px 80px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 150ms ease; }

.phone-input-wrapper .iti input:focus {
  outline: none;
  border-color: #6366f1; }

.phone-input-wrapper .iti input.error {
  border-color: #ef4444; }

/* Country dropdown styles - Grid of flags only */
.iti__dropdown-content {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 1px solid #e5e7eb;
  background: white;
  overflow: hidden;
  max-width: 280px; }

/* Search input styling */
.iti__search-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  margin: 12px;
  width: calc(100% - 24px); }

.iti__search-input:focus {
  border-color: #6366f1; }

.iti__search-input::placeholder {
  color: #9ca3af; }

/* Country list as grid of flags */
.iti__country-list {
  max-height: 200px;
  overflow-y: auto;
  margin: 0;
  padding: 8px 12px 12px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }

.iti__country {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  cursor: pointer;
  transition: background 150ms ease;
  border-radius: 8px;
  width: auto;
  min-width: 50px; }

.iti__country:hover {
  background: #f3f4f6; }

.iti__country.iti__highlight {
  background: #eff6ff; }

.iti__country.iti__active {
  background: #e0e7ff; }

.iti__flag-box {
  margin-right: 0; }

/* Hide country name and show only dial code */
.iti__country-name {
  display: none; }

.iti__dial-code {
  font-size: 12px;
  color: #6b7280;
  margin-left: 4px; }

/* Preferred countries separator */
.iti__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 8px 0;
  flex-basis: 100%; }

.legal-text-v2 {
  margin-top: 10px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px; }
  .legal-text-v2 p {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0; }
    .legal-text-v2 p a {
      color: #6b7280;
      text-decoration: underline; }

.otp-body {
  text-align: center; }
  .otp-body .otp-icon {
    margin-bottom: 16px;
    color: #6366f1; }
    .otp-body .otp-icon svg {
      width: 64px;
      height: 64px; }
  .otp-body .masked-phone {
    font-weight: 600;
    color: #1f2937; }

.otp-input-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 24px 0; }
  .otp-input-group .otp-digit {
    width: 56px;
    height: 64px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    transition: border-color 150ms ease; }
    .otp-input-group .otp-digit:focus {
      outline: none;
      border-color: #6366f1; }
    .otp-input-group .otp-digit.filled {
      border-color: #1f2937; }
    .otp-input-group .otp-digit.error {
      border-color: #ef4444;
      animation: shake 0.4s ease; }

@keyframes shake {
  0%, 100% {
    transform: translateX(0); }
  25% {
    transform: translateX(-8px); }
  75% {
    transform: translateX(8px); } }

.otp-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ef4444;
  font-size: 13px;
  margin-bottom: 16px; }

.otp-resend {
  margin-top: 20px; }
  .otp-resend .resend-btn {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer; }
    .otp-resend .resend-btn:disabled {
      color: #9ca3af;
      cursor: default; }

.otp-skip {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6; }
  .otp-skip p {
    font-size: 13px;
    color: #6b7280;
    margin: 0; }
  .otp-skip .skip-link {
    background: none;
    border: none;
    color: #6366f1;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline; }
  .otp-skip .skip-warning {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px; }

/* Confirm Details Step (when verify_sms is disabled) */
.confirm-body {
  text-align: center; }
  .confirm-body .confirm-icon {
    margin-bottom: 16px;
    color: #6366f1; }
    .confirm-body .confirm-icon svg {
      width: 64px;
      height: 64px; }

.confirm-details-card {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0 16px;
  text-align: left; }

.confirm-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0; }
  .confirm-detail-row + .confirm-detail-row {
    border-top: 1px solid #e5e7eb; }

.confirm-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500; }

.confirm-value {
  font-size: 14px;
  color: #1f2937;
  font-weight: 600; }

.edit-info-link {
  background: none;
  border: none;
  color: #6366f1;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline; }

.payment-body {
  padding-bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.order-summary-card-v2 {
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px; }
  .order-summary-card-v2 .summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; }
    .order-summary-card-v2 .summary-header .summary-header-left {
      display: flex;
      align-items: center;
      gap: 12px; }
      .order-summary-card-v2 .summary-header .summary-header-left h4 {
        font-size: 14px;
        font-weight: 600;
        color: #1f2937;
        margin: 0; }
      .order-summary-card-v2 .summary-header .summary-header-left .summary-total-preview {
        font-size: 14px;
        font-weight: 600;
        color: #1f2937; }
    .order-summary-card-v2 .summary-header .summary-header-right {
      display: flex;
      align-items: center;
      gap: 8px; }
      .order-summary-card-v2 .summary-header .summary-header-right .edit-order-btn {
        background: none;
        border: none;
        color: #6366f1;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        padding: 4px 8px; }
      .order-summary-card-v2 .summary-header .summary-header-right .expand-icon {
        color: #6b7280;
        transition: transform 0.2s ease; }
  .order-summary-card-v2 .summary-details {
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.2s ease;
    margin-top: 12px;
    opacity: 1; }
  .order-summary-card-v2.collapsed .summary-details {
    max-height: 0;
    margin-top: 0;
    opacity: 0; }
  .order-summary-card-v2.collapsed .expand-icon {
    transform: rotate(-90deg); }
  .order-summary-card-v2.collapsed .summary-total-preview {
    display: inline; }
  .order-summary-card-v2:not(.collapsed) .summary-total-preview {
    display: none; }
  .order-summary-card-v2 .summary-items {
    margin-bottom: 12px; }
  .order-summary-card-v2 .summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0; }
    .order-summary-card-v2 .summary-item .item-name {
      color: #6b7280; }
    .order-summary-card-v2 .summary-item .item-price {
      color: #1f2937;
      font-weight: 500; }
  .order-summary-card-v2 .summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 12px 0; }
  .order-summary-card-v2 .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0; }
    .order-summary-card-v2 .summary-row .summary-label {
      color: #6b7280; }
    .order-summary-card-v2 .summary-row .summary-value {
      color: #1f2937;
      font-weight: 500; }
      .order-summary-card-v2 .summary-row .summary-value.discount {
        color: #10b981; }
    .order-summary-card-v2 .summary-row.total {
      font-size: 16px; }
      .order-summary-card-v2 .summary-row.total .summary-label,
      .order-summary-card-v2 .summary-row.total .summary-value {
        font-weight: 700;
        color: #1f2937; }
  .order-summary-card-v2 .summary-coupon {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb; }
    .order-summary-card-v2 .summary-coupon .coupon-toggle-btn {
      background: none;
      border: none;
      color: #6366f1;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 0; }
    .order-summary-card-v2 .summary-coupon .coupon-input-row {
      display: flex;
      gap: 8px;
      margin-top: 8px; }
    .order-summary-card-v2 .summary-coupon .coupon-input-small {
      flex: 1;
      padding: 8px 12px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 13px; }
    .order-summary-card-v2 .summary-coupon .coupon-apply-small {
      padding: 8px 16px;
      background: #1f2937;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer; }
  .order-summary-card-v2 .applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 8px 12px;
    background: #dcfce7;
    border-radius: 8px; }
    .order-summary-card-v2 .applied-coupon .coupon-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #166534;
      font-size: 13px;
      font-weight: 600; }
    .order-summary-card-v2 .applied-coupon .remove-coupon-btn {
      background: none;
      border: none;
      color: #166534;
      cursor: pointer;
      padding: 4px; }

.payment-form-v2 {
  margin-top: 20px;
  padding-bottom: 20px; }
  .payment-form-v2 .evervault-payment-container {
    min-height: auto; }
  .payment-form-v2 #evervault-card-form {
    min-height: auto; }

.payment-footer .mobile-total-v2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px; }
  .payment-footer .mobile-total-v2 .mobile-total-label {
    font-size: 14px;
    color: #6b7280; }
  .payment-footer .mobile-total-v2 .mobile-total-amount {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937; }
  @media (min-width: 768px) {
    .payment-footer .mobile-total-v2 {
      display: none; } }
.payment-footer .pay-btn .btn-text {
  display: flex;
  align-items: center;
  gap: 4px; }

.payment-footer .secure-payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: #9ca3af; }

.done-body {
  text-align: center; }
  .done-body .success-icon {
    margin-bottom: 16px;
    color: #10b981; }
    .done-body .success-icon svg {
      width: 80px;
      height: 80px; }
  .done-body .done-title .order-number {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 8px; }
  .done-body .confirmation-message {
    margin: 24px 0; }
    .done-body .confirmation-message p {
      font-size: 14px;
      color: #6b7280;
      margin: 0; }
    .done-body .confirmation-message .confirmation-email,
    .done-body .confirmation-message .confirmation-phone {
      font-weight: 600;
      color: #1f2937; }
  .done-body .share-section {
    margin: 24px 0;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px; }
    .done-body .share-section p {
      font-size: 13px;
      color: #6b7280;
      margin: 0 0 12px; }
    .done-body .share-section .share-link-box {
      display: flex;
      gap: 8px; }
      .done-body .share-section .share-link-box .share-link-input {
        flex: 1;
        padding: 10px 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        font-size: 12px;
        background: #ffffff; }
      .done-body .share-section .share-link-box .copy-link-btn {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 10px 16px;
        background: #1f2937;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer; }
  .done-body .event-recap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
    margin-top: 20px; }
    .done-body .event-recap .recap-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280; }
    .done-body .event-recap .recap-details {
      flex: 1; }
      .done-body .event-recap .recap-details .recap-title {
        font-size: 14px;
        font-weight: 600;
        color: #1f2937;
        margin: 0 0 4px; }
      .done-body .event-recap .recap-details .recap-datetime,
      .done-body .event-recap .recap-details .recap-venue {
        font-size: 12px;
        color: #6b7280;
        margin: 0; }

.done-footer .download-btn-v2 {
  width: 100%;
  padding: 16px 24px;
  background: #10b981;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 150ms ease; }
  .done-footer .download-btn-v2:hover {
    background: #0ea271;
    color: #ffffff; }

.done-footer .account-link-v2 {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280; }
  .done-footer .account-link-v2:hover {
    color: #6366f1; }

.event-message-v2 {
  padding: 12px 16px;
  background: #fef3c7;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #92400e; }
  .event-message-v2 p {
    margin: 0; }
  .event-message-v2 h6 {
    font-size: 11px;
    margin-bottom: 0px; }

.content-guestlist .content-ticketed {
  display: none; }

.content-guestlist {
  display: none; }
  .is-guestlist .content-guestlist {
    display: block; }

.loading {
  opacity: 0.6;
  pointer-events: none; }

.loading-toast-v2 {
  position: absolute;
  bottom: 100px;
  right: 20px;
  z-index: 1100;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  min-width: 200px; }
  .loading-toast-v2 .loading-toast-content {
    display: flex;
    align-items: center;
    gap: 12px; }
  .loading-toast-v2 .loading-spinner-v2 {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top-color: #6366f1;
    border-radius: 50%;
    animation: spin-v2 0.8s linear infinite; }
  .loading-toast-v2 .loading-toast-text {
    display: flex;
    flex-direction: column;
    gap: 2px; }
  .loading-toast-v2 .loading-message-v2 {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937; }
  .loading-toast-v2 .loading-timer-v2 {
    font-size: 12px;
    color: #6b7280; }
    .loading-toast-v2 .loading-timer-v2:empty {
      display: none; }

@keyframes spin-v2 {
  to {
    transform: rotate(360deg); } }

.checkout-timer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #FEF3C7;
  color: #92400E;
  font-size: 14px;
  font-weight: 500; }
  .checkout-timer-bar svg {
    flex-shrink: 0; }
  .checkout-timer-bar .timer-value {
    font-weight: 600;
    font-variant-numeric: tabular-nums; }
  .checkout-timer-bar.warning {
    background: #FEE2E2;
    color: #DC2626; }

/* Countdown Timer V2 (Modal/Embed) */
.countdown-section-v2 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center; }

.countdown-title {
  font-size: 16px;
  font-weight: 600;
  color: #0369a1;
  margin: 0 0 8px 0; }

.countdown-label {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 12px 0; }

.countdown-timer-v2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; }

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px; }

.countdown-value {
  font-size: 28px;
  font-weight: 700;
  color: #0c4a6e;
  font-variant-numeric: tabular-nums;
  line-height: 1; }

.countdown-unit-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 4px; }

.countdown-sep {
  font-size: 24px;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 16px; }

.countdown-note {
  font-size: 12px;
  color: #0284c7;
  margin: 12px 0 0 0;
  background: #e0f2fe;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block; }

/* Waitlist Capture */
.waitlist-capture {
  text-align: center; }

.waitlist-heading {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 16px;
  color: #1f2937; }

.waitlist-mode-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-bottom: -20px; }

.waitlist-mode-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: none;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  padding: 0; }
  .waitlist-mode-btn:hover { color: #6b7280; }
  .waitlist-mode-btn.active { color: #1f2937; }

.waitlist-mode-label {
  text-align: left;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
  font-weight: 500; }

.waitlist-input-row {
  display: flex;
  align-items: stretch;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s; }
  .waitlist-input-row:focus-within {
    border-color: #6366f1; }

.waitlist-phone-wrapper {
  flex: 1;
  min-width: 0; }
  .waitlist-phone-wrapper .iti { width: 100%; margin-top:5px; }
  .waitlist-phone-wrapper .iti input {
    width: 100%;
    padding: 14px 16px 14px 80px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    background: transparent; }
  .waitlist-phone-wrapper .iti__selected-flag {
    padding: 0 6px 0 16px;
    background: transparent;
    border-radius: 0;
    height: 100%; }
  .waitlist-phone-wrapper .iti__selected-flag:hover,
  .waitlist-phone-wrapper .iti__selected-flag:focus {
    background: transparent !important; }
  .waitlist-phone-wrapper .iti__selected-dial-code {
    font-size: 14px;
    color: #374151;
    padding-left: 2px; }
  .waitlist-phone-wrapper .iti__arrow {
    border-top-color: #6b7280;
    margin-left: 6px; }

.waitlist-email-input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  background: transparent;
  min-width: 0; }

.waitlist-submit-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #ef4444;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 4px;
  transition: opacity 0.15s; }
  .waitlist-submit-btn:hover { opacity: 0.9; }
  .waitlist-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.waitlist-msg {
  font-size: 13px;
  margin-top: 10px; }
.waitlist-msg--success { color: #16a34a; font-weight: 600; font-size: 17px; }
.waitlist-msg--error { color: #dc2626; font-weight: 600; font-size: 17px; }

.waitlist-legal {
  font-size: 10px;
  color: #9ca3af;
  line-height: 1.25;
  margin: 12px 0 0;
  text-align: left; }
  .waitlist-legal a {
    color: #6b7280;
    text-decoration: underline; }

/* Pre-sale card */
.presale-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.7em;
  padding: 24px;
  margin-bottom: 16px; }

.presale-section + .presale-section {
  margin-top: 0; }

.presale-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #374151; }

.presale-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #1f2937; }

.presale-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px; }

.presale-badge--open {
  background: #d1fae5;
  color: #065f46; }

.presale-badge--ended {
  background: #fee2e2;
  color: #991b1b; }

.presale-badge--upcoming {
  background: #dbeafe;
  color: #1e40af; }

.presale-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 12px; }

.presale-code-entry {
  display: flex;
  gap: 8px; }

.presale-code-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s; }
  .presale-code-input:focus {
    border-color: #6366f1; }
  .presale-code-input:disabled {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed; }

.presale-code-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: var(--accent-color, #1f2937);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s; }
  .presale-code-btn:hover {
    background: var(--accent-color-hover, #374151); }
  .presale-code-btn:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed; }

.presale-code-msg {
  margin-top: 8px;
  font-size: 13px;
  min-height: 18px; }
  .presale-code-msg.success {
    color: #059669;
    text-align: center; }
  .presale-code-msg.error {
    color: #dc2626; }

.presale-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0; }

.presale-onsale-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  margin: 0 0 12px; }

.presale-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px; }

.presale-waitlist-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: center;
  margin: 0 0 12px; }

#step2-v2,
#step-otp-v2,
#step3-v2,
#done-v2 {
  display: none; }

