vC6h4juq
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f9fafc;
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 10px 30px rgba(0,0,0,0.06);
padding: 30px 35px;
box-sizing: border-box;
}
h1 {
font-size: 28px;
font-weight: 600;
margin: 0 0 8px 0;
color: #1e293b;
}
.brand {
color: #64748b;
font-size: 15px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.brand span {
background: #eef2f6;
padding: 4px 12px;
border-radius: 30px;
font-size: 13px;
color: #1e293b;
}
.price {
font-size: 32px;
font-weight: 700;
color: #0f172a;
margin: 10px 0 20px 0;
}
.price small {
font-size: 16px;
font-weight: 400;
color: #64748b;
margin-left: 8px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0;
}
.gallery img {
width: calc(25% – 12px);
min-width: 140px;
border-radius: 16px;
object-fit: cover;
background: #f1f5f9;
aspect-ratio: 1/1;
border: 1px solid #e9edf2;
transition: 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 { grid-template-columns: 1fr; }
.gallery img { width: calc(50% – 8px); }
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #f8fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 18px;
border-bottom: 1px solid #e2e8f0;
font-size: