#desktop-area-sub_category,
#desktop-area-manufacturer,
#desktop-area-features,
#filterSonuc {
    transition: opacity 0.3s ease;
}

#desktop-area-sub_category.fading,
#desktop-area-manufacturer.fading,
#desktop-area-features.fading,
#filterSonuc.fading {
    opacity: 0;
}

.skel-count-box {
    width: 35px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 3px;
}

.skel-count-text {
    width: 120px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 3px;
    margin-left: 6px;
}

/* Ürün kartları başlangıçta görünmez */
.product-card-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.skeleton-box {
    background-color: #f2f2f2;
    background-image: linear-gradient(90deg, #f2f2f2 0px, #e5e5e5 40px, #f2f2f2 80px);
    background-size: 600px;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

@keyframes shimmer {
    0% {
        background-position: -600px;
    }
    100% {
        background-position: 600px;
    }
}

/* --- STANDART (GRID) TASARIM --- */
.skel-grid-card {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    height: 430px;
}

.skel-grid-img {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}

.skel-grid-text {
    width: 70%;
    height: 15px;
    margin-bottom: 8px;
}

.skel-grid-title {
    width: 90%;
    height: 20px;
    margin-bottom: 18px;
}

.skel-grid-price {
    width: 40%;
    height: 20px;
}

.skel-grid-footer {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

.skel-grid-btn {
    flex: 1;
    height: 35px;
}

/* --- LİSTE TASARIMI --- */
.skel-list-row {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    width: 100%;
}

.skel-list-thumb {
    width: 80px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.skel-list-info {
    flex-grow: 1;
}

.skel-list-line {
    width: 200px;
    height: 15px;
    margin-bottom: 8px;
}

.skel-list-status {
    width: 60px;
    height: 25px;
    margin: 0 30px;
}

.skel-list-price {
    width: 80px;
    height: 20px;
    margin-right: 40px;
}

.skel-list-action {
    width: 120px;
    height: 40px;
    flex-shrink: 0;
}

/* Filtre Skeleton Temel Yapısı */
.skeleton-filter-wrapper {
    padding: 10px;
}

.skeleton-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.skel-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Skeleton Parçaları */
.skeleton-box {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 4px;
    background-size: 200% 100%;
    animation: shimmerFilter 1.5s infinite linear;
}

.skel-check {
    width: 18px;
    height: 18px;
}

/* Checkbox yeri */
.skel-text {
    width: 100px;
    height: 14px;
}

/* İsim yeri */
.skel-count {
    width: 30px;
    height: 14px;
}

/* Sayı yeri (parantez içi) */

@keyframes shimmerFilter {
    to {
        background-position-x: -200%;
    }
}