CdVt4LuZ
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f7f5f2;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
box-sizing: border-box;
}
.product-title {
font-size: 28px;
font-weight: 700;
color: #1e1e1e;
margin: 0 0 10px 0;
line-height: 1.2;
}
.price-badge {
font-size: 26px;
font-weight: 700;
color: #b12704;
background: #fef0ed;
display: inline-block;
padding: 6px 18px;
border-radius: 40px;
margin: 8px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 25px 0;
}
.gallery img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
object-fit: cover;
border: 1px solid #eaeaea;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.flex-row {
display: flex;
flex-wrap: wrap;
gap: 30px;
margin: 25px 0;
}
.specs-table {
flex: 1 1 280px;
border-collapse: collapse;
background: #fafafa;
border-radius: 16px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid #e6e6e6;
font-size: 15px;
}
.specs-table th {
background: #f0ede8;
font-weight: 600;
color: #2c2c2c;
width: 40%;
}
.specs-table td {
background: white;
}
.description-box {
flex: 2 1 400px;
}
.description-box h3 {
font-size: 20px;
margin: 0 0 12px 0;
color: #222;
}
.description-box p {
font-size: 16px;
line-height: 1.6;
color: #3a3a3a;
margin: 0