* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background-color: #f0f0f0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 15px;
}
.product-container {
width: 100%;
max-width: 600px;
background: white;
border-radius: 12px;
padding: 20px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
/* Main Image Display */
.main-display {
position: relative;
width: 100%;
aspect-ratio: 1 / 1;
border: 1px solid #ddd;
border-radius: 10px;
overflow: hidden;
background: #fafafa;
margin-bottom: 15px;
}
.main-display img {
width: 100%;
height: 100%;
object-fit: contain;
transition: all 0.4s ease;
}
/* Discount Badge */
.discount-badge {
position: absolute;
top: 15px;
right: 15px;
background: #f90;
color: white;
padding: 6px 12px;
font-size: 14px;
font-weight: bold;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
/* Navigation Arrows */
.nav-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 28px;
color: #666;
cursor: pointer;
padding: 8px 12px;
border-radius: 50%;
background: rgba(255,255,255,0.8);
transition: all 0.3s;
user-select: none;
z-index: 10;
}
.nav-arrow:hover {
background: rgba(255,255,255,1);
color: #333;
transform: translateY(-50%) scale(1.1);
}
.nav-arrow.left { left: 10px; }
.nav-arrow.right { right: 10px; }
/* Thumbnails */
.thumbnails {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}
.thumbnail {
width: 22%;
aspect-ratio: 1 / 1;
border: 2px solid transparent;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
transition: all 0.3s ease;
}
.thumbnail img {
width: 100%;
height: 100%;
object-fit: contain;
transition: transform 0.3s;
}
.thumbnail:hover img {
transform: scale(1.08);
}
.thumbnail.active {
border-color: #007bff;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
/* Responsive */
@media (max-width: 480px) {
.thumbnail {
width: 23%;
}
}
-12%
❮
❯
const images = [
"https://static.vecteezy.com/system/resources/previews/002/234/810/non_2x/beautiful-elegance-and-luxury-fashion-green-handbag-free-photo.jpg",
"https://static.vecteezy.com/system/resources/previews/002/234/980/non_2x/beautiful-elegance-and-luxury-fashion-pink-women-handbag-free-photo.jpg",
"https://static.vecteezy.com/system/resources/previews/030/602/241/non_2x/black-bag-white-background-copy-space-ai-generative-free-photo.jpg",
"https://static.vecteezy.com/system/resources/previews/002/233/395/non_2x/luxury-woman-handbag-free-photo.jpg"
];
: