ZyBtJut5
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
width: 100%;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
padding: 30px 35px;
box-sizing: border-box;
}
h1 {
font-size: 2.2rem;
margin: 0 0 10px 0;
color: #1a1a1a;
font-weight: 700;
letter-spacing: -0.5px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #b30000;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e0e0;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
}
.section-title {
font-size: 1.5rem;
font-weight: 600;
margin: 30px 0 15px 0;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 8px;
color: #222;
}
table.specs {
width: 100%;
border-collapse: collapse;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
table.specs td {
padding: 12px 18px;
border-bottom: 1px solid #eaeaea;
vertical-align: top;
}
table.specs tr:last-child td {
border-bottom: none;
}
table.specs td:first-child {
font-weight: 600;
width: 180px;
color: #333;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
color: #2c2c2c;
background: #f9f9f9;
padding: 20px 25px;
border-radius: 14px;
margin: 15px 0;
}
.why-buy ul {
list-style: none;
padding: 0;
margin: 10px 0 0 0;
}
.why-buy li {
padding: 10px 0 10px 30