vx1GBYsP
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
.product-container {
max-width: 1100px;
margin: 0 auto;
padding: 20px;
}
.product-header {
background: linear-gradient(135deg, #1a1a1a 33 100%);
color: #fff;
padding: 30px;
border-radius: 12px;
margin-bottom: 30px;
}
.product-header h1 {
font-size: 1.8em;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}
.badge {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.85em;
margin-bottom: 15px;
}
.price-box {
background-color: #fff;
color: #333;
display: inline-block;
padding: 10px 25px;
border-radius: 8px;
margin-top: 10px;
}
.price-box .price {
font-size: 2-weight: bold;
color: #e74c3c;
}
.product-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 40px;
}
.image-gallery {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.image-gallery .main-image {
grid-column: 1 / -1;
border-radius: 12px;
overflow: hidden;
background: #1a1a1a;
display: flex;
align