/* ====== ОБЩИЙ КОНТЕЙНЕР ====== */
.uc-fashion-store.t-store {
background-color: #faf9f8;
padding: 50px 0;
font-family: 'Inter', sans-serif;
}
/* ====== ХЛЕБНЫЕ КРОШКИ ====== */
.uc-fashion-store .uc-breadcrumbs {
margin-bottom: 30px;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
color: #999;
}
.uc-fashion-store .uc-breadcrumbs a {
color: #666;
text-decoration: none;
transition: color 0.3s ease;
}
.uc-fashion-store .uc-breadcrumbs a:hover {
color: #c89a8d;
}
/* ====== КАРТОЧКА ТОВАРА ====== */
.uc-fashion-store .t-store__card {
position: relative;
border-radius: 14px;
overflow: hidden;
background-color: #fff;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
transition: all 0.35s ease;
}
.uc-fashion-store .t-store__card:hover {
transform: translateY(-6px);
box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
/* Фото с зумом */
.uc-fashion-store .t-store__card__bgimg {
transition: transform 0.5s ease;
}
.uc-fashion-store .t-store__card:hover .t-store__card__bgimg {
transform: scale(1.05);
}
/* ====== ЗАГОЛОВОК ====== */
.uc-fashion-store .t-store__card__title {
font-family: 'Playfair Display', serif;
font-size: 20px;
letter-spacing: 0.5px;
color: #111;
margin-top: 12px;
transition: color 0.3s ease;
}
.uc-fashion-store .t-store__card:hover .t-store__card__title {
color: #c89a8d;
}
/* ====== ЦЕНА ====== */
.uc-fashion-store .t-store__card__price {
font-family: 'Inter', sans-serif;
font-size: 16px;
color: #666;
font-weight: 500;
}
/* ====== КНОПКА ====== */
.uc-fashion-store .t-store__card__btn {
font-family: 'Inter', sans-serif;
font-size: 14px;
background-color: #c89a8d;
border-radius: 50px;
padding: 10px 24px;
color: #fff;
transition: background-color 0.3s ease;
}
.uc-fashion-store .t-store__card__btn:hover {
background-color: #a87e73;
}
/* ====== БЕЙДЖИ SALE / NEW ====== */
.uc-fashion-store .uc-badge {
position: absolute;
top: 14px;
left: 14px;
padding: 6px 12px;
font-size: 12px;
font-weight: bold;
letter-spacing: 1px;
border-radius: 6px;
color: #fff;
backdrop-filter: blur(4px);
background-color: rgba(0,0,0,0.4);
}
.uc-fashion-store .uc-badge-sale {
background-color: rgba(200, 70, 70, 0.7);
}
.uc-fashion-store .uc-badge-new {
background-color: rgba(70, 200, 140, 0.7);
}