PopularProducts, SkinTypeQuiz

This commit is contained in:
Evdokia
2025-04-23 14:14:35 +03:00
parent fa7f3b49f9
commit 5ce92c4b81
11 changed files with 415 additions and 53 deletions

View File

@@ -0,0 +1,77 @@
.popular-products {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}
.popular-products h2 {
text-align: center;
margin-bottom: 40px;
font-size: 28px;
}
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
gap: 30px;
}
.product-card {
border: 1px solid #eee;
border-radius: 12px;
overflow: hidden;
transition: transform 0.3s;
}
.product-card:hover {
transform: translateY(-5px);
}
.product-image {
width: 100%;
height: 200px;
object-fit: cover;
}
.product-card h3 {
padding: 15px 15px 0;
margin: 0;
font-size: 18px;
}
.product-card p {
padding: 10px 15px;
color: #666;
font-size: 14px;
margin: 0;
}
.product-footer {
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
}
.price {
font-weight: bold;
color: #333;
}
.details-btn {
background: #f8f9fa;
border: 1px solid #ddd;
padding: 8px 15px;
border-radius: 20px;
cursor: pointer;
transition: all 0.3s;
opacity: 0; /* Скрываем кнопку по умолчанию */
}
.product-card:hover .details-btn {
background: #6C63FF;
color: white;
border-color: #6C63FF;
opacity: 1; /* Показываем кнопку при наведении */
}