DTbkpjuR
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 20px;
color: #1a1a2e;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-grid {
display: flex;
flex-wrap: wrap;
gap: 40px;
}
.product-gallery {
flex: 1 1 45%;
min-width: 280px;
}
.product-gallery img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
display: block;
}
.gallery-thumbs {
display: flex;
gap: 12px;
margin-top: 15px;
}
.gallery-thumbs img {
width: 80px;
height: 80px;
object-fit: cover;
border-radius: 10px;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
}
.gallery-thumbs img:hover {
border-color: #3b82f6;
}
.product-info {
flex: 1 1 50%;
min-width: 280px;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin: 0 0 8px;
line-height: 1.2;
}
.product-price {
font-size: 32px;
font-weight: 700;
color: #0f172a;
margin: 15px 0 10px;
}
.product-price span {
font-size: 18px;
font-weight: 400;
color: #64748b;
margin-left: 8px;
}
.availability {
background: #dcfce7;
color: #166534;
padding: 6px 14px;
border-radius: 30px;
font-size: 14px;
font-weight: 600;
display: inline-block;
margin: 10px 0;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
font-size: 15px;
}
.specs-table td {
padding: 10px 12px;
border-bottom: 1px solid #e9eef2;
}
.specs-table td:first-child {
font-weight: 600;
color: #334155;
width: 40%;
}
.description {
line-height: 1.7;
color: #1e293b;
margin: 20px 0