U4QLHVrL
“`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: 24px;
box-shadow: 0 12px 40px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s ease;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 8px 0;
line-height: 1.2;
color: #0b0b1a;
}
.brand-badge {
display: inline-block;
background: #eef2ff;
color: #2a3b8f;
font-weight: 600;
font-size: 0.85rem;
padding: 4px 14px;
border-radius: 30px;
letter-spacing: 0.3px;
margin-bottom: 15px;
}
.price-area {
display: flex;
align-items: baseline;
gap: 12px;
margin: 18px 0 20px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #1f2937;
}
.currency {
font-size: 1.2rem;
font-weight: 500;
color: #4b5563;
}
.condition-tag {
background: #d1fae5;
color: #065f46;
font-weight: 600;
padding: 6px 16px;
border-radius: 40px;
font-size: 0.85rem;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 14px;
margin: 25px 0 30px;
}
.gallery-grid img {
width: 100%;
height: auto;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 16px;
border: 1px solid #e5e7eb;
background: #f9fafb;
transition: transform 0.2s;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.gallery-grid img:hover {
transform: scale(1.02);
border-color: #a5b4fc;
}
.desc-section {
margin: 30px 0 25px;
padding: 20px 0;
border-top: 1px solid #e5e7eb;
border-bottom: 1px solid #e5e7eb;
}
.desc-section p {
font-size: 1.05rem;
line-height