/* Filter Styles */
.ts-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
}

.ts-filter-btn {
    padding: 8px 16px;
    background-color: transparent;
    color: #0d0d0c;
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    font-size: 18px;
    
}
.ts-filter-btn:hover {
    font-weight: 600;
    transition: all 0.1s ease-in-out;
}
.ts-filter-btn.active {
    background-color: #0d0d0c;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.ts-filter-btn.active:hover {
    font-weight: 500;
}



.ts-cpt-overview-moebel-container {
    width: 100%;
}
.ts-cpt-overview-moebel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 0;
}

.ts-cpt-item {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    box-sizing: border-box;
}

.ts-cpt-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    width: 100%;
    padding-top: 100%; /* Makes it square */
}

.ts-cpt-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .ts-cpt-overview-moebel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .ts-cpt-overview-moebel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ts-cpt-overview-moebel-grid {
        grid-template-columns: 1fr;
    }
}

.ts-cpt-title {
    font-size: 16px;
    margin: 0;
    color: #0d0d0c;
}

/* Responsive adjustments */
/*@media (max-width: 768px) {
    .ts-cpt-item {
        width: 50% !important;
    }
}

@media (max-width: 480px) {
    .ts-cpt-item {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .ts-cpt-item {
        width: 50% !important;
    }
    
    .ts-filter-buttons {
        gap: 6px;
    }
    
    .ts-filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ts-cpt-item {
        width: 100% !important;
    }
    
    .ts-filter-buttons {
        gap: 4px;
    }
    
    .ts-filter-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}*/