/* Stock Tooltip */
.stock-tooltip {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

.stock-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.toggle-switch:hover .stock-tooltip,
.stock-option:hover .stock-tooltip {
    opacity: 1;
    visibility: visible;
}

.stock-option .stock-tooltip {
    top: -38px;
    left: 50%;
}

@media (max-width: 768px) {
    .stock-tooltip {
        top: -35px;
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* Modern Select Wrapper */
.modern-select-wrapper {
    position: relative;
    width: 100%;
}

.modern-select-wrapper .modern-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 35px !important;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.modern-select-wrapper .modern-select:focus {
    border-color: var(--theme-color, #4286f5);
    box-shadow: 0 0 0 2px rgba(66, 134, 245, 0.1);
    outline: none;
}

.modern-select-wrapper .modern-select:hover {
    border-color: #bbb;
}

.modern-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.modern-select-wrapper:hover .modern-select-arrow {
    color: var(--theme-color, #4286f5);
}

.modern-select-wrapper .modern-select:focus + .modern-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.modern-select option {
    padding: 10px;
    font-size: 14px;
}

/* Popups (Sıralama & Filtre) */
.siralama-popup,
.filtre-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: none;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.siralama-popup.active,
.filtre-popup.active {
    display: block;
}

.siralama-popup-header,
.filtre-popup-header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #e7e6e6;
    z-index: 1;
}

.siralama-popup-header h4,
.filtre-popup-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.close-siralama,
.filtre-popup-header .close-filtre {
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    padding: 5px;
    color: #333;
    cursor: pointer;
}

.siralama-popup-content {
    padding: 0;
    background-color: #fff;
    margin: 0;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.filtre-popup-content {
    padding: 15px;
}

.siralama-popup-footer,
.filtre-popup-footer {
    position: sticky;
    bottom: 0;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #e7e6e6;
    display: flex;
    justify-content: space-between;
}

.siralama-popup-footer button,
.filtre-popup-footer button {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    font-size: 14px;
    flex-grow: 1;
    margin: 0 5px;
}

.siralama-popup-footer .siralama-temizle,
.filtre-popup-footer .filtre-temizle {
    background-color: #f1f1f1;
    color: #333;
}

.siralama-popup-footer .siralama-uygula,
.filtre-popup-footer .filtre-uygula {
    background-color: #007bff;
    color: #fff;
}

body.siralama-popup-active,
body.filtre-popup-active {
    overflow: hidden;
}

@media (max-width: 768px) {
    .siralama-popup-content {
        margin: 0;
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
        padding-bottom: 60px;
    }
}

/* Selected Filters Container */
.selected-filters-container {
    margin: 0 0 15px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.selected-filters-container h5 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
}

.selected-filter-item {
    display: inline-flex;
    align-items: center;
    background-color: #e9f0ff;
    border-radius: 5px;
    padding: 4px 8px;
    margin: 0 5px 5px 0;
    font-size: 12px;
}

.selected-filter-item button {
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    padding: 0 0 0 5px;
    cursor: pointer;
    line-height: 1;
}

/* Mobil Üst & Mobil Alan */
.mobil-ust {
    padding: 0;
    border: 1px #e7e6e6 solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.mobil-ust .col-6 {
    padding: 0;
    width: 50%;
}

.mobil-alan {
    background-color: transparent;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: all 0.2s;
}

.mobil-alan i {
    margin-right: 6px;
    font-size: 16px;
}

.filtre-ac {
    border-right: 2px #e7e6e6 solid;
}

.mobil-alan:hover {
    background-color: #f5f5f5;
}

/* Aktif Filtreler Alanı */
.filter-alan {
    margin-bottom: 20px;
    padding: 20px 5px 5px 5px;
    border: 1px #e7e6e6 solid;
    border-radius: 8px;
    position: relative;
    display: block;
}

.filter-alan.fst {
    margin-top: 10px;
}

.filter-alan.hidden {
    display: none;
}

.filter-alan:after {
    content: "Aktif Filtreler";
    background-color: white;
    position: absolute;
    top: -10px;
    left: 20px;
    padding: 0 5px;
    font-size: 14px;
    border-radius: 8px;
}

.active-filters-container {
    margin-bottom: 15px;
}

.applied-filter-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.applied-filter-container li.appliedFilter {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 4px 25px;
    position: relative;
    margin: 0;
}

.applied-filter-container .filter-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.applied-filter-container .brand {
    color: #666;
}

.applied-filter-container .filter-content strong {
    font-weight: 600;
}

.applied-filter-container .appliedFilter a {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    border-radius: 50%;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    line-height: 1;
}

.applied-filter-container .appliedFilter a:before {
    content: "×";
    font-size: 12px;
}

.removeAllFilters button {
    font-size: 11px;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    background-color: #e0e0e0 !important;
    color: #555 !important;
    border: none;
    cursor: pointer;
    font-weight: normal !important;
    transition: background-color 0.2s;
}

.removeAllFilters button:hover {
    background-color: #d0d0d0 !important;
}

@media (max-width: 767px) {
    .applied-filter-container ul {
        flex-wrap: wrap;
    }

    .applied-filter-container li.appliedFilter {
        margin-bottom: 5px;
    }
}

.filtre-butonlari {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Seçenek kartları */
.option-card input[type="checkbox"] {
    display: none;
}

.option-card input[type="checkbox"]:checked + .toggle-slider {
    background-color: #4286f5;
}

.option-card input[type="checkbox"]:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.option-card {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.option-card:last-child {
    border-bottom: none;
}

.option-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.option-title i {
    font-size: 18px;
    margin-right: 10px;
    color: #4286f5;
}

.option-content {
    padding: 0 0 0 28px;
}

/* Toggle Switch */
.toggle-switch {
    padding: 0 0 0 28px;
}

.toggle-switch--relative {
    position: relative;
}

.switch-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 24px;
    margin-right: 12px;
    transition: all 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.toggle-text {
    font-size: 14px;
    color: #666;
}

/* Custom Select */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-size: 14px;
    padding: 10px 16px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s;
}

.custom-select:focus {
    outline: none;
    border-color: #4286f5;
    box-shadow: 0 0 0 2px rgba(74, 108, 247, 0.1);
}

/* Breadcrumb */
.breadcrumb {
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-transparent {
    background-color: transparent !important;
    color: #000;
}

.breadcrumb-mobile-wrap {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}

.breadcrumb-row {
    display: table;
    width: 100%;
    margin: 20px 0;
}

.breadcrumb-cell {
    display: table-cell;
    vertical-align: middle;
}

.breadcrumb-cell--right {
    border-bottom: none;
}

.breadcrumb li a {
    color: #888888 !important;
    text-decoration: none;
}

.breadcrumb li {
    color: black;
}

.breadcrumb li:last-child {
    color: #000000 !important;
}

.breadcrumb li + li:before,
.breadcrumb > li + li:before {
    content: " > ";
    padding: 0 5px;
    color: black;
}

.campaign-title-hidden {
    font-size: 20px;
    margin: 0;
    display: none;
}

.left-sorting-contents {
    display: contents;
}

.btn-filter-icon {
    font-size: 14px;
    color: #fff;
}

.stock-option {
    gap: 10px;
    min-width: 100px;
    position: relative;
}

.switch-no-margin {
    margin: 0;
}

.active-filters-wrap {
    margin-bottom: 10px;
}

.removeAllFilters {
    padding: 0;
}

.btn-clear-filters {
    font-weight: normal;
    padding: 8px;
    border: 0;
    border-radius: 21px;
    background: #eeeeee;
    font-family: Helvetica, Roboto, Arial, sans-serif;
    color: #484848;
}

.sidebar-title {
    color: #000;
}

.katresim {
    padding: 0 13px;
}

/* Keyframes & Animations */
.slide-in {
    animation: slideIn 0.3s forwards;
}

.slide-out {
    animation: slideOut 0.25s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Dynamic Sidebar */
.sidebar-menu.dynamic-sidebar .kategori-kutu-option-,
.sidebar-menu.dynamic-sidebar [class*="kategori-kutu-option-"] {
    display: none;
    margin-top: 10px;
}

.sidebar-search-active .sidebar-container {
    position: fixed !important;
}

.arama-kapat-ikonu {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
    font-size: 16px;
    transition: color 0.2s;
}

.arama-kapat-ikonu:hover {
    color: #333;
}

.arama-container {
    position: relative;
    height: 35px;
}

.menu-baslik-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 14px;
    padding: 5px 0;
    margin-bottom: 10px;
}

.menu-baslik {
    flex: 1;
    color: black;
    font-size: 15px;
    font-weight: 600;
    padding: 0 13px;
}

.kategori-arama-ikonu {
    cursor: pointer;
    color: var(--theme-color);
    padding: 8px;
    transition: all 0.3s ease;
}

.kategori-arama-ikonu:hover {
    color: #2b5bb0;
}

.kategori-arama-kutusu {
    display: none;
    position: relative;
    background-color: #fff;
    margin: 0 13px;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 5px 0;
}

.kategori-arama-kutusu.slide-in {
    display: block !important;
    animation: slideInFromRight 0.3s forwards;
}

.kategori-arama-kutusu.slide-out {
    animation: slideOutToRight 0.3s forwards;
}

.menu-baslik-wrapper.fade-out {
    animation: fadeOut 0.2s forwards;
}

.menu-baslik-wrapper.fade-in {
    animation: fadeIn 0.2s forwards;
}

.kategori-arama-kutusu input {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 8px 35px 8px 10px;
    font-size: 13px;
    width: 100%;
    transition: all 0.3s ease;
    height: 35px;
}

.kategori-arama-kutusu input:focus,
.kategori-arama-kutusu input:hover {
    border-color: #ddd;
    outline: none;
    box-shadow: none;
}

.kategori-arama-kutusu input:hover + .arama-ikonu,
.kategori-arama-kutusu input:focus + .arama-ikonu,
.arama-ikonu:hover {
    color: var(--theme-color);
    transition: color 0.3s ease;
}

.arama-ikonu {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 14px;
}

.search-icon-container {
    text-align: center;
    margin-right: 13px;
    background-color: #efefef;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#connected_kategori li a {
    font-size: 14px;
    font-weight: 500;
    color: black;
}

#kategori_menu04 li a {
    color: black;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
    padding: 3px 0;
    font-size: 14px;
    font-weight: 500;
}

#kategori_menu04 li a:hover {
    color: #3498db;
    padding-left: 5px;
}

#connected_kategori li span,
.sidebar-menu ul li label span {
    font-size: 14px;
    font-weight: 500;
}

#connected_kategori > li > div.category-item > a::before,
#kategori_menu04 > li > div.category-item > a::before,
#connected_kategori > li > a::before,
#kategori_menu04 > li > a::before {
    content: "• ";
    font-size: 15px;
    margin-right: 4px;
    color: var(--theme-color);
}

#connected_kategori li li div.category-item > a::before,
#kategori_menu04 li li div.category-item > a::before,
#connected_kategori li li a::before,
#kategori_menu04 li li a::before {
    content: "• ";
    font-size: 15px;
    margin-right: 4px;
    color: #888888;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
    font-size: 13px;
}

.hidden-category,
.kategori-gizli {
    display: none !important;
    transition: 0.3s ease-in-out;
}

.toggle-subcategory {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: var(--theme-color);
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subcategory-list {
    display: none;
    padding-left: 20px;
}

.subcategory-list.active {
    display: block;
}

#sidebar-menu .options-filters {
    border: none;
    padding: 10px 0;
}

#sidebar-menu .options-filters input[type="checkbox"] {
    appearance: none;
    width: 1.5rem !important;
    height: 1.5rem !important;
    border: 1px solid #888888;
    border-radius: 2px;
    margin-right: 8px;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    background-color: #fff;
    margin-top: -15px;
    all: initial;
}

#sidebar-menu .options-filters label {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-menu,
.sidebar-menu-kare {
    margin-bottom: 20px;
    border-radius: 8px;
}

.sidebar-menu li,
.sidebar-menu-kare li {
    border: 0;
    padding: 5px 13px;
}

.sidebar-menu .checkbox input[type="checkbox"] {
    margin-top: -2px;
    position: relative;
    width: 1.8rem !important;
    height: 1.8rem !important;
    margin-right: 8px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    vertical-align: middle;
    border: 1px solid #888888;
    border-radius: 13px;
    transition: all 0.3s ease;
    background-color: #fff;
    font-size: 13px;
}

.sidebar-menu-kare .checkbox input[type="checkbox"] {
    margin-top: -2px;
    position: relative;
    width: 2rem !important;
    height: 2rem !important;
    margin-right: 12px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    vertical-align: middle;
    border: 1px solid #888888;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.sidebar-menu .checkbox input[type="checkbox"]:hover,
.sidebar-menu-kare .checkbox input[type="checkbox"]:hover {
    border: 1px solid var(--theme-color);
}

.sidebar-menu .checkbox input[type="checkbox"]:checked,
.sidebar-menu-kare .checkbox input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
}

.sidebar-menu .radio label .fa-star {
    font-size: 16px;
    margin-right: 2px;
}

.sidebar-menu-kare .checked-star {
    color: var(--theme-color);
}

.sidebar-menu-kare .checked {
    color: #d4d4d4;
}

.daha-fazla {
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 5px;
    display: block;
    width: 100%;
    border: none;
    margin-top: 10px;
    text-align: start;
    background-color: white;
    margin-left: 10px;
    font-weight: 500;
    color: #484848;
    font-size: 13px;
}

.daha-fazla:hover {
    transform: scale(1.01);
}

.filtre-uygula {
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    border-radius: 8px;
    width: 100%;
    height: 4rem;
    margin: 0;
    transition: all 0.3s ease;
    color: white;
}

.filtre-uygula:hover {
    transform: scale(0.98);
}

.btn_filter {
    background-color: var(--theme-color);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn_filter:hover {
    transform: scale(1.05);
}

#product_options .size-options li input[type="radio"]:checked + label,
#product_options .number-options li input[type="radio"]:checked + label,
#product_options .size-options li input[type="checkbox"]:checked + label,
#product_options .number-options li input[type="checkbox"]:checked + label {
    box-shadow: 0 0 0 1px var(--theme-color);
}

#product_options .size-options li label,
#product_options .number-options li label {
    background-color: var(--theme-color) !important;
    color: white !important;
    border-radius: 8px;
    box-shadow: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

#product_options .size-options li label:hover,
#product_options .number-options li label:hover {
    transform: scale(1.05);
}

.sidebar-container {
    position: fixed;
    top: 0;
    left: -420px;
    width: 420px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    overflow-y: hidden;
    display: none;
    flex-direction: column;
    transition: left 0.3s ease;
    padding: 0;
    border-radius: 0 10px 10px 0;
}

.sidebar-container.active {
    left: 0;
}

.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-backdrop.active {
    display: block;
    opacity: 1;
}

.row.sidebar-active {
    margin-left: 300px;
    transition: margin-left 0.3s ease;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 20px;
    border-bottom: 1px solid rgb(51 51 51 / 12%);
}

.sidebar-header h4 {
    margin: 0;
    font-weight: 600;
    padding: 0 13px;
}

.sidebar-body {
    padding: 20px;
    overflow: auto;
}

#closeSidebar {
    background: none;
    border: none;
    color: #333;
    font-size: 20px;
    transition: transform 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
}

