R34CgGqu
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 30px 40px;
transition: 0.2s;
}
h1 {
font-size: 2.1rem;
font-weight: 600;
margin: 0 0 10px 0;
color: #111;
letter-spacing: -0.3px;
}
.brand-badge {
display: inline-block;
background: #1e1e1e;
color: white;
font-weight: 500;
font-size: 0.8rem;
padding: 4px 14px;
border-radius: 40px;
letter-spacing: 0.5px;
margin-bottom: 15px;
}
.price-stock {
display: flex;
flex-wrap: wrap;
align-items: baseline;
gap: 20px;
margin: 15px 0 20px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #0a5c2e;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #555;
margin-left: 6px;
}
.stock-badge {
background: #e9ecef;
padding: 6px 16px;
border-radius: 30px;
font-size: 0.85rem;
color: #1e293b;
border: 1px solid #d0d5dd;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
border: 1px solid #eef0f2;
transition: 0.2s;
}
.gallery-main {
flex: 2 1 380px;
}
.gallery-main img {
width: 100%;
max-height: 380px;
object-fit: cover;
}
.gallery-thumbs {
flex: 1 1 180px;
display: flex;
flex-direction: column;
gap: 12px;
}
.gallery-thumbs img {
width: 100%;
height: 110px;
object-fit: cover;
cursor: default;