
    /* Ticket Page Specific Styles */
    .ticket-hero {
      /* background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95)), url('../images/upcoming-bg.jpg'); */
      background: url('../images/upcoming-bg.jpg');
      background-size: cover;
      background-position: center;
      padding: 120px 0 80px;
      text-align: center;
    }

    .ticket-hero .event-title {
      font-size: 3rem;
      color: #fff;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .ticket-hero .event-subtitle {
      font-size: 1.2rem;
      color: #f7a22f;
      margin-bottom: 30px;
    }

    .event-info-bar {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .event-info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
    }

    .event-info-item ion-icon {
      font-size: 24px;
      color: #f7a22f;
    }

    .event-info-item span {
      font-size: 1rem;
    }

    /* Ticket Selection Section */
    .ticket-section {
      padding: 80px 0;
      background: #0f0f1a;
      background: url('../images/upcoming-bg-low.png');
      background-size: cover;
      background-position: center;
      
    }

    .event-logo{
      display:block; 
      margin:18px auto; 
      max-width:700px; 
      height:auto;
    }

    .ticket-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .section-header p {
      color: #aaa;
    }

    /* Ticket Cards */
    .ticket-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .ticket-card {
      background: linear-gradient(145deg, #1a1a2e, #16213e);
      border-radius: 20px;
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 2px solid transparent;
      cursor: pointer;
    }

    .ticket-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(247, 162, 47, 0.2);
    }

    .ticket-card.selected {
      border-color: #f7a22f;
      box-shadow: 0 0 30px rgba(247, 162, 47, 0.3);
    }

    /* Popular ticket styling with diagonal ribbon */
    .ticket-card.popular {
      border: 2px solid rgba(247, 162, 47, 0.4);
      box-shadow: 0 0 30px rgba(247, 162, 47, 0.2);
      overflow: hidden; /* Hide overflow for ribbon */
    }

    .ticket-card.popular:hover {
      border-color: rgba(247, 162, 47, 0.6);
      box-shadow: 0 20px 40px rgba(247, 162, 47, 0.3);
    }

    /* Diagonal "POPULAR" ribbon banner */
    .ticket-card.popular::before {
      content: 'POPULAR';
      position: absolute;
      top: 20px;
      right: -30px;
      background: #f7a22f;
      color: #000;
      padding: 5px 40px;
      font-size: 12px;
      font-weight: 600;
      transform: rotate(45deg);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    .ticket-type {
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .ticket-price {
      font-size: 2.5rem;
      color: #f7a22f;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .ticket-price span {
      font-size: 1rem;
      color: #aaa;
      font-weight: 400;
    }

    .ticket-features {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .ticket-features li {
      color: #ccc;
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ticket-features li ion-icon {
      color: #4caf50;
      font-size: 18px;
    }

    .ticket-features li.unavailable {
      color: #666;
      text-decoration: line-through;
    }

    .ticket-features li.unavailable ion-icon {
      color: #666;
    }

    /* Excluded features (with # prefix) */
    .ticket-features li.excluded-feature {
      color: #e74c3c;
      text-decoration: line-through;
    }

    .ticket-features li.excluded-feature svg,
    .ticket-features li.excluded-feature ion-icon {
      color: #e74c3c;
      flex-shrink: 0;
    }

    /* Quantity Selector */
    .quantity-selector {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .qty-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #f7a22f;
      background: transparent;
      color: #f7a22f;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .qty-btn:hover {
      background: #f7a22f;
      color: #000;
    }

    .qty-display {
      font-size: 1.5rem;
      color: #fff;
      min-width: 40px;
      text-align: center;
    }

    /* Booking Form */
    .booking-form-section {
      background: linear-gradient(145deg, #1a1a2e, #16213e);
      border-radius: 20px;
      padding: 40px;
      margin-top: 50px;
    }

    .booking-form-section h3 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 30px;
      text-align: center;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      color: #fff;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: 15px;
      border-radius: 10px;
      border: 2px solid #333;
      background: #0f0f1a;
      color: #fff;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: #f7a22f;
    }

    .form-group input::placeholder {
      color: #666;
    }

    /* Email validation feedback */
    .form-group input.invalid {
      border-color: #e74c3c;
      background: rgba(231, 76, 60, 0.1);
    }

    .form-group input.valid {
      border-color: #34ba96;
    }

    .email-error {
      color: #e74c3c;
      font-size: 0.85rem;
      margin-top: 5px;
      display: none;
    }

    .email-error.show {
      display: block;
    }

    /* Order Summary */
    .order-summary {
      background: #0f0f1a;
      border-radius: 15px;
      padding: 25px;
      margin-top: 30px;
    }

    .order-summary h4 {
      color: #fff;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #333;
    }

    .summary-item {
      display: flex;
      justify-content: space-between;
      color: #ccc;
      padding: 10px 0;
    }

    .summary-total {
      display: flex;
      justify-content: space-between;
      color: #fff;
      font-size: 1.3rem;
      font-weight: 600;
      padding-top: 15px;
      margin-top: 15px;
      border-top: 2px solid #f7a22f;
    }

    .summary-total .amount {
      color: #f7a22f;
    }

    /* Pay Button */
    .pay-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, #f7a22f, #e8941f);
      border: none;
      border-radius: 10px;
      color: #000;
      font-size: 1.2rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .pay-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(247, 162, 47, 0.4);
    }

    .pay-btn ion-icon {
      font-size: 24px;
    }

    /* Payment Methods */
    .payment-methods {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #333;
    }

    .payment-methods img {
      height: 30px;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }

    .payment-methods img:hover {
      opacity: 1;
    }

    /* Countdown Timer */
    .countdown-section {
      text-align: center;
      padding: 30px 0;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .countdown-item {
      background: linear-gradient(145deg, #1a1a2e, #16213e);
      padding: 20px 25px;
      border-radius: 15px;
      min-width: 80px;
    }

    .countdown-item .number {
      font-size: 2.5rem;
      color: #f7a22f;
      font-weight: 700;
    }

    .countdown-item .label {
      color: #aaa;
      font-size: 0.9rem;
      text-transform: uppercase;
    }

    /* Secure Badge */
    .secure-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #4caf50;
      margin-top: 15px;
      font-size: 0.9rem;
    }

    .secure-badge ion-icon {
      font-size: 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .ticket-hero .event-title {
        font-size: 2rem;
      }

      .event-info-bar {
        gap: 20px;
      }

      .ticket-cards {
        grid-template-columns: 1fr;
      }

      .countdown-item {
        padding: 15px;
        min-width: 60px;
      }

      .countdown-item .number {
        font-size: 1.8rem;
      }

      .booking-form-section {
        padding: 25px;
      }

      .popular-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        top: -10px;
      }
    }

    /* Sold Out State */
    .ticket-card.sold-out {
      opacity: 0.6;
      pointer-events: none;
    }

    .ticket-card.sold-out::after {
      content: 'SOLD OUT';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-15deg);
      background: #ff4444;
      color: #fff;
      padding: 10px 30px;
      font-size: 1.2rem;
      font-weight: 700;
      border-radius: 5px;
    }

    /* Event Details */
    .event-details-section {
      padding: 60px 0;
      background: #0a0a14;
    }

    .event-details-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .detail-card {
      background: linear-gradient(145deg, #1a1a2e, #16213e);
      padding: 30px;
      border-radius: 15px;
      text-align: center;
    }

    .detail-card ion-icon {
      font-size: 40px;
      color: #f7a22f;
      margin-bottom: 15px;
    }

    .detail-card h4 {
      color: #fff;
      margin-bottom: 10px;
    }

    .detail-card p {
      color: #aaa;
    }

    /* Toast Container - ensures proper stacking */
    .toast-container {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      pointer-events: none !important;
      z-index: 99999 !important;
    }

    /* Toast Notification */
    .toast-notification {
      position: absolute !important;
      top: 20px !important;
      right: 20px !important;
      background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
      color: #fff;
      padding: 16px 24px;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 320px;
      max-width: 400px;
      z-index: 1 !important;
      opacity: 0;
      transform: translateX(400px);
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      pointer-events: auto !important;
    }

    .toast-notification.show {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }

    .toast-notification.warning {
      background: linear-gradient(135deg, #f7a22f, #ff8c42);
      box-shadow: 0 8px 32px rgba(247, 162, 47, 0.4);
    }

    .toast-notification ion-icon {
      font-size: 28px;
      flex-shrink: 0;
    }

    .toast-content {
      flex: 1;
    }

    .toast-title {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .toast-message {
      font-size: 0.9rem;
      opacity: 0.95;
      line-height: 1.4;
    }

    .toast-close {
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: #fff;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: background 0.2s;
      flex-shrink: 0;
    }

    .toast-close:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 768px) {
      .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
      }
    }
