/* ========================================
   Ticket Checkout Styles
   Only loaded when ticket system is enabled
   ======================================== */

/* Qty Error Message - Full Width at Top of Page */
.eventhub-ticket-qty-error.eventhub-full-width-error {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    color: #856404;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eventhub-ticket-qty-error.eventhub-full-width-error .eventhub-error-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Ticket Cart Title */
.eventhub-order-summary .eventhub-ticket-cart-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Ticket Info Section */
.eventhub-ticket-info {
    padding: 20px 0 0 0;
}

.eventhub-ticket-event-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.eventhub-ticket-date {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.eventhub-ticket-venue {
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 2px;
}

.eventhub-ticket-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.eventhub-ticket-seat-info {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
}

.eventhub-ticket-delivery {
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.eventhub-ticket-delivery .delivery-icon {
    font-size: 16px;
}

/* Quantity Row */
.eventhub-ticket-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 25px 0;
}

.eventhub-ticket-qty-select {
    width: 70px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 28px;
}

.eventhub-ticket-qty-select:focus {
    outline: none;
    border-color: #333;
}

.eventhub-ticket-price-each {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

/* Remove Button */
.eventhub-ticket-remove-btn {
    background: #dc3545 !important;
    color: #fff !important;
    border: none !important;
    padding: 4px 10px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    line-height: 1.4 !important;
}

.eventhub-ticket-remove-btn:hover {
    background: #a71d2a !important;
    transform: scale(1.02) !important;
}

.eventhub-ticket-remove-btn:active {
    background: #8b1621 !important;
    transform: scale(0.98) !important;
}

.eventhub-ticket-remove-btn:disabled {
    background: #999 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Fixed qty display when only one split available */
.eventhub-ticket-qty-fixed {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Summary Totals Section */
.eventhub-ticket-totals {
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.eventhub-ticket-totals .eventhub-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 15px;
    color: #333;
}

.eventhub-ticket-totals .eventhub-total-row.eventhub-total-final {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #e8e8e8;
}

.eventhub-ticket-totals .eventhub-total-row.eventhub-total-final span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.eventhub-ticket-totals .eventhub-total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

/* Mobile responsive for ticket checkout */
@media (max-width: 768px) {
    .eventhub-order-summary .eventhub-ticket-cart-title {
        font-size: 24px;
    }
    
    .eventhub-ticket-event-name {
        font-size: 16px;
    }
}
