SRmow2qW
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-card {
max-width: 1000px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
}
.header {
background-color: #000000;
padding: 20px;
text-align: center;
margin-bottom: 20px;
border: 2px solid #007bff;
border-radius: 10px;
}
.header h1 {
color: #ffffff;
margin: 0;
font-size: 1.8rem;
letter-spacing: 0.5px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0;
justify-content: center;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
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);
}
.price-badge {
font-size: 2rem;
font-weight: 700;
color: #007bff;
background: #eef4ff;
display: inline-block;
padding: 8px 24px;
border-radius: 40px;
margin: 10px 0 20px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e2e6ea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #2c3e50;
width: 40%;
}
.description-box {
background: #f9fafc;
padding: 20px 24px;
border-radius: 14px;
margin: 20px 0;
border-left: 4px solid #007bff;
}
.why-buy ul {
list-style: none;
padding: 0;
margin: 20px 0;
}
.why-buy li {
padding: 10