eqdh4asD
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-main {
flex: 2;
min-width: 280px;
}
.gallery-thumbs {
flex: 1;
min-width: 120px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
border-radius: 12px;
cursor: pointer;
opacity: 0.85;
}
.gallery-thumbs img:hover {
opacity: 1;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin: 0 0 8px 0;
letter-spacing: -0.3px;
}
.price {
font-size: 1.9rem;
font-weight: 700;
color: #1a1a2e;
margin: 10px 0 20px 0;
}
.price span {
background: #e9f0e9;
padding: 4px 12px;
border-radius: 40px;
font-size: 1rem;
font-weight: 500;
color: #2a6f2a;
margin-left: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px;
background: #fafafa;
border-radius: 16px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #e9ecef;
}
.specs-table th {
background: #f1f3f5;
font-weight: 600;
width: 35%;
color: #1e293b;
}
.specs-table td {
background: white;
}
.description {
font-size: 1.05rem;
line-height: 1.6;
margin: 20px 0