.slider-nav .slick-slide img{
    opacity: 0.5;
}
.slider-nav .slick-current.slick-active img{
    opacity: 1;
    border: 1px solid #e54b61;
}
@media only screen and (max-width: 767.98px) {
    /* Styles for mobile only */
    .select-arrow-down{
        right: 9px;
    }
}
.indicator{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.on-loan{
    color: #01b127;
}
.partially-loan{
    color: #F87217;
}
.bg-on-loan{
    background-color: #01b127;
}
.bg-partially-loan{
    background-color: #F87217;
}

/* On View status - blue shade */
.on-view {
    color: #0077B6;
}
.bg-on-view {
    background-color: #0077B6;
}

/* Live pulse indicator for On View */
.on-view-pulse-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.on-view-pulse {
    position: relative;
    width: 10px;
    height: 10px;
}

.on-view-pulse::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #0077B6;
    border-radius: 50%;
    animation: pulse-ring 1.5s ease-out infinite;
}

.on-view-pulse::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #0077B6;
    border-radius: 50%;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Status filter checkboxes row */
.status-filter-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.status-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.status-filter-checkbox input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 0;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

.status-filter-checkbox input[type="checkbox"]:checked {
    background-color: #000;
}

.status-filter-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.status-filter-checkbox label {
    cursor: pointer;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
}

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

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

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

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

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

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

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

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

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

/* Full Screen Button */
.btn-fullscreen {
    background: transparent;
    border: 1px solid #000;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    text-transform: uppercase;
}

.btn-fullscreen:hover {
    background: #000;
    color: #fff;
}

[dir="rtl"] .btn-fullscreen {
    font-family: 'Alexandria', sans-serif;
}

/* 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-carousel {
    width: 100%;
    max-height: calc(100vh - 200px);
}

.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;
}

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

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

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

/* 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);
    }
}