EDyKMhud
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f8f9fa;
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 30px 40px;
transition: all 0.2s ease;
}
h1 {
font-size: 2.2rem;
font-weight: 700;
margin: 0 0 10px 0;
color: #1e1e1e;
letter-spacing: -0.3px;
line-height: 1.2;
}
.brand-badge {
display: inline-block;
background: #222;
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 4px 12px;
border-radius: 40px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 12px;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #0a7e3c;
margin: 12px 0 8px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #5f6b7a;
margin-left: 6px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin: 25px 0 20px;
}
.gallery img {
max-width: 100%;
height: auto;
border-radius: 18px;
box-shadow: 0 4px 14px rgba(0,0,0,0.04);
border: 1px solid #eef1f5;
transition: transform 0.15s;
}
.gallery img:hover {
transform: scale(1.01);
}
.gallery-main {
flex: 2 1 300px;
min-width: 280px;
}
.gallery-thumbs {
flex: 1 1 140px;
display: flex;
flex-direction: column;
gap: 12px;
min-width: 100px;
}
.gallery-thumbs img {
width: 100%;
border-radius: 14px;
cursor: default;
}
.specs-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: 12px 20px;
background: #f4f6fa;
padding: 20px 24px;
border-radius: 20px;
margin: 25px 0 20px