drMOxxre
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1e1e2a;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #111;
}
.brand-sub {
color: #5a5a6e;
font-size: 1rem;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.price-badge {
background: #1e3c5c;
color: white;
font-weight: 700;
font-size: 1.8rem;
padding: 8px 22px;
border-radius: 40px;
display: inline-block;
margin: 10px 0 20px 0;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.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;
object-fit: cover;
background: #f0f2f5;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-main {
flex: 2 1 400px;
}
.gallery-thumbs {
flex: 1 1 180px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
width: 100%;
border-radius: 12px;
max-height: 120px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 30px 0 20px;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table th, .specs-table td {
padding: 14px 20px;
text-align: left;
border-bottom: 1px solid #e4e7ed;
}
.specs-table th {
background: #eef1f6;
font-weight: 600;
width: 35%;
color: #1e2a3a;
}
.specs-table tr:last-child td, .specs-table tr:last-child th {
border-bottom: none;
}
.description-box