iIIFoRqS
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1a1a1a;
}
.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;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.product-gallery {
flex: 1 1 45%;
min-width: 280px;
}
.gallery-main {
background: #f0f0f0;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
padding: 30px 10px;
margin-bottom: 15px;
}
.gallery-main img {
max-width: 100%;
height: auto;
max-height: 380px;
object-fit: contain;
}
.gallery-thumbs {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 12px;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
background: #eee;
}
.gallery-thumbs img:hover {
border-color: #2b7a4b;
}
.product-info {
flex: 1 1 48%;
min-width: 280px;
}
h1 {
font-size: 2rem;
font-weight: 700;
margin: 0 0 6px 0;
letter-spacing: -0.3px;
}
.brand-sub {
color: #5a6b5e;
font-size: 1rem;
font-weight: 400;
margin-bottom: 12px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #1f7a3d;
margin: 15px 0 10px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #555;
}
.specs-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px 20px;
background: #f4f6f4;
padding: 16px 20px;
border-radius: 14px;
margin: 20px 0;
}
.spec-item {
display: flex;
justify-content: space-between;
border-bottom: 1px dashed #d0d7d0;
padding: 4px 0;
}
.spec-label {