Фото жоқ
Карниз фасадный
| Артикул | ДК-КР-120 |
| Материал | Пенополистирол |
| Длина | 1200 мм |
| Высота | 150 мм |
В коробке: 6 шт
.card-image {
height: 180px;
position: relative;
background: #f1f1f1;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
/* Фото */
.card-image img {
width: 100%;
height: 100%;
object-fit: contain;
z-index: 2;
}
/* Placeholder */
.placeholder {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
color: #999;
background: repeating-linear-gradient(
45deg,
#f3f3f3,
#f3f3f3 10px,
#ededed 10px,
#ededed 20px
);
z-index: 1;
}
/* Егер фото бар болса — placeholder көрінбейді */
.card-image img + .placeholder {
display: none;
}