i5TEwJu0
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin: 0 0 8px 0;
color: #1a1a1a;
}
.brand-sub {
color: #555;
font-size: 1rem;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.brand-sub span {
background: #eaeaea;
padding: 4px 12px;
border-radius: 30px;
font-weight: 500;
font-size: 0.85rem;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery-grid img {
width: 100%;
max-width: 200px;
height: auto;
border-radius: 12px;
object-fit: cover;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.gallery-grid img:hover {
transform: scale(1.02);
}
.price-area {
font-size: 1.8rem;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px;
}
.price-area .currency {
font-size: 1.2rem;
vertical-align: super;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e0e0e0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
color: #333;
}
.specs-table td:last-child {
color: #555;
}
.description-box {
background: #f9f9f9;
padding: 20px 24px;
border-radius: 14px;
margin: 25px 0;
line-height: 1.6;
font-size: 1.05rem;
}
.why