/* GOA Ticket Boxes — module stijlen
   Aparte file zodat browser altijd vers laadt (buiten custom.css cache) */

/* === Kaart === */
.mod-nwtickets-event-booking .goa-ticket-card {
    background-color: #000;
    border: 2px solid var(--goa-green);
    border-radius: 10px;
    padding: 40px;
    min-height: 320px;
    box-shadow: none;
    position: relative;
    overflow: visible;
    height: 100%;
    transform: none;
    display: flex;
    flex-direction: column;
}

.mod-nwtickets-event-booking .goa-ticket-card--unavailable {
    border-color: #555;
    opacity: 0.7;
}

.mod-nwtickets-event-booking .goa-ticket-card .card-body {
    padding:        20px 22px 22px;
    display:        flex;
    flex-direction: column;
    gap:            0;
    position:       relative;
    z-index:        1;
    flex: 1 1 auto;
}





/* Header: titel links, prijs rechts */
.mod-nwtickets-event-booking .goa-ticket-header {
    margin-bottom: 16px;
}

.mod-nwtickets-event-booking .goa-ticket-title {
    font-family: var(--goa-font-header);
    font-size: 2.4rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    margin: 0;
}

.mod-nwtickets-event-booking .goa-ticket-price {
    font-family: var(--goa-font-special);
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}



/* Quantity + prijs op één rij: label/input links, prijs rechts onderaan */
.mod-nwtickets-event-booking .goa-ticket-quantity {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
}

.mod-nwtickets-event-booking .goa-ticket-quantity-inputs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mod-nwtickets-event-booking .goa-quantity-label {
    display: block;
    transform: none;
    padding: 0;
    margin: 0;
    line-height: 1.4;
}

.mod-nwtickets-event-booking .goa-quantity-input {
    display: block;
}

.mod-nwtickets-event-booking .goa-ticket-quantity .goa-ticket-price {
    text-align: right;
    margin: 0;
}

.mod-nwtickets-event-booking .goa-quantity-label {
    font-family: var(--goa-font-typewriter, "Special Elite", "Courier New", monospace);
    font-size: 0.7rem;
    color: var(--goa-green);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mod-nwtickets-event-booking .goa-quantity-input {
    background: transparent;
    border: 1px solid var(--goa-green);
    border-radius: 3px;
    color: #fff;
    font-family: var(--goa-font-poster);
    font-size: 1.4rem;
    text-align: center;
    width: 72px;
    padding: 4px 0;
    -moz-appearance: textfield;
    accent-color: var(--goa-green);
}

.mod-nwtickets-event-booking .goa-quantity-input::-webkit-outer-spin-button,
.mod-nwtickets-event-booking .goa-quantity-input::-webkit-inner-spin-button {
    opacity: 1;
    height: 32px;
}

/* Submit knop */
.mod-nwtickets-event-booking form {
    width: 100%;
}

.goa-ticket-submit-wrap {
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    width:           100%;
    text-align:      center;
}

.goa-ticket-submit {
    background:    transparent;
    border:        none;
    outline:       none;
    box-shadow:    none;
    color:         #fff;
    font-family:   var(--goa-font-header);
    font-size:     3.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding:       16px 0;
    cursor:        pointer;
    filter:        drop-shadow(2px 3px 0 rgba(0,0,0,0.9));
    transition:    color 0.2s ease;
}

.goa-ticket-submit:hover,
.goa-ticket-submit:focus {
    background:  none;
    border:      none;
    outline:     none;
    box-shadow:  none;
    color:       var(--goa-green);
    filter:      drop-shadow(2px 3px 0 rgba(0,0,0,0.9));
}

/* Kaartkolom: ruimte voor uitstekende afbeeldingen */
.goa-ticket-card-col {
    position: relative;
}

.goa-ticket-row {
    overflow: visible;
    padding: 20px 10px;
}

/* Mascot — eerste kaartkolom links uitstekend */
.goa-ticket-card-col--first::before {
    content: "";
    position: absolute;
    left: -20px;
    top: -15px;
    width: 90px;
    height: 130px;
    background: url("/images/goa/tickets/mascot.png") no-repeat left top / contain;
    pointer-events: none;
    z-index: 2;
}

/* Butterfly — laatste kaartkolom rechtsonder uitstekend */
.goa-ticket-card-col--last::after {
    content: "";
    position: absolute;
    right: -15px;
    bottom: -25px;
    width: 100px;
    height: 80px;
    background: url("/images/goa/tickets/butterfly.png") no-repeat right bottom / contain;
    pointer-events: none;
    z-index: 2;
}

/* Mobiel */
@media (max-width: 767px) {
    .goa-ticket-card-col--first::before {
        left: -5px;
        width: 65px;
        height: 95px;
    }
    .goa-ticket-card-col--last::after {
        right: -5px;
        bottom: -15px;
        width: 70px;
        height: 56px;
    }
    .mod-nwtickets-event-booking .goa-ticket-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .mod-nwtickets-event-booking .goa-ticket-title {
        font-family: var(--goa-font-header);
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .mod-nwtickets-event-booking .goa-quantity-input {
        -moz-appearance: auto;
    }
    .mod-nwtickets-event-booking .goa-quantity-input::-webkit-outer-spin-button,
    .mod-nwtickets-event-booking .goa-quantity-input::-webkit-inner-spin-button {
        height: auto;
    }
    .goa-ticket-submit {
        font-size: 2rem;
    }
}

/* %%GOA-BOOKING-MESSAGE-START%% */
.mod-nwtickets-event-booking .goa-booking-message {
    margin:         1.5rem 0;
    padding:        0;
    font-family:    var(--goa-font-typewriter);
    font-size:      0.95rem;
    color:          var(--goa-green);
    text-align:     center;
}
/* %%GOA-BOOKING-MESSAGE-END%% */
