Pjbf2ash
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 8px 0;
letter-spacing: -0.3px;
}
.brand-sub {
color: #555;
font-size: 1rem;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.brand-sub span {
background: #e9ecef;
padding: 4px 12px;
border-radius: 30px;
font-size: 0.85rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0 20px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
transition: transform 0.2s;
cursor: default;
}
.gallery img:hover {
transform: scale(1.01);
}
.price-area {
font-size: 1.8rem;
font-weight: 700;
color: #1a1a2e;
margin: 10px 0 20px;
}
.price-area small {
font-weight: 400;
font-size: 1rem;
color: #666;
margin-left: 10px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafbfc;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #e9ecef;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 38%;
color: #2c3e50;
}
.specs-table td:last-child {
color: #1e293b;
}
.description-box {
background: #f2f4f6;
padding: 20px 24px;
border-radius: 14px;
margin: 25px 0;
line-height: 1.6;
}
.why-buy {