uFOIdLrI
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
margin-bottom: 15px;
}
.gallery-thumbs {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 8px;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
}
.gallery-thumbs img:hover {
border-color: #007bff;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #111;
}
.brand {
font-size: 1rem;
color: #555;
margin-bottom: 10px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #b12704;
margin: 15px 0;
}
.price sup {
font-size: 1rem;
}
.condition {
background: #e9ecef;
display: inline-block;
padding: 4px 14px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 15px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 0.95rem;
}
.specs-table td {
padding: 8px 12px;
border-bottom: 1px solid #e9ecef;
}
.specs-table td:first-child {
font-weight: 600;
color: #333;
width: 40%;
}
.description {
line-height: 1.7;
margin: 20px 0;
color: #2c2c2c;
}
.why-b