YzVXV1tJ
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1000px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
transition: all 0.2s ease;
}
h1 {
font-size: 2rem;
font-weight: 600;
margin: 0 0 8px 0;
color: #1e293b;
}
.brand-tag {
color: #4b5563;
font-size: 0.95rem;
letter-spacing: 0.3px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 8px;
}
.brand-tag strong {
color: #1e293b;
}
.price-badge {
background: #eef2ff;
color: #1e3a8a;
font-weight: 700;
font-size: 1.8rem;
padding: 8px 20px;
border-radius: 60px;
display: inline-block;
margin: 10px 0 20px 0;
border: 1px solid #c7d2fe;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
margin: 25px 0 30px 0;
}
.gallery-grid img {
width: 100%;
height: auto;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 16px;
background: #f1f5f9;
border: 1px solid #e2e8f0;
transition: 0.2s;
}
.gallery-grid img:hover {
box-shadow: 0 8px 18px rgba(0,0,0,0.1);
transform: scale(1.01);
}
.desc-box {
background: #f8fafc;
padding: 20px 25px;
border-radius: 20px;
margin: 20px 0 25px 0;
border-left: 5px solid #3b82f6;
}
.desc-box p {
margin: 0;
font-size: 1.05rem;
line-height: 1.6;
color: #1e293b;
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0 30px 0;
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.specs-table td {
padding: 12px 18px;