/* Multi-Step Booking System Styles */

.booking-step {
    display: none;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.step-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.back-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 0 10px 0 0;
}

.timer {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e91e63;
    font-size: 14px;
    font-weight: 600;
}

/* Step 1: Ticket Selection */
.ticket-selection, .ticket-summary {
    margin-bottom: 20px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ticket-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #e91e63;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    margin-left: 5px;
    cursor: help;
}

.ticket-price-label {
    font-size: 13px;
    color: #666;
}

.ticket-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background-color: white;
    color: #666;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-circle-btn.plus {
    border-color: #e91e63;
    color: #e91e63;
}

.qty-circle-btn:hover {
    background-color: #e91e63;
    border-color: #e91e63;
    color: white;
}

.qty-display {
    font-size: 18px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.taxa-section {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.taxa-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.taxa-display, .taxa-amount {
    font-size: 16px;
    color: #666;
}

.gift-card-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e91e63;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-card-option:hover {
    color: #c2185b;
}

.gift-card-option i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.gift-card-option.expanded i {
    transform: rotate(90deg);
}

.gift-card-expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.gift-card-expanded-content.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

.gift-card-tickets {
    background-color: #fff5f8;
    border: 2px solid #e91e63;
    border-radius: 8px;
    padding: 15px;
}

.gift-card-tickets .ticket-row {
    border-bottom: 1px solid #ffd4e5;
}

.gift-card-tickets .ticket-row:last-child {
    border-bottom: none;
}

.gift-card-form {
    background-color: #fff5f8;
    border: 2px solid #e91e63;
    border-radius: 8px;
    padding: 20px;
}

.back-to-tickets-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e91e63;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.back-to-tickets-link:hover {
    color: #c2185b;
}

.back-to-tickets-link i {
    font-size: 12px;
}

.gift-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.gift-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gift-card-value-field {
    margin-top: 20px;
}

.gift-card-value-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.gift-card-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #666;
    pointer-events: none;
}

.gift-card-input {
    width: 100%;
    padding: 12px 15px 12px 35px;
    border: 2px solid #e91e63;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gift-card-input:focus {
    outline: none;
    border-color: #c2185b;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.gift-card-input::placeholder {
    color: #ccc;
}

.gift-card-minimum {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

.step-btn {
    width: 100%;
    padding: 16px;
    background-color: #e91e63;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.step-btn:hover {
    background-color: #c2185b;
}

.btn-total {
    font-size: 18px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
}

.btn-text {
    flex: 1;
    text-align: center;
}

/* Step 2: Date & Time Selection */
.date-selection, .time-selection {
    margin: 25px 0;
}

.date-selection label, .time-selection label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.date-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.date-btn {
    padding: 15px 10px;
    border: 2px solid #e0e0e0;
    background-color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.date-btn.active {
    border-color: #e91e63;
    background-color: #fff5f8;
}

.date-btn:hover {
    border-color: #e91e63;
}

.date-day {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.date-month {
    font-size: 12px;
    color: #666;
}

.date-price {
    font-size: 13px;
    color: #e91e63;
    font-weight: 600;
}

.date-status {
    font-size: 12px;
    color: #999;
}

.date-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.time-btn {
    padding: 12px;
    border: 1px solid #e0e0e0;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-btn:hover, .time-btn.active {
    border-color: #e91e63;
    background-color: #fff5f8;
}

.time-btn .time {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.time-btn .price {
    font-size: 13px;
    color: #666;
}

/* Step 3: Bundle Offers */
.bundle-intro {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.bundle-intro p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.bundle-offers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.bundle-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
}

.discount-badge {
    background-color: #e91e63;
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.bundle-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.bundle-card h4 {
    padding: 12px 15px 5px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.bundle-card .duration {
    padding: 0 15px 10px;
    font-size: 13px;
    color: #666;
}

.time-badge {
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 11px;
}

.bundle-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-top: 1px solid #f0f0f0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #e91e63;
}

.book-now-btn {
    padding: 8px 20px;
    background-color: #e91e63;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.bundle-total {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.total-label {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.continue-btn {
    background-color: #e91e63;
}

/* Step 4: Checkout */
.checkout-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-total {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #e91e63;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.checkout-form h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.required-note {
    color: #e91e63;
    font-size: 12px;
    font-weight: 400;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
}

.form-field input, .form-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.form-field input:focus, .form-field select:focus {
    outline: none;
    border-color: #e91e63;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-field label {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.checkbox-field a {
    color: #e91e63;
    text-decoration: underline;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.item-details h5 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.item-details p {
    font-size: 12px;
    color: #666;
    margin: 3px 0;
}

.item-price {
    float: right;
    font-weight: 600;
    color: #1a1a1a;
}

.item-actions {
    margin-top: 8px;
    display: flex;
    gap: 15px;
}

.edit-link, .remove-link {
    font-size: 12px;
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

.continue-shopping-btn {
    width: 100%;
    padding: 12px;
    background-color: #e91e63;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-breakdown {
    padding: 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.price-row.total {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e91e63;
    font-size: 13px;
}

.promo-code a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

/* Step 5: Payment */
.payment-section {
    padding: 20px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.card-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.card-logos img {
    height: 20px;
    width: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field small {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.pay-btn {
    background-color: #e91e63;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .date-options {
        grid-template-columns: 1fr;
    }
    
    .time-options {
        grid-template-columns: 1fr;
    }
}
