62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
.section-title .title {
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
color: #222;
|
|
border-left: 4px solid var(--color-main, #c62828);
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.product {
|
|
border: 1px solid #eee;
|
|
background: #fff;
|
|
transition: transform .3s, box-shadow .3s;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
}
|
|
.product:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.product-img img {
|
|
width: 100%;
|
|
object-fit: contain;
|
|
transition: transform .3s;
|
|
}
|
|
.product:hover .product-img img {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.product-label span.sale {
|
|
background: var(--color-main, #c62828);
|
|
color: #fff;
|
|
border-radius: 3px;
|
|
}
|
|
.product-label span.new {
|
|
background: #111;
|
|
color: #fff;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.product-category {
|
|
color: #777;
|
|
font-size: 13px;
|
|
}
|
|
.product-name a {
|
|
color: #333;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: color .2s;
|
|
}
|
|
.product-name a:hover {
|
|
color: var(--color-main, #c62828);
|
|
}
|
|
.product-price {
|
|
color: var(--color-main, #c62828);
|
|
font-weight: 700;
|
|
}
|
|
.product-old-price {
|
|
color: #999;
|
|
font-size: 13px;
|
|
} |