/* Kategori sidebar: filtre ve fiyat slider */
.ov-category-sidebar .range-wrap {
    width: 88%;
    max-width: 100%;
    padding-top: 4px;
    padding-bottom: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.ov-category-sidebar .range-wrap .row {
    margin-left: 0;
    margin-right: 0;
}

.ov-category-sidebar .range-wrap .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
}

.ov-category-sidebar #ov-category-price-slider,
.ov-category-sidebar .ov-category-price-slider.noUi-target {
    width: 100%;
    max-width: 100%;
    min-height: 22px;
    margin: 16px 0 10px;
    box-sizing: border-box;
}

.ov-category-sidebar .range-wrap .noUi-target {
    border: none;
    box-shadow: none;
    background: transparent;
}

.ov-category-sidebar .range-wrap .noUi-horizontal {
    height: 8px;
}

.ov-category-sidebar .range-wrap .noUi-horizontal .noUi-handle {
    width: 18px;
    height: 18px;
    top: -6px;
    border-radius: 50%;
    cursor: grab;
}

.ov-category-sidebar .range-wrap .noUi-horizontal .noUi-handle:active {
    cursor: grabbing;
}

.ov-category-sidebar .range-wrap .noUi-background {
    height: 8px;
    border-radius: 10px;
}

.ov-category-sidebar .range-wrap .noUi-connect {
    height: 8px;
    border-radius: 10px;
}

.ov-category-sidebar .slider-labels {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
    padding-right: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    gap: 0;
    box-sizing: border-box;
}

/* İki eşit sütun: min solda, max sağda (aksi halde max metni ortaya kayar) */
.ov-category-sidebar .slider-labels .caption {
    flex: 1 1 0;
    min-width: 0;
}

.ov-category-sidebar .slider-labels .caption:first-child {
    text-align: left;
}

.ov-category-sidebar .slider-labels .caption:last-child {
    text-align: right;
}

.ov-category-sidebar .slider-labels .caption span {
    display: inline-block;
    white-space: nowrap;
}

/* Panel filtreleri (radio): kategori satırlarıyla aynı görünüm */
.ov-category-sidebar .ov-panel-filters .containerss input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Ürün ızgarası: görsel linki (detay) ile hover overlay (sepete ekle) üst üste — kapalı overlay tıklamayı yutmasın; hover'da sepet tıklanabilsin */
.list-grid-product-wrap .product-card .product-card-img > a {
    position: relative;
    z-index: 1;
    display: block;
}
.list-grid-product-wrap .product-card .product-card-img .ov-cat-gallery {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 260px;
    overflow: hidden;
    background: #f7f7f7;
}
.list-grid-product-wrap .product-card .product-card-img .ov-cat-gallery img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .45s ease;
}
.list-grid-product-wrap .product-card .product-card-img .ov-cat-gallery img.is-active {
    opacity: 1;
}
.list-grid-product-wrap .product-card .product-card-img .ov-cat-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(2px);
}
.list-grid-product-wrap .product-card .product-card-img .ov-cat-gallery-dots .ov-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
}
.list-grid-product-wrap .product-card .product-card-img .ov-cat-gallery-dots .ov-cat-dot.is-active {
    width: 8px;
    height: 8px;
    background: #fff;
}
.list-grid-product-wrap .product-card .product-card-content .ov-cat-title-row {
    display: block;
}
.list-grid-product-wrap .product-card .product-card-content .ov-cat-code {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    color: #666;
    background: #efefef;
    vertical-align: middle;
}
.list-grid-product-wrap .product-card .product-card-img .overlay {
    z-index: 2;
    top: auto;
    bottom: 10px;
    left: 0;
    right: 0;
    height: auto;
    background: transparent !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events: none;
    display: flex;
    justify-content: center;
}
.list-grid-product-wrap .product-card:hover .product-card-img .overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.list-grid-product-wrap .product-card .product-card-img .overlay .cart-area {
    pointer-events: auto;
}
.list-grid-product-wrap .product-card .product-card-img .view-and-favorite-area {
    display: none;
}
