    /* Стили для скелетон-разметки */
.tab-skeleton {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 товаров в ряду, как у вас в стилях */
    gap: 20px;
    padding: 20px 0;
}

.skeleton-item {
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    height: 350px; /* Примерная высота товара */
    display: flex;
    flex-direction: column;
}

.skeleton-image, 
.skeleton-title, 
.skeleton-price, 
.skeleton-button {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-image {
    height: 200px;
    width: 100%;
    margin-bottom: 15px;
}

.skeleton-title {
    height: 18px;
    width: 90%;
    margin-bottom: 10px;
}

.skeleton-price {
    height: 24px;
    width: 60%;
    margin-bottom: 15px;
}

.skeleton-button {
    height: 40px;
    width: 100%;
    margin-top: auto;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Стили для табов */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}