.drpWhatsOn{
    border: 1px solid #000;
    border-radius: 0px;
    --cui-date-picker-focus-border-color: none;
    --cui-date-picker-focus-box-shadow: none
    /* --cui-date-picker-focus-border-color: #e54b61; /* Change to red */
    /* --cui-date-picker-focus-box-shadow: 0 0 0 0.25rem rgba(229, 75, 97, 0.25) */
}

.drpWhatsOn .date-picker-separator::before{
    background-color: #000;
}

.drpWhatsOn .date-picker-indicator::before{
    background-color: #000;
}

.drpWhatsOn .calendar-cell.range.current{
    background-color: #e54b612b;
}

.drpWhatsOn .calendar-cell-inner.day::after{
    background: #e54b612b;

}
.drpWhatsOn .calendar-cell.selected:not(th,.next,.previous) .calendar-cell-inner, .calendar-row.selected:not(th,.next,.previous) .calendar-cell-inner{
    background-color: #e54b61;
}
.drpWhatsOn .calendar-cell.range-hover:first-of-type .calendar-cell-inner::before, .calendar-cell:not(.range-hover)+.calendar-cell.range-hover .calendar-cell-inner::before{
    border-color: #e54b61;
}
.drpWhatsOn .calendar-cell.range-hover .calendar-cell-inner::before, .calendar-row.range-hover .calendar-cell-inner::before{
    border-color: #e54b61;
}
.drpWhatsOn  .calendar-cell.range-hover:not(:has(~ .range-hover)) .calendar-cell-inner::before{
    border-color: #e54b61;
}
.drpWhatsOn .calendar-nav-date .btn:hover{
    color: #e54b61;
}

.drpWhatsOn.date-picker:focus{
    border-color: red;
}
section#filters{
    border-bottom: none;
}

/* Filter Badges */
.filter-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 30px;
}

.filter-badge:hover {
    background-color: #e54b61;
}

.filter-badge .badge-text {
    white-space: nowrap;
}

.filter-badge .badge-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.filter-badge .badge-remove svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 2;
}

/* RTL Support for Filter Badges */
[dir="rtl"] .filter-badges-container {
    flex-direction: row-reverse;
}

[dir="rtl"] .filter-badge {
    flex-direction: row-reverse;
}

/* Full Screen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.98);
    overflow: hidden;
}

.fullscreen-modal.active {
    display: flex;
    flex-direction: column;
}

/* Modal Header */
.fullscreen-modal-header {
    padding: 20px 0;
    color: #fff;
    z-index: 10;
}

.fullscreen-modal-title h3 {
    margin: 0;
    font-size: 32px;
    color: #fff;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.close-modal-btn:hover {
    opacity: 0.7;
}

.close-modal-btn svg {
    width: 30px;
    height: 30px;
}

/* Modal Body */
.fullscreen-modal-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0 100px 0;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for modal body */
.fullscreen-modal-body::-webkit-scrollbar {
    width: 8px;
}

.fullscreen-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.fullscreen-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.fullscreen-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.fullscreen-carousel-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.fullscreen-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.fullscreen-slide img {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Photo Credit Section */
.fullscreen-photo-credit-row {
    margin-top: 20px;
    width: 100%;
}

.fullscreen-photo-credit {
    padding: 0 20px;
}

.fullscreen-photo-credit .photo-credit-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.fullscreen-photo-credit .photo-credit-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Modal Footer */
.fullscreen-modal-footer {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.fullscreen-modal-footer .container {
    position: relative;
}

.fullscreen-nav-container {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* RTL Support */
[dir="rtl"] .fullscreen-modal-header .col-12 {
    flex-direction: row-reverse;
}

/* Responsive */
@media only screen and (max-width: 767.98px) {
    .fullscreen-modal-header {
        padding: 15px 0;
    }

    .fullscreen-modal-title h3 {
        font-size: 22px;
    }

    .fullscreen-modal-body {
        padding: 15px 0 80px 0;
    }

    .fullscreen-modal-footer {
        bottom: 20px;
    }

    .fullscreen-nav-container {
        gap: 15px;
    }

    .fullscreen-photo-credit-row {
        margin-top: 15px;
    }

    .fullscreen-photo-credit {
        padding: 0;
    }

    .fullscreen-photo-credit .photo-credit-text {
        font-size: 12px;
    }

    .fullscreen-carousel-container {
        max-height: calc(100vh - 150px);
    }

    .fullscreen-slide img {
        max-height: calc(100vh - 150px);
    }
}

/* Installation Images Thumbnail */
.installation-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.installation-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.installation-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.installation-thumbnail-wrapper:hover .installation-thumbnail-overlay {
    opacity: 1;
}

.installation-thumbnail-wrapper:hover .installation-thumbnail-img {
    transform: scale(1.05);
}

.installation-images-icon {
    width: 32px;
    height: 32px;
    stroke: #fff;
    stroke-width: 1.5px;
}

@media only screen and (max-width: 767.98px) {
    .installation-images-icon {
        width: 24px;
        height: 24px;
    }
}

/* Installation Navigation Buttons */
.installation-prev-btn,
.installation-next-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.installation-prev-btn:hover,
.installation-next-btn:hover {
    opacity: 0.7;
}

.installation-prev-btn svg,
.installation-next-btn svg {
    width: 30px;
    height: 30px;
}

/* Installation Carousel */
#installation-carousel {
    width: 100%;
    max-height: calc(100vh - 200px);
}

/* Installation Slider Counter */
.installation-counter-row {
    margin-top: 15px;
}

.installation-slider-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.installation-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.installation-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.installation-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.installation-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.installation-counter-text {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media only screen and (max-width: 767.98px) {
    .installation-slider-counter {
        gap: 10px;
    }

    .installation-dot {
        width: 6px;
        height: 6px;
    }

    .installation-counter-text {
        font-size: 12px;
    }
}