rB2GBYs2
* {
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;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 20px;
}
.product-wrapper {
display: grid;
grid-template-columns: fr;
gap: 40px;
background: #fff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
margin-bottom: 30px;
}
.image-gallery {
display: flex;
flex-direction: column;
gap: 15px;
}
.main-image {
width: 100%;
aspect-ratio: 1;
background: #222;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.main-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.thumbnail-row {
display: flex;
gap: 10px;
}
.thumbnail {
width: 80px;
0px;
background: #333;
border-radius: 6px;
cursor: pointer;
border: 2px solid transparent;
transition: border-color 0.2s;
overflow: hidden;
}
.thumbnail:hover, .thumbnail.active {
border-color: #e63946;
}
.thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
.product-info {
display: flex;
flex-direction: column;
gap: 15px;
}
.brand-name {
font-size: 14px;
color: #88