h8YLdBvK
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1a1a1a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.sale-badge {
background: #d32f2f;
color: white;
display: inline-block;
padding: 6px 18px;
border-radius: 30px;
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.5px;
margin-bottom: 15px;
}
h1 {
font-size: 2.2rem;
margin: 0 0 5px 0;
font-weight: 700;
line-height: 1.2;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #2e7d32;
margin: 10px 0 20px 0;
}
.price span {
font-size: 1rem;
font-weight: 400;
color: #666;
text-decoration: line-through;
margin-left: 12px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
flex: 1 1 180px;
object-fit: cover;
background: #f0f0f0;
}
.gallery img:hover {
transform: scale(1.02);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #fafafa;
border-radius: 14px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #2c3e50;