/* ============================================
   CHECKOUT PAGES - FULL SCREEN NAVIGATION
   ============================================ */

.checkout-body {
    background: #0D0D0D;
    min-height: 100vh;
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Header */
.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #131316;
    border-bottom: 1px solid #2a2a2d;
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-btn,
.close-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.back-btn:hover,
.cart-icon:hover {
    opacity: 0.7;
}

.checkout-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
}

/* Main Content */
.checkout-main {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 20px;
}

/* Event Date */
.event-date-text {
    text-align: center;
    color: #9AA4B2;
    font-size: 0.85rem;
    margin: 0 0 32px 0;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2a2a2d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
}

.step.active {
    background: #F04400;
    color: white;
}

.step.completed {
    background: #F04400;
    color: white;
    font-size: 1.2rem;
}

.step-line {
    width: 40px;
    height: 2px;
    background: #2a2a2d;
}

/* Section Title */
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 24px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}


/* Ticket Card (Step 1) */
.ticket-card-mobile {
    align-items: center;
    background: #0D0D0D;
    border: 1px solid #F04400;
    padding: 40px 20px;
    margin-bottom: 300px;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2a2d;
    margin-bottom: 16px;
}

.ticket-type-name {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0D0D0D;
    border: 1px solid #2a2a2d;
    border-radius: 8px;
    padding: 6px 12px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.qty-btn:hover {
    color: #F04400;
}

.qty-value {
    color: white;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.ticket-info {
    padding-top: 8px;
}

.ticket-price {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.ticket-remaining {
    color: #9AA4B2;
    font-size: 0.8rem;
    margin: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #9AA4B2;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    background: #0D0D0D;
    border: 1px solid #2a2a2d;
    border-radius: 0px;
    color: white;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #F04400;
}

.form-group input::placeholder {
    color:  #9AA4B2;
}

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
/* Section Subtitle */
.section-subtitle {
    color: #9AA4B2;
    font-size: 0.85rem;
    margin: -16px 0 24px 0;
    font-weight: 400;
}

  .payment-options {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .payment-option {
      position: relative;
      width: 100%;
    }

    .payment-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .payment-option label {
      display: block;
      padding: 16px;
      border-radius: 12px;
      border: 1px solid hsl(220, 15%, 18%);
      background-color: hsl(220, 18%, 10% / 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .payment-option label:hover {
      border-color: hsl(215, 15%, 35%);
      background-color: hsl(220, 15%, 15% / 0.4);
    }

    .payment-option input[type="radio"]:checked + label {
      background-color: hsl(220, 15%, 12%);
      border-color: #4285F4;
      border-width: 2px;
    }

    .option-content {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    /* Radio circle */
    .radio-circle {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid hsl(215, 15%, 40%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      transition: all 0.3s ease;
    }

    .radio-circle::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #4285F4;
      transform: scale(0);
      opacity: 0;
      transition: all 0.3s ease;
    }

    .payment-option input[type="radio"]:checked + label .radio-circle {
      border-color: #4285F4;
      background-color: transparent;
    }

    .payment-option input[type="radio"]:checked + label .radio-circle::after {
      transform: scale(1);
      opacity: 1;
    }

    /* Icon container */
    .icon-container {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background-color: hsl(220, 15%, 18% / 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .icon-container svg {
      width: 24px;
      height: 24px;
      fill: hsl(215, 15%, 55%);
      transition: all 0.3s ease;
    }

    .payment-option input[type="radio"]:checked + label .icon-container {
      background-color: hsl(175, 70%, 50% / 0.15);
    }


    /* Text content */
   /* Text content */
.text-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.option-title {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(210, 20%, 80%);
    transition: color 0.3s ease;
}

.payment-option input[type="radio"]:checked + label .option-title {
    color: hsl(210, 20%, 95%);
}

.option-description {
    font-size: 0.875rem;
    color: hsl(215, 15%, 55%);
    margin-top: 2px;
    margin-bottom: 8px; /* Add space between description and badges */
}

/* Badges - Position directly under description */
.badges {
    display: flex;
    gap: 8px;
    margin-top: 0; /* Remove top margin since description has bottom margin */
    flex-wrap: wrap;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    background-color: hsl(220, 15%, 18% / 0.6);
    font-size: 0.75rem;
    color: hsl(215, 15%, 55%);
}

.badge svg {
    width: 14px;
    height: 14px;
}


/* optional — make the dot slightly smaller on very small screens */
@media (max-width: 480px) {
  .payment-option input[type="radio"] { width: 18px; height: 18px; }
  .payment-option input[type="radio"]:checked,
  .payment-option.active input[type="radio"] {
    background: radial-gradient(circle at center, #4285F4 50%, transparent 51%);
  }
}


.payment-option svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.payment-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-option:hover {
    border-color: #4285F4;
}

.payment-option.active {
    border-color: #4285F4;
    color: white;
}

.logo-container {
    background: #0D0D0D;
    border: 1px solid #2a2a2d;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 24px;
}
/* Primary Button */
.primary-btn {
    width: 100%;
    padding: 14px;
    background: #F04400;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.primary-btn:hover {
    background: #d63a00;
}

.primary-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.apple-glyph {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0;
}

/* text stays the same size and alignment */
.apple-pay-text {
  font-size: 9px !important; 
  line-height: 1;
  color: white;  
  margin-left: -2px;
} 
/* Billing Address Section */
.billing-section {
    margin-top: 30px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.address-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.address-row .form-input {
    width: 100%;
    padding: 14px 16px;
    background: #0D0D0D;
    border: 1px solid #2a2a2d;
    color: white;
    font-size: 1rem;
    outline: none;
}

.address-row .form-input:focus {
    border-color: #F04400;
}

.address-row .form-input::placeholder {
    color: #9AA4B2;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
}

.terms-checkbox label {
    font-size: 0.9rem;
    color: #9AA4B2;
    line-height: 1.5;
}

.terms-checkbox a {
    color: #9AA4B2;
    text-decoration: underline;
}




/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .checkout-header {
        padding: 16px;
    }
    
    .checkout-title {
        font-size: 0.9rem;
    }
    
    .checkout-main {
        padding: 20px 16px;
    }
    
    .event-date-text {
        font-size: 0.8rem;
        margin-bottom: 24px;
    }
    
    .progress-steps {
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .step {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-line {
        width: 30px;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .ticket-card {
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Desktop View */
@media (min-width: 769px) {
    .checkout-main {
        max-width: 600px;
        padding: 40px 20px;
    }
    
    .checkout-header {
        padding: 24px 40px;
    }
    
    .checkout-title {
        font-size: 1.2rem;
    }
}