5ADr4asD
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f3f0;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #2c3e50;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #b12704;
margin: 15px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
transition: transform 0.2s ease;
cursor: pointer;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 200px;
min-width: 150px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e0ddd9;
}
.specs-table th {
background: #eae7e2;
font-weight: 600;
color: #3a3a3a;
width: 40%;
}
.specs-table td {
background: #fff;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
margin: 20px 0;
padding: 15px 0;
border-top: 1px solid #e0ddd9;
border-bottom: 1px solid #e0ddd9;
}
.why-buy {
background: #f8f6f3;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 1.4rem;
font-weight: 600;
color: #2c3e50;
}
.why-buy ul {
list-style: none