/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 06 2025 | 16:51:15 */
/* Стили для страницы с подкатегориями - без изменения количества колонок */
.woocommerce ul.products li.product-category {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.woocommerce ul.products li.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #e74c3c;
}

.woocommerce ul.products li.product-category a {
    text-decoration: none !important;
    color: inherit;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
    height:75px
}

.woocommerce ul.products li.product-category:hover .woocommerce-loop-category__title {
    color: #e74c3c;
}

.woocommerce ul.products li.product-category .count {
    display: inline-block;
    background: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
}

.woocommerce ul.products li.product-category .category-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
}

.woocommerce ul.products li.product-category .category-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.woocommerce ul.products li.product-category:hover .category-image img {
    transform: scale(1.08);
}

.woocommerce ul.products li.product-category .button {
    display: inline-block;
    margin: 1.5rem auto;
    padding: 0.8rem 1.8rem;
    background: #e74c3c;
    color: white !important;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product-category .button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.woocommerce ul.products li.product-category .product-category-link {
    display: block;
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.woocommerce ul.products li.product-category span.onsale {
    display: none;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #e74c3c;
    margin: 0.8rem auto 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.woocommerce ul.products li.product-category:hover .woocommerce-loop-category__title::after {
    opacity: 1;
}

.woocommerce-result-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.woocommerce-ordering {
    margin-bottom: 2rem;
}

.woocommerce-ordering select {
    padding: 0.6rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 1rem;
    color: #333;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.woocommerce-pagination {
    margin-top: 3rem;
    text-align: center;
}

.woocommerce-pagination ul {
    display: inline-flex;
    gap: 8px;
}

.woocommerce-pagination ul li {
    list-style: none;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

/* Заголовок страницы */
.woocommerce-products-header__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.woocommerce-products-header__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
}