:root{
  --bg:#fdf4f4;
  --fg:#2b0d0d;
  --muted:#7a4a4a;
  --brand:#c62828;
  --brand-2:#8e0000;
  --card:#ffffff;
  --shadow:0 4px 16px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family:system-ui,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.6;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
}

.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 16px;
}

.brand img{
  width:180px;
  height:60px;
  object-fit:contain;
}

.nav{
  display:flex;
  gap:16px;
}

.nav a{
  color:#fff;
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
}

.nav a:hover{
  background:rgba(255,255,255,.15);
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  padding:32px 16px;
  align-items:center;
}

.hero-media{
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-text h1{
  margin:0 0 8px;
  font-size:clamp(26px,4vw,38px);
}

.hero-text p{
  margin:0;
  color:var(--muted);
}

/* ABOUT */
.about{
  padding:24px 16px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:16px;
}

.about-card{
  background:var(--card);
  border-radius:14px;
  padding:12px;
  box-shadow:var(--shadow);
}

.about-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:10px;
}

.about-card h3{
  margin:10px 0 4px;
}

.about-card p{
  margin:0;
  color:var(--muted);
}

/* PRODUCTS */
.products{
  padding:32px 0;
}

.product-scroller{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:8px 16px 24px;
  scroll-snap-type:x mandatory;
}

.product-card{
  min-width:230px;
  background:var(--card);
  border-radius:14px;
  padding:12px;
  box-shadow:var(--shadow);
  scroll-snap-align:start;
}

.product-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:10px;
}

.price{
  font-weight:600;
  color:var(--brand-2);
}

/* FOOTER */
.footer{
  background:#2b0d0d;
  color:#f2dede;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  padding:24px 16px;
}

.footer p{margin:4px 0}

.legal{
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  padding:12px;
  font-size:14px;
}

/* RESPONSIVE */
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
}

@media (max-width:560px){
  .about-card img{height:200px}
  .product-card img{height:190px}
}
img{
  max-width:100%;
  height:auto;
  display:block;
}
.hero-media img{
  object-fit:cover;
}

.about-card img,
.product-card img{
  object-fit:cover;
  background:#eee;
}