OtBVlzrQ
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: white;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
h1, h2, h3 {
margin-top: 0;
font-weight: 600;
}
.product-title {
font-size: 2rem;
margin-bottom: 10px;
border-bottom: 2px solid #eee;
padding-bottom: 12px;
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-top: 20px;
}
.image-gallery {
display: flex;
flex-direction: column;
gap: 12px;
}
.main-image {
background: #f0f0f0;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
padding: 30px;
border: 1px solid #e5e5e5;
min-height: 300px;
}
.main-image img {
max-width: 100%;
max-height: 320px;
object-fit: contain;
}
.thumbnails {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.thumb {
width: 80px;
height: 80px;
background: #f4f4f4;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ddd;
cursor: default;
}
.thumb img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
.price-area {
margin: 20px 0 10px;
}
.price {
font-size: 2.2rem;
font-weight: 700;
color: #2a2a2a;
}
.currency {
font-size: 1.2rem;
font-weight: 400;
color: #555;
}
.brand-badge {
display: inline-block;
background: #1e1e1e;
color: white;
padding: 4px 14px;
border-radius: 30px;
font-size: 0.8rem;
letter-spacing: 0.5px;
margin-bottom: 12px;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td {
padding: 10px 16px;
border-bottom: 1px solid #eaeaea;
font-size: 0.95rem;