Yx8AWRtZ
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Roboto, system-ui, -apple-system, sans-serif;
background: #f5f7fa;
display: flex;
justify-content: center;
padding: 2rem 1rem;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 28px;
box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
padding: 2rem 2.5rem;
transition: all 0.2s;
}
@media (max-width: 700px) {
.product-card { padding: 1.5rem; }
}
.product-title {
font-size: 2rem;
font-weight: 600;
color: #0b1a2e;
margin-bottom: 0.5rem;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #eef2f7;
padding: 0.25rem 1rem;
border-radius: 40px;
font-size: 0.85rem;
font-weight: 500;
color: #1f3a5f;
letter-spacing: 0.3px;
margin-bottom: 1.2rem;
}
.price-area {
display: flex;
align-items: baseline;
gap: 0.75rem;
margin: 1rem 0 1.5rem;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0b6e4f;
}
.currency {
font-size: 1.2rem;
font-weight: 500;
color: #2c3e50;
}
.condition-tag {
background: #fce9d4;
color: #a85d1c;
font-weight: 600;
font-size: 0.8rem;
padding: 0.2rem 1rem;
border-radius: 40px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1rem;
margin: 1.8rem 0 2rem;
}
.gallery-grid img {
width: 100%;
height: auto;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 18px;
background: #f0f2f5;
box-shadow: 0 4px 10px rgba(0,0,0,0.02);
transition: transform 0.2s;
border: 1px solid #e9edf2;
}
.gallery-grid img:hover {
transform: scale(1.02);
}
@media