EfWGRGqG
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f4f6f9;
margin: 0;
padding: 2rem 1rem;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 2rem 2.5rem;
transition: all 0.2s ease;
}
h1, h2, h3 {
font-weight: 600;
margin-top: 0;
color: #1e293b;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 0.25rem;
letter-spacing: -0.01em;
color: #0f172a;
}
.price-badge {
font-size: 1.8rem;
font-weight: 700;
color: #0b5e42;
background: #e6f7ec;
display: inline-block;
padding: 0.3rem 1.2rem;
border-radius: 40px;
margin: 0.5rem 0 1.5rem 0;
}
.image-gallery {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0 2rem 0;
}
.image-gallery img {
max-width: 180px;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9edf2;
transition: transform 0.2s;
background: #fafbfc;
}
.image-gallery img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #f8fafc;
border-radius: 16px;
overflow: hidden;
margin: 1.8rem 0;
}
.specs-table td, .specs-table th {
padding: 0.9rem 1.2rem;
border-bottom: 1px solid #e2e8f0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #1e293b;
width: 38%;
background: #f1f5f9;
}
.specs-table td:last-child {
color: #1e293b;
background: white;
}
.description-box {
background: #f9fafb;
padding: 1.6rem 2rem;
border-radius: 20