/*  */

/* new drop down look start */

/* ===========================================
   FREYZA PREMIUM SELECT2
=========================================== */

/* Main box */
.select2-container--default .select2-selection--single {
    height: 46px !important;
    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.035) !important;
    backdrop-filter: blur(10px);

    border: 1px solid rgba(212, 168, 75, 0.18) !important;
    border-radius: 16px !important;

    transition: 0.3s ease;
    padding-left: 10px;
    border-radius: 0.9rem !important;
}

/* Position clear icon */
.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    position: absolute;
    right: 50px; /* Leave space for dropdown arrow */
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.25s;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear:hover {
    color: var(--gold);
}

/* Focus */

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus
    .select2-selection--single {
    border-color: var(--gold) !important;

    box-shadow:
        0 0 0 3px rgba(212, 168, 75, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Selected text */

.select2-selection__rendered {
    font-weight: 400;
    font-size: 0.92rem;
    color: var(--muted) !important;
    letter-spacing: 0.02em;
}

/* Placeholder */

.select2-selection__placeholder {
    color: var(--muted) !important;
}

/* Arrow */

.select2-selection__arrow {
    height: 44px !important;

    right: 14px !important;
}

.select2-selection__arrow b {
    border-width: 6px 5px 0 5px !important;

    border-color: var(--gold) transparent transparent transparent !important;
}

/* ===========================================
   DROPDOWN
=========================================== */

.select2-dropdown {
    margin-top: 10px;

    overflow: hidden;

    border-radius: 10px !important;

    background: linear-gradient(
        180deg,
        rgba(36, 22, 15, 0.98),
        rgba(24, 15, 10, 0.98)
    );

    border: 1px solid rgba(212, 168, 75, 0.22) !important;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

/* Search area */

.select2-search {
    padding: 12px;

    background: transparent;
}

.select2-search__field {
    height: 44px;

    border-radius: 12px !important;

    background: rgba(255, 255, 255, 0.04) !important;

    border: 1px solid rgba(212, 168, 75, 0.18) !important;

    color: #fff !important;

    padding: 0 14px !important;
}

.select2-search__field:focus {
    outline: none;

    border-color: var(--gold) !important;

    box-shadow: 0 0 0 2px rgba(212, 168, 75, 0.1);
}

/* ===========================================
   OPTIONS
=========================================== */

.select2-results__options {
    padding: 6px;
}

.select2-results__option {
    padding: 12px 16px;

    margin-bottom: 4px;

    border-radius: 10px;

    color: #e7d7b0;

    font-size: 0.93rem;

    transition: 0.25s;
}

/* Hover */

.select2-results__option--highlighted {
    background: linear-gradient(
        90deg,
        rgba(212, 168, 75, 0.18),
        rgba(212, 168, 75, 0.08)
    ) !important;

    color: #fff !important;
}

/* Selected */

.select2-results__option--selected {
    background: var(--gold) !important;

    color: #1c1309 !important;

    font-weight: 600;
}

/* Scrollbar */

.select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: transparent;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 75, 0.55);

    border-radius: 20px;
}

/* new drop down look ends */

.calendar-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border-radius: 0.65rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.booking-wrapper .row {
    align-items: stretch;
}

.booking-card {
    min-height: 680px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.booking-schedule-panel .booking-card,
.booking-form-panel .booking-card {
    min-height: 680px;
}

.booking-card .calendar-body,
.booking-card .booking-form-card > .row {
    flex: 1;
}

.calendar-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    /* overflow: hidden; */
    font-size: 0.95rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.calendar-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.calendar-icon {
    font-size: 1.35rem;
    color: var(--gold);
}

.calendar-month {
    font-size: 1rem;
    font-weight: 600;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}

.calendar-day {
    min-height: 40px;
    padding: 0.45rem 0.35rem;
    font-size: 0.78rem;
    border-radius: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.calendar-day:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.calendar-day.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: #1b1208;
}

.calendar-day.today {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.calendar-day.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.04);
}

.calendar-day-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.calendar-footer {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
}

.slot-label {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.slot-select-wrapper .form-select {
    font-size: 0.9rem;
    border-radius: 0.9rem;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slot-select-wrapper .form-select option:disabled {
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}

.slot-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.4rem;
    min-height: 1.2rem;
}

.slot-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin: 0.75rem 0 1rem;
}

.slot-dots span {
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.slot-dots span.active {
    background: var(--gold);
}

.booking-form-card .form-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.booking-form-card .form-select {
    border-radius: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.booking-form-card .col-lg-6:first-child {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form-card .row.g-4 {
    flex: 1;
}

/* .booking-form-card .submit-col {
    display: flex;
    align-items: flex-end;
} */

.booking-form-image {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 640px;
    position: relative;

    max-width: 100%;
    overflow: hidden;
}

.booking-form-slider {
    position: relative;
    width: 100%;
    min-height: 640px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(18, 10, 5, 0.82),
        rgba(18, 10, 5, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.booking-form-slider-track {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
}

.booking-form-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.booking-form-slide.active {
    opacity: 1;
    z-index: 1;
}

.booking-form-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    display: block;
    background: #111;
}
.booking-form-image,
.booking-form-slider,
.booking-form-slider-track,
.booking-form-slide {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.booking-form-image,
.booking-form-slider {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: auto;
}

.booking-form-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.booking-slider-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: auto;
    transform: translateY(-50%);
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.booking-slider-arrow {
    pointer-events: auto;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.booking-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.65);
}

.booking-slider-dots {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    pointer-events: none;
}

.booking-slider-dot {
    pointer-events: auto;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    transition:
        background 0.2s,
        transform 0.2s;
}

.booking-slider-dot.active {
    background: var(--gold);
    transform: scale(1.15);
}

.booking-slider-manual-controls {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 2;
}

.booking-slider-manual-controls button {
    pointer-events: auto;
    border-radius: 999px;
    border: 0;
    padding: 0.45rem 1.1rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
    transition: background 0.2s;
}

.booking-slider-manual-controls button:hover {
    background: rgba(0, 0, 0, 0.75);
}

#bookingSliderModal .modal-dialog {
    max-width: 900px;
}

#bookingSliderModal .modal-content {
    background: transparent;
    border: none;
}

#bookingSliderModal .modal-body {
    padding: 0;
}

.booking-slider-modal-img {
    width: 100%;
    border-radius: 0.75rem;
    object-fit: contain;
    background: #111;
}

.booking-form-image,
.booking-form-panel,
.booking-card {
    min-width: 0;
}

.booking-form-slider {
    min-height: 640px;
}
