FStEYArL
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1a1a1a;
line-height: 1.6;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 1.9rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #111;
}
.brand-sub {
font-size: 1rem;
color: #555;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #c8102e;
margin: 10px 0 20px 0;
}
.price sup {
font-size: 1rem;
top: -0.5em;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0 30px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
border: 1px solid #e9ecef;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-item {
flex: 1 1 180px;
min-width: 140px;
}
.gallery-item img {
width: 100%;
display: block;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #f8f9fa;
border-radius: 12px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 12px 18px;
text-align: left;
border-bottom: 1px solid #dee2e6;
vertical-align: top;
}
.specs-table th {
background: #e9ecef;
font-weight: 600;
width: 35%;
color: #1e293b;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description-box {
background: #f1f3f5;
padding: 20px 25px;
border-radius: 12px;
margin: 20px 0 25px