/* ==============================================
   Ticket Options V2 — Premium Redesign
   ============================================== */

/* --- Section Container --- */
.product-options-section-v2 {
    border: 1px solid #e8ecf1;
    /* box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06); */
    box-shadow: 0px 4px 14px rgba(15, 23, 42, 0.004);
}

/* --- Premium Header Bar --- */
.options-header-v2 {
    background: #f8f9fb;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e8ecf1;
}

.options-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.options-header-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.options-header-icon i {
    font-size: 22px;
    /* color: #fff; */
}

.options-header-v2 h4 {
    /* color: #fff; */
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.options-header-v2 p {
    /* color: rgba(255, 255, 255, 0.7); */
    font-size: 0.82rem;
    margin-top: 2px;
}

.options-count-badge {
    background: white;
    /* color: #fff; */
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- Options List --- */
.options-list-v2 {
    background: #f8f9fb;
    padding: 20px;
}

/* --- Option Card --- */
.option-card-v2 {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf1;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.option-card-v2:last-child {
    margin-bottom: 0;
}

.option-card-v2:hover {
    /* box-shadow: 0 6px 24px rgba(39, 85, 176, 0.1); */
    /* border-color: #c5d3eb; */
    /* border-left-color: #2755b0; */
    transform: translateY(-2px);
}

.option-card-v2.expanded {
    /* border-left-color: #1a3d82;
    box-shadow: 0 8px 30px rgba(39, 85, 176, 0.12); */
}

.option-card-inner {
    padding: 22px 24px;
}

/* --- Card Header: Title + Chevron --- */
.option-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    margin-bottom: 16px;
}

.option-title-area {
    flex: 1;
}

.option-name-v2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2d5a;
    margin: 0 0 6px;
    line-height: 1.4;
}

.option-ticket-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eef2ff;
    color: #2755b0;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.option-chevron {
    color: #2755b0;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option-card-v2:hover .option-chevron {
    background: #2755b0;
    color: #fff;
}

/* --- Card Body: Price + Select --- */
.option-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.option-price-area {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.option-price-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.option-price-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

/* --- Select Button --- */
.option-select-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2755b0 0%, #1e4491 100%);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 14px rgba(39, 85, 176, 0.25); */
    white-space: nowrap;
}

.option-select-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.option-select-btn:hover {
    background: linear-gradient(135deg, #1e4491 0%, #153370 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 85, 176, 0.35);
}

.option-select-btn:hover i {
    transform: translateX(4px);
}

/* --- View Details Link --- */
.option-details-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2755b0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    transition: all 0.2s ease;
}

.option-details-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.option-details-link:hover {
    color: #1a3d82;
}

.option-details-link:hover i {
    transform: translateY(2px);
}

/* --- Expanded Section --- */
.option-expanded-v2 {
    padding: 0 24px 24px;
    border-top: 1px solid #f0f2f5;
    margin-top: 8px;
    padding-top: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Inclusions/Exclusions V2 --- */
.inc-exc-header-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.inc-exc-header-v2 h6 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 0;
}

.inc-icon-v2 {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.exc-icon-v2 {
    width: 24px;
    height: 24px;
    background: #fde8e8;
    color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.inc-exc-content-v2 {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    padding-left: 34px;
}

/* --- Ticket List V2 --- */
.ticket-list-v2 {
    margin-top: 20px;
    border-top: 1px solid #f0f2f5;
    padding-top: 16px;
}

.ticket-list-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a2d5a;
    margin-bottom: 12px;
}

.ticket-list-header i {
    font-size: 16px;
}

.ticket-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8f9fb;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.ticket-row-v2:last-child {
    margin-bottom: 0;
}

.ticket-row-v2:hover {
    background: #eef2ff;
}

.ticket-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ticket-name-v2 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ticket-price-v2 {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
}

/* --- Counter Buttons V2 --- */
.ticket-counter-v2 {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e6ed;
    overflow: hidden;
}

.counter-btn-v2 {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2755b0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.counter-btn-v2:hover:not(:disabled) {
    background: #eef2ff;
}

.counter-btn-v2:disabled {
    color: #ccc;
    cursor: not-allowed;
}

.counter-btn-v2.plus {
    border-left: 1px solid #e2e6ed;
}

.counter-btn-v2.minus {
    border-right: 1px solid #e2e6ed;
}

.counter-value-v2 {
    min-width: 36px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 767px) {
    .options-header-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 12px;
    }

    .options-header-content {
        gap: 12px;
    }

    .options-header-icon {
        width: 38px;
        height: 38px;
    }

    .options-header-icon i {
        font-size: 18px;
    }

    .options-header-v2 h4 {
        font-size: 1rem;
    }

    .options-list-v2 {
        padding: 14px;
    }

    .option-card-inner {
        padding: 16px 18px;
    }

    .option-card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .option-select-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .option-name-v2 {
        font-size: 0.95rem;
    }

    .option-price-value {
        font-size: 1.4rem;
    }

    .ticket-row-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
    }

    .ticket-counter-v2 {
        align-self: flex-end;
    }

    .option-expanded-v2 {
        padding: 0 18px 18px;
    }

    .inc-exc-content-v2 {
        padding-left: 0;
    }
}

@media (max-width: 380px) {
    .option-card-inner {
        padding: 14px;
    }

    .option-price-value {
        font-size: 1.25rem;
    }

    .option-select-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* --- Date Selection Pills --- */
.date-timezone-info {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 12px;
}

.date-timezone-info i {
    font-style: italic;
    color: #6b7280;
}

.date-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.date-pill {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.date-pill .pill-date {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
}

.date-pill:hover {
    border-color: #2755b0;
    background: #f0f7ff;
}

.date-pill.active {
    background: #eff6ff;
    border-color: #2755b0;
    box-shadow: 0 0 0 1px #2755b0;
    border: 1px;
}

.date-pill.active .pill-date {
    color: #2755b0;
}

.all-dates-btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    transition: all 0.2s ease;
    height: 48px;
}

.all-dates-btn i.bi-calendar3 {
    color: #2755b0;
    font-size: 18px;
}

.all-dates-btn i.bi-chevron-down {
    font-size: 14px;
    color: #2755b0;
}

.all-dates-btn.active {
    background: #eff6ff;
    border-color: #2755b0;
    box-shadow: 0 0 0 1px #2755b0;
        border: 1px;
}

.all-dates-btn.active span {
    color: #2755b0;
}

.all-dates-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

@media (max-width: 576px) {
    .date-pills-container {
        gap: 8px;
    }

    .date-pill {
        padding: 8px 12px;
        min-width: 70px;
    }

    .date-pill .pill-date {
        font-size: 14px;
    }

    .all-dates-btn {
        padding: 8px 12px;
        font-size: 14px;
        height: 42px;
    }
}

.date-pill.disabled {
    opacity: 0.4;
    pointer-events: none;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.things-list-sec ul li::before{
    top: 50% !important;
}