/* ==========================================================================
   HOMEPAGE CARD DESIGN ([ncmf_concert_card])
   ========================================================================== */
.ncmf-card {
    background-color: #f0fdf2;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.20);
    border: 1px solid #e1f7e6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ncmf-card-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ncmf-card-body {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.ncmf-card-left {
    display: flex;
    flex-direction: column;
}

.ncmf-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.ncmf-badge {
    background-color: #a3d0b2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    line-height: 1;
}

.ncmf-card-title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 700;
    color: #0d0d0d;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.ncmf-card-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ncmf-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
}

.ncmf-icon {
    width: 18px;
    height: 18px;
    color: #8fa896;
    flex-shrink: 0;
}

.ncmf-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 140px;
}

.ncmf-card-price {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1;
}

.ncmf-card-btn {
    background-color: #9eccaa;
    color: #1a3020;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.ncmf-card-btn:hover {
    background-color: #8bbf98;
    color: #0f2014;
    text-decoration: none;
}

/* ==========================================================================
   BOOKING PAGE DESIGN ([ncmf_concert_booking])
   ========================================================================== */
.ncmf-booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.ncmf-booking-main-title {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 32px;
    color: #ffffff !important;
    margin-bottom: 25px;
}

.ncmf-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.ncmf-booking-poster {
    border-radius: 16px;
    overflow: hidden;
}

.ncmf-booking-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.ncmf-booking-form-box {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ncmf-form-heading {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 16px 0;
}

.ncmf-booking-info-row {
    display: flex;
    gap: 55px;
    margin-bottom: 12px;
}

.ncmf-info-col,
.ncmf-booking-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333333;
}

.ncmf-booking-location {
    margin-bottom: 18px;
}

.ncmf-info-label {
    display: block;
    color: #666666;
    font-size: 11px;
}

.ncmf-form-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.ncmf-form-group {
    margin-bottom: 12px;
}

.ncmf-form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 5px;
}

.ncmf-form-group input[type="text"],
.ncmf-form-group input[type="email"] {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.ncmf-ticket-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ncmf-ticket-picker {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ncmf-qty-btn {
    background: #ffffff;
    border: 1px solid #cccccc;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncmf-qty-input {
    width: 60px !important;
    height: 28px !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: bold !important;
    padding: 0 !important;
    color: #000000 !important;
    background: transparent !important;
    -moz-appearance: textfield !important;
}

.ncmf-qty-input::-webkit-outer-spin-button,
.ncmf-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ncmf-ticket-total-price {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
}

.ncmf-form-subtext {
    font-size: 9px;
    color: #777777;
    margin: 18px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ncmf-form-submit-btn {
    width: 100%;
    background-color: #c7f7d4;
    color: #000000;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ncmf-form-submit-btn:hover {
    background-color: #b2f0c1;
}

/* RESPONSIVE BREAKPOINTS */
@media screen and (max-width: 650px) {
    .ncmf-booking-grid {
        grid-template-columns: 1fr;
    }
    
    .ncmf-card-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ncmf-card-title {
        font-size: 28px;
    }

    .ncmf-card-right {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: auto;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #d8ebd2;
    }
    .ncmf-booking-info-row {
    
    gap: 25px;
    
}

}