pIuzTiuq
“`html
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 30px;
}
.product-gallery {
flex: 1 1 45%;
min-width: 280px;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
.gallery-main {
background: #f0f2f5;
border-radius: 16px;
padding: 20px;
text-align: center;
margin-bottom: 15px;
}
.gallery-main img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.gallery-thumbnails {
display: flex;
gap: 12px;
flex-wrap: wrap;
justify-content: center;
}
.gallery-thumbnails img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
background: #e8ecf1;
}
.gallery-thumbnails img:hover {
border-color: #3b82f6;
transform: scale(1.02);
}
h1 {
font-size: 2rem;
margin: 0 0 8px 0;
font-weight: 700;
color: #0f172a;
}
.price-badge {
font-size: 2.2rem;
font-weight: 700;
color: #1e293b;
background: #eef2ff;
display: inline-block;
padding: 8px 20px;
border-radius: 40px;
margin: 10px 0 15px 0;
}
.condition-tag {
background: #dbeafe;
color: #1e40af;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
display: inline-block;
margin-left: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #f8fafc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td