cB7Qxzrc
“`html
body {
font-family: ‘Calibri’, ‘Arial’, sans-serif;
background: #f9f9f9;
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: 28px;
font-weight: 700;
margin: 0 0 10px;
color: #111;
}
.brand-sub {
font-size: 16px;
color: #555;
margin-bottom: 20px;
}
.price-area {
font-size: 32px;
font-weight: bold;
color: #b12704;
margin: 15px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
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;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e0e0e0;
text-align: left;
}
.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;
}
.desc-section {
margin: 30px 0;
line-height: 1.7;
font-size: 17px;
}
.why-buy {
background: #f0f7ff;
padding: 20px 25px;
border-radius: 14px;
margin: 30px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 22px;
color: #0a4b7a;
}
.why-buy ul {
padding-left: 20px;
margin: 10px 0 0