qbONOTuJ
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin-top: 0;
margin-bottom: 10px;
color: #111;
}
.brand-model {
font-size: 1.1rem;
color: #555;
margin-bottom: 20px;
}
.price-badge {
background: #2c7a2c;
color: white;
font-size: 1.8rem;
font-weight: 700;
padding: 8px 20px;
border-radius: 40px;
display: inline-block;
margin: 10px 0 20px 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.image-gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.2s;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
width: 100%;
}
.gallery-grid img {
width: 100%;
height: 180px;
object-fit: cover;
border-radius: 10px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
.specs-table th {
background: #f0f0f0;
font-weight: 600;
width: 35%;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description-box {
background: #f5f7fa;
padding: 20px 25px;
border-radius: 14px;
margin: 25px 0;
line-height: 1.6;