WCsno5ul
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1, h2, h3 {
font-weight: 600;
margin-top: 0;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.image-gallery {
display: flex;
flex-direction: column;
gap: 12px;
}
.main-image {
background: #f0f2f5;
border-radius: 16px;
padding: 20px;
display: flex;
align-items: center;
justify-content: center;
min-height: 280px;
}
.main-image img {
max-width: 100%;
max-height: 260px;
object-fit: contain;
}
.thumbnails {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.thumb {
background: #f0f2f5;
border-radius: 12px;
padding: 8px;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
border: 2px solid transparent;
transition: 0.2s;
cursor: default;
}
.thumb img {
max-width: 100%;
max-height: 70px;
object-fit: contain;
}
.thumb:hover {
border-color: #0077b6;
}
.price-area {
margin: 20px 0 10px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0a2540;
}
.currency {
font-size: 1.2rem;
font-weight: 400;
color: #555;
}
.brand-badge {
background: #e0e7ff;
color: #1e3a5f;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #f9fafc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 10px 16px;
border-bottom: 1px solid #e6e