EAlhPIuF
:root {
–primary-color: #2c3e50;
–accent-color: #e74c3c;
–light-gray: #f8f9fa;
–medium-gray2e6;
–dark-gray: #495057;
–text-color: #333;
}
body {
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(–text-color);
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
}
.product-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}
.product-gallery {
position: sticky;
top: 20px;
align-self: start;
}
.main-image {
width: 100%;
height: auto;
border: 1px solid var(–medium-gray);
border-radius: 8px;
margin-bottom: 1 }
.thumbnail-container {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.thumbnail {
width: 70px;
height: 70px;
object-fit: cover;
border: 2px solid transparent;
border-radius: 4px;
cursor: pointer;
transition: border-color 0.3s;
}
.thumbnail:hover, .thumbnail.active {
border-color: var(–accent-color);
}
.product-info {
display: flex;
flex-direction: column;
}
.product-title {
font-size: 28px;
font-weight: 700;
color: var(–primary-color);
margin-bottom: 5px;
}
.product-price {
font-size: 32px;
font-weight: 700;
color: var(–accent-color);
margin-bottom: 15px;
}
-description {
margin-bottom: 25px;
font-size: 16px;
}