#closeSidebar:hover,
#closeSidebar:active,
#closeSidebar:focus {
    box-shadow: none !important;
    outline: none !important;
    border: none;
}

.panel.panel-default.theme-module {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #eaeaea;
}

.panel-heading.theme-module-title {
    background: #f8f8f8;
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
}

.panel-heading.theme-module-title strong {
    font-weight: 600;
    color: #444;
}

.nav-tabs {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 15px;
}

.nav-tabs > li > a {
    border: none;
    border-radius: 0;
    color: #777;
    font-weight: 500;
    padding: 15px 0;
    transition: all 0.2s ease;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
    border-bottom: 2px solid #3498db;
    color: #3498db;
    background-color: transparent;
}

.sidebar-container .view-options li a {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
}

.view-options li.active a {
    color: var(--theme-color);
}

.pull-right {
    color: #888888;
}

#footerSelect {
    background-color: white !important;
}

.no-results-found {
    padding: 15px;
    text-align: center;
    color: #888;
    display: none;
    font-style: italic;
    font-size: 13px;
}

#collapsePriceRange {
    padding: 15px 10px 25px 10px;
}

#collapsePriceRange .slider {
    width: 100% !important;
}

#collapsePriceRange .slider-track {
    width: 100% !important;
    height: 8px !important;
    margin-top: -4px !important;
}

#collapsePriceRange .slider-selection {
    background: var(--theme-color) !important;
}

#collapsePriceRange .slider-handle {
    width: 20px !important;
    height: 20px !important;
    margin-left: -10px !important;
    margin-top: -6px !important;
    background: var(--theme-color) !important;
}

#collapsePriceRange .tooltip {
    margin-top: 10px !important;
}

.list-group.theme-module.category-features {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: visible;
}

.list-group.theme-module.category-features .list-group-item {
    border: none;
    padding: 10px 0;
}

.sonuc-bulunamadi {
    display: none;
    padding: 10px;
    color: #888;
}

.tab-content {
    padding: 0 !important;
}

.tab-content > .active {
    margin-top: 0 !important;
}

.socials-wrap span:first-child {
    margin-top: 10px;
}

.liste-gorunum .product-box {
    display: flex;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.kolon-2 .product-box {
    height: 350px;
}

.kolon-3 .product-box {
    height: 300px;
}

#toggle_sidebar_btn {
    font-size: 18px;
    cursor: pointer;
}

.filter-sort-row {
    margin-bottom: 20px;
}

.products-sorting {
    width: 100%;
    border-radius: 8px;
    padding: 0;
}

.left-sorting {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.sorting-option label {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #dcdfe6;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #bbb;
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.sorting-option.view-option ul.view-options {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 5px;
    list-style: none;
}

.sorting-option.view-option ul.view-options li {
    margin: 0;
    padding: 0;
}

.sorting-option.view-option ul.view-options li a {
    margin: 0;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sorting-option.view-option ul.view-options li a i {
    margin: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    z-index: 1;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

#header-top-menu {
    margin-bottom: 0;
}

.filter-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.clear-all-btn {
    background: transparent;
    color: #ff5722;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0;
    transition: all 0.3s;
}

.clear-all-btn:hover {
    color: #e64a19;
}

.clear-all-btn i {
    margin-right: 5px;
    font-size: 12px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 50px;
    padding: 5px 12px;
    transition: all 0.2s;
}

.filter-tag:hover {
    border-color: #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.tag-title {
    font-size: 11px;
    color: #777;
    margin-right: 5px;
    font-weight: 500;
}

.tag-value {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    margin-right: 8px;
}

.remove-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #eaeaea;
    color: #777;
    text-decoration: none;
    transition: all 0.2s;
}

.remove-tag:hover {
    background: #ff5722;
    color: white;
}

.remove-tag i {
    font-size: 10px;
}

.products-sorting .sorting-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    margin: 0;
}

.products-sorting .left-sorting {
    margin: 0;
    padding: 0;
}

.products-sorting .right-sorting {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.products-sorting .sorting-option {
    flex: unset;
    min-width: unset;
}

.products-sorting .sorting-wrapper {
    display: flex;
    gap: 16px;
}

.products-sorting .sorting-wrapper .sorting-option {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-sorting .sorting-wrapper .sorting-option select.form-control {
    padding-left: 10px !important;
    background: white !important;
    font-size: 14px;
    color: #333;
    padding: 0 5px;
    margin: 0;
    outline: none;
    width: 100%;
}

.products-sorting .sorting-option.stock-option {
    gap: 10px;
    display: flex;
    align-items: center;
}

.products-sorting .sorting-option.stock-option .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.products-sorting .sorting-option.stock-option .switch input {
    display: none;
}

.products-sorting .sorting-option.stock-option .switch .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: #4286F5 1px solid;
    border-radius: 34px;
    transition: all 0.4s;
}

.products-sorting .sorting-option.stock-option .switch input:checked + .slider {
    background-color: #4286F5;
}

.products-sorting .sorting-option.stock-option .switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    background-color: #4286F5;
    transition: transform 0.4s ease-in;
    border-radius: 50%;
    top: 2px;
}

.products-sorting .sorting-option.stock-option .switch input:checked + .slider:before {
    background-color: white;
    transform: translateX(24px);
}

.not-found-title {
    font-size: 36px;
}

.not-found-actions {
    margin-top: 30px;
}

.not-found-home-btn {
    margin-left: 10px;
}

@keyframes dot {
    0%, 20% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.5);
    }
    60% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

#loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
}

#loading-spinner .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    margin: 0 5px;
    animation: dot 1.4s infinite;
}

#loading-spinner .dot:nth-child(2) {
    animation-delay: 0.2s;
}

#loading-spinner .dot:nth-child(3) {
    animation-delay: 0.4s;
}

#price-slider {
    height: 8px;
    border: none;
    background: #e0e0e0;
    border-radius: 4px;
    box-shadow: none;
}

#price-slider .noUi-connect {
    background: var(--theme-color, #4286F5);
    border-radius: 4px;
}

#price-slider .noUi-handle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--theme-color, #4286F5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    top: -8px;
    right: -11px;
}

#price-slider .noUi-handle:before,
#price-slider .noUi-handle:after {
    display: none;
}

#price-slider .noUi-handle:focus {
    outline: none;
}

#price-slider .noUi-handle:hover {
    transform: scale(1.1);
}

.price-inputs .form-control {
    height: 38px;
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #fff;
    text-align: center;
    font-size: 14px;
}

.price-inputs .form-control:focus {
    border-color: var(--theme-color, #4286F5);
    box-shadow: 0 0 0 2px rgba(66, 134, 245, 0.1);
    outline: none;
}

.btn-price-apply {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: var(--theme-color, #4286F5);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-price-apply:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

.glyphicon {
    color: white;
}

.carousel-control.left, .carousel-control.right{
    margin-inline: 60px;
    background: none !important;
}