/* Event Tickets QR - Pricing Table Styles */

.etq-pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #0a0a0a;
    color: #fff;
    gap: 20px;
    padding: 20px;
    font-family: inherit;
}

.etq-pricing-card {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Red vertical dividers mimicking the image */
.etq-pricing-card:not(:last-child) {
    border-right: 2px solid #e50914;
    /* Red accent */
}

@media (max-width: 900px) {
    .etq-pricing-card:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid #e50914;
    }
}

.etq-pass-icon {
    color: #fff;
    margin-bottom: 15px;
}

.etq-pass-icon svg {
    width: 40px;
    height: 40px;
}

.etq-pass-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #fff;
}

.etq-pass-subtitle {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 30px;
}

.etq-pricing-price {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
}

.etq-currency {
    font-size: 32px;
    font-weight: bold;
}

.etq-duration {
    font-size: 16px;
    font-weight: normal;
    color: #aaa;
}

.etq-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
    flex-grow: 1;
}

.etq-pricing-features li {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.etq-check-icon {
    color: #e50914;
    /* Red checkmark */
    margin-right: 10px;
    font-weight: bold;
}

.etq-pricing-action {
    margin-top: auto;
}

.etq-buy-now-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #e50914;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 80%;
    transition: all 0.3s ease;
}

.etq-buy-now-btn:hover {
    background-color: #e50914;
    color: #fff;
}

.etq-buy-now-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.etq-checkout-msg {
    margin-top: 10px;
    font-size: 14px;
    min-height: 20px;
}

.etq-checkout-msg.error {
    color: #e50914;
}

.etq-checkout-msg.success {
    color: #28a745;
}

/* Verification Page Styles */
.etq-verify-wrapper {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.etq-qr-code img {
    max-width: 250px;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}