p.wt-showtime-title {
    font-family: "Helvetica", Sans-serif;
    color: #232323;
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 600 !important;
    padding: 0 20px;
    line-height: 30px;
}

p.wt-showtime-names-week {
    font-family: "Helvetica", Sans-serif;
    color: #232323;
    font-size: 20px;
    margin: 0 0 15px 0 !important;
    font-weight: 400 !important;
    padding: 0 20px;
}

p.wt-showtime-date {
    font-family: "Helvetica", Sans-serif;
    color: #232323;
    font-size: 16px;
    margin-top: -19px;
    padding: 0 20px;
    margin-bottom: 21px;
}

p.wt-cta {
    margin: 0;
    text-align: center;
    font-weight: 500;
    line-height: 25px;
    background-color: #ffa834;
    color: #000;
    padding: 7px 0;
    border-top: 2px solid #000;
}

.wt-showtimes-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

.wt-showtimes-grid .wt-showtime-item {
    flex: calc(50% - 10px);
    position: relative;
}

.wt-showtimes-grid .wt-showtime-item.selected {
    border: 2px solid #19b779;
}

.wt-showtimes-grid .wt-showtime-btn {
    background-color: #eee;
    padding: 0px;
    cursor: pointer;
}

.wt-showtimes-grid .wt-showtime-booking-form {
    display: none;
    background-color: #eee;
    padding: 10px;
}


.wt-showtimes-grid .wt-showtime-title {
    text-align: left;
}


.wt-showtimes-grid .wt-showtime-booking-form input,
.wt-showtimes-grid .wt-showtime-booking-form button {
    width: 100%;
    margin-top: 10px;
}

.wt-ajax-message {
    display: none;
}

.wt-message {
    padding: 10px 15px;
    margin-bottom: 15px;
}

.wt-message.success {
    background-color: #19b779;
    color: #fff;
}

.wt-message.error {
    background-color: #f34545;
    color: #fff;
}

.wt-message.warning {
    background-color: #ffa834 !important;
    color: #fff !important;
}


@media (max-width: 720px) {
    .wt-showtimes-grid .wt-showtime-btn {
        flex: 100%;
    }
}

#wt-ticket-continue-button {
    display: none;
}

/* ============================================================
   V2 Showtimes — Card Grid
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

/* ---- Scoped AJAX messages inside wtc2-wrap ---- */
.wtc2-wrap .wt-ajax-message {
    display: none;
    padding: 11px 16px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.wtc2-wrap .wt-message.success {
    background: #19b779;
}

.wtc2-wrap .wt-message.error {
    background: #e53935;
}

.wtc2-wrap .wt-message.warning {
    background: #ffa834 !important;
}

/* ---- Wrap ---- */
.wtc2-wrap {
    font-family: 'Outfit', sans-serif;
    background: #f4f4f4;
    border-radius: 12px;
    padding: 16px;
}

/* ---- Card grid ---- */
.wtc2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* ---- Card ---- */
.wtc2-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
    cursor: pointer;
}

.wtc2-card.wtc2-selected,
.wtc2-card.wtc2-in-cart {
    border-color: #ffa834;
    box-shadow: 0 4px 16px rgba(255, 168, 52, 0.18);
}

/* ---- Poster image ---- */
.wtc2-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #d8d8d8;
    overflow: hidden;
}

.wtc2-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wtc2-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wtc2-img-placeholder svg {
    width: 40px;
    height: 40px;
    color: #aaa;
}

/* ---- Circle selector ---- */
.wtc2-selector {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

.wtc2-selected .wtc2-selector,
.wtc2-checked .wtc2-selector {
    background: #ffa834;
    border-color: #ffa834;
}

.wtc2-check-icon {
    width: 14px;
    height: 14px;
    color: #fff;
    display: none;
}

.wtc2-selected .wtc2-check-icon,
.wtc2-checked .wtc2-check-icon {
    display: block;
}

/* ---- Cart badge ---- */
.wtc2-cart-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffa834;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Card content ---- */
.wtc2-card-content {
    padding: 10px 14px 12px;
}

.wtc2-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.wtc2-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
}

.wtc2-meta-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #555;
}

.wtc2-meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #999;
}

