ePiS64ux
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 700;
margin: 0 0 10px 0;
color: #0b1a2a;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #eef2f7;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 15px;
}
.gallery-row {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 20px;
}
.gallery-img {
flex: 1 1 180px;
max-width: 220px;
border-radius: 16px;
overflow: hidden;
background: #f0f2f5;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
transition: transform 0.2s;
}
.gallery-img img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}
.gallery-img:hover {
transform: scale(1.02);
}
.price-area {
display: flex;
align-items: baseline;
gap: 12px;
margin: 20px 0 10px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #1e3c5c;
}
.shipping-note {
background: #e6f0fa;
padding: 6px 16px;
border-radius: 40px;
font-size: 0.9rem;
font-weight: 500;
color: #1a4b6d;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 18px;
border-bottom: 1px solid #e2e8f0;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {