A3WssRuN
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s;
}
h1 {
font-size: 2rem;
font-weight: 600;
color: #1e2a3a;
margin-top: 0;
margin-bottom: 10px;
border-bottom: 2px solid #e9ecef;
padding-bottom: 15px;
}
.price-badge {
background: #0d6efd;
color: white;
font-weight: 700;
font-size: 1.6rem;
padding: 8px 20px;
border-radius: 40px;
display: inline-block;
margin: 10px 0 20px 0;
letter-spacing: 0.5px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 14px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #f8f9fa;
border-radius: 16px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 14px 18px;
text-align: left;
border-bottom: 1px solid #dee2e6;
}
.specs-table th {
background: #e9ecef;
font-weight: 600;
color: #1e2a3a;
width: 35%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
color: #2c3e50;
background: #f1f3f5;
padding: 20px 25px;
border-radius: 16px;
margin: 20px 0;
}
.why-buy {
background: #fff3cd;
border-left: 6px solid #ffc107;
padding: 18px 25