mtWZrKrp
“`html
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
padding: 30px 35px;
}
.product-title {
font-size: 2.2rem;
font-weight: 600;
letter-spacing: -0.5px;
margin: 0 0 10px 0;
color: #0b0b0b;
}
.brand-sub {
font-size: 1rem;
color: #5a5a5a;
margin-bottom: 20px;
border-bottom: 1px solid #eaeaea;
padding-bottom: 15px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 25px 0;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s ease;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery-main {
flex: 2 1 400px;
}
.gallery-thumbs {
flex: 1 1 180px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
width: 100%;
border-radius: 12px;
cursor: default;
}
.price-box {
background: #f2f4f7;
padding: 15px 20px;
border-radius: 40px;
display: inline-block;
margin: 15px 0 20px 0;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0a2540;
}
.price-currency {
font-size: 1.2rem;
font-weight: 400;
color: #3a3a3a;
}
.condition-badge {
background: #d4e9d6;
color: #1e5a2b;
padding: 6px 16px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 500;
display: inline-block;
margin-left: 15px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0 20px 0;
background: #fafbfc;
border-radius: 16px;
overflow: hidden;
}
.spec