K0qcRTuH
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f4f6f9;
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: 600;
margin: 0 0 10px 0;
color: #0b2b3c;
}
.brand-badge {
display: inline-block;
background: #0077b6;
color: white;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.85rem;
font-weight: 500;
letter-spacing: 0.3px;
margin-bottom: 15px;
}
.price-area {
font-size: 2.2rem;
font-weight: 700;
color: #1e6f5c;
margin: 15px 0 20px 0;
}
.price-area small {
font-size: 1rem;
font-weight: 400;
color: #5a6c7d;
margin-left: 8px;
}
.gallery-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0 30px 0;
}
.gallery-grid img {
width: 100%;
max-width: 220px;
height: auto;
border-radius: 14px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #e9edf2;
transition: transform 0.2s ease;
background: #fafbfc;
}
.gallery-grid img:hover {
transform: scale(1.02);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 30px 0;
background: #f9fafc;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
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 {
font-weight: 600;
color: #1e293b;
width: 40%;
background: #f1f5f9;
}
.specs-table td:last-child {
color: #1e293b;
background: #ffffff;
}
.description-box {
background: #f8fafc;