body {    
    background: #141414;
}
ul.breadcrumb {
  display: flex;
    justify-content: flex-start;
}
ul.breadcrumb li a {
  color:white;
}
.breadcrumb li:last-child a {
    color: #c49b6e;
    pointer-events: none;
}
ul.breadcrumb li + li::before {
    content: '>';
    color: #c49b6e;
    margin: 0 10px;
}
.box-heading, .right h1, .right #product, .right .attr {
  color:white;
}
.right, .product-row .item {
  background: black;
}
.mar-bot-medium, .product-row .item{
  border-radius:10px;
}
.product-row .item{
  padding:0;
}
.radius-medium{
  border-radius:0px;
}
.product-row .item {
    width: calc(33.3333% - 20px); /* Ширина для 3-х колонок */
    margin: 0 20px 20px 0; /* Отступы для сетки */
    padding: 0; /* Убираем отступы, чтобы картинка была во всю ширину */
    background-color: black;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}
.product-row .item .image {
    width: 100%;
}
.product-row .item .caption {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-row .item .caption .name a,
.product-row .item .price {
    color: white;
}
 .product-row .item .qty {
    padding: 10px 30px;
    background:black;
}
/* Прижимаем блок с ценой и кнопками к низу */
.product-row .item .caption > .qty {
    margin-top: auto;
}
.image a img{
    width: 100%;
}
.product-row .item .caption .name a{
    margin-top:5px;
}
.product-row .item .caption .name{
    margin-top:15px;
    padding: 0 20px;
}
.product-row .item .caption {
    padding-top: 0px;
}
.product-row .item .image {
    overflow: hidden; /* Скрываем части изображения, которые выходят за границы контейнера */
    position: relative;
}

.product-row .item .image img {
    transition: transform 0.3s ease; /* Плавная анимация увеличения */
    transform-origin: center center; /* Увеличиваем от центра изображения */
}

.product-row .item:hover .image img {
    transform: scale(1.1); /* Увеличиваем изображение на 10% при наведении */
}
.product-row .item .qty button {
    background: 0 0;
    color: #c49b6e;
}
.product-row .item:hover {
    background: #c49b6e !important;
}

.product-row .item:hover .qty {
    background: transparent;
}
.product-row .item:hover .qty button {
    color: white;
}
 @media (max-width: 768px) {
    .product-row {
        justify-content: space-between;
    }
    .product-row .item {
        width: calc(50% - 5px);
        margin: 0 0 10px 0;
    }
    .product-row .item .caption > .qty {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .product-row .item .caption .price {
        margin-bottom: 10px;
    }
    ul.breadcrumb li:last-child {
        display: none;
    }
 }
