/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* Контейнер шорткода */
.product-categories-shortcode {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 10px 0;
    align-items: center;
}

/* Каждая категория */
.product-category-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

/* Изображение категории */
.product-category-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

/* Заглушка, если нет изображения */
.product-category-no-img {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: #e0e0e0;
    border-radius: 50%;
}

/* Название категории */
.product-category-name {
    font-size: 16px;
    font-weight: 400;
}

/* Для варианта без ссылок */
.product-category-item.no-link {
    cursor: default;
}

.product-category-item.no-link:hover {
    transform: none;
    background: #f5f5f5;
}

/* Ошибки и пустые состояния */
.product-categories-error,
.product-categories-empty {
    font-size: 12px;
    color: #999;
    padding: 5px 0;
}

/* Адаптив */
@media (max-width: 768px) {
    .product-categories-shortcode {
        gap: 8px;
    }
    .product-category-img,
    .product-category-no-img {
        width: 40px;
        height: 40px;
    }
    .product-category-name {
        font-size: 16px;
    }
	.castomvar tr {
		display: flex;
    flex-direction: column;
    align-items: flex-start;
	}
	.castomvar bdi {
    font-size: 28px;
}
}