/* ---- Buttons ---- */
.wtc2-select-btn {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin: 0 !important;
}

.wtc2-btn--available {
    background: #ffa834;
    color: #111;
}

.wtc2-btn--available:hover {
    background: #000000;
    color: #fff;
}


.wtc2-btn--unavailable {
    background: #ebebeb;
    color: #aaa;
    cursor: default;
}

.wtc2-status-msg {
    font-size: 12px;
    color: #999;
    margin: 0;
    text-align: center;
    padding: 6px 0;
}

/* ---- Booking panel ---- */
.wtc2-booking-panel {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 16px;
    margin-top: 12px;
}

.wtc2-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 2px;
}

.wtc2-panel-icon {
    width: 20px;
    height: 20px;
    color: #aaa;
    flex-shrink: 0;
}

/* ---- Selected movie name in panel ---- */
.wtc2-selected-movie-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 8px 0 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* ---- Ticket rows ---- */
.wtc2-ticket-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
}

.wtc2-ticket-label {
    flex: 1;
    font-size: 14px;
    color: #1a1a1a;
}

.wtc2-ticket-price {
    font-size: 14px;
    color: #555;
    white-space: nowrap;
    min-width: 68px;
    text-align: right;
}

/* ---- Stepper ---- */
.wtc2-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.wtc2-step-btn {
    background: #f6f6f6;
    border: none;
    color: #333;
    font-size: 18px;
    width: 34px;
    height: 34px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: background 0.15s;
    flex-shrink: 0;
}

.wtc2-step-btn:hover {
    background: #ebebeb;
}

.wtc2-step-input {
    width: 40px !important;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    padding: 0;
    height: 34px;
    margin: 0 !important;
}

.wtc2-stepper .wtc2-step-input {
    border-radius: 0 !important;
    width: 55px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
}

/* ---- Coupon row ---- */
.wtc2-coupon-row {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.wtc2-coupon-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 6px;
}

.wtc2-coupon-input {
    width: 100% !important;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 9px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    box-sizing: border-box;
    margin: 0 !important;
}

.wtc2-coupon-input:focus {
    outline: none;
    border-color: #ffa834;
}

/* ---- Total row ---- */
.wtc2-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.wtc2-total-amount {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ---- Submit button ---- */
.wtc2-submit-btn {
    width: 100%;
    background: #ffa834;
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px 0 0 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
}

.wtc2-submit-btn:hover {
    background: #000000;
    color: #fff;
}

.wtc2-submit-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.wtc2-submit-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ---- Cart items section ---- */
.wtc2-cart-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    margin-top: 12px;
    overflow: hidden;
}

.wtc2-cart-section:empty {
    display: none;
}

.wtc2-cart-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
}

.wtc2-cart-heading svg {
    width: 15px;
    height: 15px;
    color: #aaa;
    flex-shrink: 0;
}

.wtc2-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    border-bottom: 1px solid #f8f8f8;
}

.wtc2-cart-item:last-child {
    border-bottom: none;
}

.wtc2-cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wtc2-cart-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.wtc2-cart-date {
    font-size: 12px;
    color: #777;
}

.wtc2-cart-tickets {
    font-size: 12px;
    color: #aaa;
}

.wtc2-cart-price {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.wtc2-cart-footer {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
}

.wtc2-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #ffa834;
    color: #111;
    text-decoration: none;
    padding: 8px;
    min-height: 37px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.wtc2-checkout-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.wtc2-checkout-btn:hover {
    background: #000000;
    color: #fff;
}

.wtc2-remove-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
}

.wtc2-remove-btn svg {
    width: 16px;
    height: 16px;
}

.wtc2-remove-btn:hover {
    color: #e53935;
    background: #fff0f0;
}

/* ---- Unavailable card overlay ---- */
.wtc2-state-past .wtc2-img-wrap,
.wtc2-state-sales-ended .wtc2-img-wrap,
.wtc2-state-sold-out .wtc2-img-wrap {
    opacity: 0.55;
}

/* ---- Responsive ---- */
@media (max-width: 620px) {
    .wtc2-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */

.wt-in-cart-badge {
    padding: 5px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--primary);
    color: #fff;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    vertical-align: center;
}