CbZOkTuQ
* {
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: #f5f5f5;
}
.product-container {
max-width: 10 margin: 30px auto;
background: #fff;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
overflow: hidden;
}
.product-header {
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
color: #fff;
padding: 30px;
text-align: center;
}
.product-header h1 {
font-size: 1.8rem;
margin-bottom: 8px;
letter-spacing: 0.5px;
}
.product-header .subtitle {
font-size: 0.95rem;
color: #c4a35a;
font-style: italic;
}
.main-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
padding: 3 }
@media (max-width: 768px) {
.main-content {
grid-template-columns: 1fr;
}
}
/* Image Gallery */
.image-gallery {
position: relative;
}
.main-image {
width: 100%;
border-radius: 8px;
border: 1px solid #e0e0e0;
aspect-ratio: 1;
object-fit: contain;
background: #fafafa;
}
.image-badge {
position: absolute;
top: 10px;
left: 10px;
background: #e63946;
color: white;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}
.thumbnail-row {
display: flex;
gap: 10px;
margin-top: flex-wrap: wrap;
}
.thumbnail {
width: 70px;
height: 70px;
border: 2px solid #e0e0e0;
border-radius: 6px;
object-fit: cover;
cursor: pointer;
transition: border-color 0.2s;
}
.thumbnail:hover, .thumbnail.active {
border-color: #c4a35a;
}
/* Product Info */
.product-info h2 {
font-size: 1.4rem;
color: #1a1a2e;
margin-bottom: