/* Стилі хлібних крихт з вашого шаблону */
#breadcrumbs {
    margin-bottom: 20px;

}

#breadcrumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#breadcrumbs ul li {
    font-size: 13px;
    color: #888;
}

#breadcrumbs ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

#breadcrumbs ul li a:hover {
    color: #FEBD17; /* Ваш основний жовтий коліR */
}

#breadcrumbs .arrow {
    margin: 0 10px;
    color: #ccc;
    font-size: 10px;
}

#breadcrumbs .changeName {
    font-weight: bold;
    color: #333;
}

/* Основна сітка та контейнери */

#catalogColumn .product {
    width: 25%; /* 4 товари в ряд */
    float: left;
    box-sizing: border-box;
}

#catalogLine {
    border: 1px solid #e7e8ea; /* Верхня панель сортування */
    margin-bottom: 24px;
}

.limiter {
    max-width: 1200px; /* Або інше значення з вашої верстки */
    margin: 0 24px;
    box-sizing: border-box;
}

/* Адаптивність сітки */
@media all and (max-width: 1800px) {
    #catalogColumn .product {
        width: 25%;
    }
}

@media all and (max-width: 1024px) {
    #catalogColumn .product {
        width: 33.333%;
    }
}

/* Картка товару (Product Item) */
.product .tabloid {
    background-color: #ffffff;
    border: 1px solid #e7e8ea;
    transition: all 0.2s ease-in-out;
    position: relative;
    padding: 12px;
}

.product .tabloid:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product .name {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.product .name:hover {
    color: #FEBD17; /* Основний жовтий колір теми */
}

.product .picture {
    display: block;
    text-align: center;
    height: 230px;
    line-height: 230px;
}

.product .picture img {
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
}

/* Ціни та кнопки */
.product .price {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
}

.product .price .discount {
    color: #888888;
    text-decoration: line-through;
    font-size: 13px;
    margin-left: 8px;
}

.addCart {
    background-color: #FEBD17;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.addCart:hover {
    background-color: #ffa800; /* Колір при наведенні */
}

.addCart.loading {
    background-image: url(/bitrix/templates/dresscodeV2/images/loader-38px.svg) !important;
    background-position: 50% 50% !important;
    background-repeat: no-repeat !important;
    pointer-events: none;
}

/* Пагінація (Перемикання сторінок) */
.bx-pagination .bx-pagination-container ul li {
    display: inline-block;
    margin: 0 2px 15px 2px;
}

.bx-pagination .bx-pagination-container ul li span {
    display: block;
    padding: 8px 12px;
    background: #eff2f4;
    color: #000;
    transition: all 0.3s ease;
}

.bx-pagination .bx-pagination-container ul li.bx-active span {
    background: #FEBD17;
    color: #fff;
}

/* Маркери (Акція, Новинка)*/
.product .markerContainer {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
}

.product .marker {
    background-color: #424242;
    color: #ffffff;
    padding: 3px 6px;
    font-size: 11px;
    margin-bottom: 4px;
}