y1C1YZsU
/* base reset & typography */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ‘Open Sans’, Arial, sans-serif;
background: #f8f6f2;
display: flex;
justify-content: center;
padding: 2rem 1rem;
line-height: 1.5;
color: #1e1e1e;
}
.product-card {
max-width: 1100px;
width: 100%;
background: white;
border-radius: 24px;
box-shadow: 0 12px 30px rgba(0,0,0,0.08);
padding: 2rem 2.5rem;
transition: all 0.2s;
}
@media (max-width: 700px) {
.product-card { padding: 1.5rem; }
}
/* image gallery */
.gallery {
display: flex;
flex-wrap: wrap;
gap: 1.2rem;
margin-bottom: 2rem;
align-items: center;
}
.gallery img {
max-width: 180px;
height: auto;
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0,0,0,0.06);
transition: transform 0.2s;
border: 1px solid #eee;
}
.gallery img:hover {
transform: scale(1.02);
}
.gallery .main-img {
max-width: 240px;
}
@media (max-width: 600px) {
.gallery img { max-width: 140px; }
.gallery .main-img { max-width: 180px; }
}
/* title & price */
.title-price {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: baseline;
margin-bottom: 1.2rem;
border-bottom: 2px solid #f0ede8;
padding-bottom: 0.75rem;
}
h1 {
font-weight: 700;
font-size: 1.9rem;
color: #1e2a2f;
letter-spacing: -0.3px;
margin-right: 1rem;
}
.price {
font-size: 2rem;
font-weight: 700;
color: #2a6f4c;
background: #eaf5ee;
padding: 0.2rem 1.2rem;
border-radius: 40px;
white-space: nowrap;
}
.brand-badge {
display: inline-block;
background: #dce6f0;
padding: 0.2rem 1rem;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
color: #1f3a4b;
margin-left: 0.5rem;
}
/* description / intro */