SQ12Zeq0
“`html
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f5f7;
margin: 0;
padding: 20px;
color: #1d1d1f;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 24px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 2rem;
font-weight: 600;
margin: 0 0 10px 0;
letter-spacing: -0.02em;
}
.price-badge {
display: flex;
align-items: baseline;
gap: 12px;
margin: 10px 0 20px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #1d1d1f;
}
.condition-badge {
background: #e8f5e9;
color: #2e7d32;
font-weight: 500;
padding: 6px 14px;
border-radius: 40px;
font-size: 0.9rem;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
width: 100%;
max-width: 200px;
border-radius: 16px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
transition: transform 0.2s;
cursor: pointer;
}
.gallery img:hover {
transform: scale(1.02);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0;
}
@media (max-width: 700px) {
.grid-2 {
grid-template-columns: 1fr;
}
}
.specs-table {
width: 100%;
border-collapse: collapse;
background: #fafafa;
border-radius: 16px;
overflow: hidden;
}
.specs-table td {
padding: 12px 16px;
border-bottom: 1px solid #e8e8ed;
font-size: 0.95rem;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
color: #515154;
width: 40%;
}
.desc-box {
background: #f9f9fb;
padding: 20px 24px;
border-radius: 20px;
line-height: 1.6