UcrlAdqD
body {
font-family: ‘Segoe UI’, Roboto, Helvetica, Arial, sans-serif;
background: #f5f7fa;
margin: 0;
padding: 30px 20px;
display: flex;
justify-content: center;
}
.product-card {
max-width: 1100px;
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;
}
h1, h2, h3 {
font-weight: 500;
letter-spacing: -0.01em;
color: #1e1e1e;
}
h1 {
font-size: 2rem;
margin: 0 0 6px 0;
font-weight: 600;
}
.brand-sub {
color: #4a4a4a;
font-size: 1rem;
font-weight: 400;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.brand-sub strong {
background: #ededed;
padding: 2px 12px;
border-radius: 30px;
font-weight: 500;
font-size: 0.85rem;
color: #222;
}
.price {
font-size: 2rem;
font-weight: 600;
color: #0a7e3c;
margin: 10px 0 20px 0;
display: flex;
align-items: center;
gap: 10px;
}
.price small {
font-size: 1rem;
font-weight: 400;
color: #5f5f5f;
text-decoration: line-through;
margin-left: 6px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 18px;
margin: 25px 0 30px 0;
}
.gallery img {
width: calc(25% – 14px);
min-width: 140px;
aspect-ratio: 1/1;
object-fit: cover;
border-radius: 18px;
border: 1px solid #eaeef2;
background: #fafafa;
transition: 0.2s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.gallery img:hover {
transform: scale(1.02);
border-color: #b0bcc9;
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin: 30px 0 20px;
}
@media (max-width: 700px) {
.grid-2 { grid-template-columns: 1fr; }
.gallery img { width: calc(50% – 10