iqrsYbqc
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
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;
}
.gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
background: #f0f2f5;
object-fit: contain;
}
.gallery .thumb-row {
display: flex;
gap: 12px;
margin-top: 12px;
flex-wrap: wrap;
}
.gallery .thumb-row img {
width: 80px;
height: 80px;
border-radius: 10px;
cursor: default;
border: 2px solid transparent;
transition: 0.2s;
}
.gallery .thumb-row img:hover {
border-color: #0056b3;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
.product-info h1 {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 8px 0;
line-height: 1.2;
}
.brand-tag {
color: #2c3e50;
font-weight: 500;
background: #eef2f7;
display: inline-block;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.9rem;
margin-bottom: 12px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0b5e42;
margin: 12px 0 10px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #5a6a7a;
}
.condition {
background: #f1c40f20;
color: #7d5d0a;
padding: 4px 12px;
border-radius: 30px;
font-weight: 500;
display: inline-block;
font-size: 0.9rem;
margin-bottom: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;