:root{
  --bg:#fff;
  --text:#111;
  --muted:#666;
  --accent:#c96;
  --container:1100px;
  --serif:'Georgia', 'Garamond', serif;
  --sans:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
*{box-sizing:border-box}
body{font-family:var(--sans);line-height:1.4;color:var(--text);background:var(--bg);margin:0}
h1,h2,h3,h4,h5,h6{font-family:var(--serif);font-weight:400;letter-spacing:0.05em}
.container{max-width:var(--container);margin:0 auto;padding:1rem}
.site-header{border-bottom:1px solid #eee;background:#fff}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem}

/* Banner header */
.site-banner{
  background:#efe7db;
  border-bottom:1px solid #e2d8ca;
}
/* Banner header */
.site-banner{
  background:#efe7db;
  border-bottom:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:1rem;
  min-height:auto;
}
.banner-center{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1;
}
.banner-inner{
  display:flex;
  justify-content:center;
  align-items:center;
}
.banner-logo-link{
  display:flex;
  align-items:center;
  justify-content:center;
}
.banner-logo{
  max-height:clamp(110px, 15vh, 160px);
  width:auto;
  display:block;
}
.banner-divider{
  width:100%;
  line-height:0;
  margin-top:0.5rem;
}
.banner-divider img{
  display:block;
  width:100%;
  height:auto;
}
.banner-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:1.5rem;
  padding:1rem;
  background:#fff;
  width:100%;
  border-bottom:1px solid #e2d8ca;
}
.nav-link{
  color:var(--text);
  text-decoration:none;
  font-weight:500;
  font-size:0.95rem;
  transition:opacity 0.2s ease;
}
.nav-link:hover{
  opacity:0.7;
}
@media (max-width:720px){
  .site-banner{padding:0.75rem}
  .banner-logo{max-height:clamp(90px, 12vh, 130px)}
  .banner-nav{gap:1rem;padding:0.75rem}
  .nav-link{font-size:0.9rem}
}
.brand{display:flex;gap:.75rem;align-items:center}
.logo{display:flex;align-items:center}
.logo img{height:84px;width:auto;display:block}
.tagline{margin:0;font-size:.9rem;color:var(--muted)}
.btn{display:inline-block;padding:.6rem 1rem;background:var(--accent);color:#fff;border-radius:6px;text-decoration:none}
.products h3,.about h3,.contact h3{margin-top:0}
.about{
  background:#faf7f2;
  border:1px solid #f0e9db;
  border-radius:16px;
  padding:2.5rem 2rem;
  margin-top:2.5rem;
  margin-bottom:2.5rem;
}
.about h3{text-align:center;font-size:1.5rem}
.about-content{max-width:62ch;margin:1.5rem auto 0}
.about-content p{margin:0 0 1.1rem;color:var(--muted);line-height:1.75}
.about-content p:last-child{margin-bottom:0}
.about-lead{font-size:1.1rem;color:var(--text)}
.about-content strong{color:var(--text);font-weight:600}
.about-tagline{
  margin:2rem 0 0;
  padding-top:1.5rem;
  border-top:1px solid #e2d8ca;
  text-align:center;
  font-family:var(--serif);
  font-style:italic;
  font-size:1.3rem;
  color:var(--text);
}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.5rem}
.product{background:#fff;border:1px solid #eee;padding:1rem;border-radius:8px;text-align:center}
.product img{width:100%;height:220px;object-fit:cover;border-radius:6px}
.product-actions{display:flex;align-items:center;justify-content:space-between;margin-top:.5rem;gap:.5rem}
.price{font-weight:700;color:var(--pine)}
.muted{color:var(--muted);font-size:.95rem}
.social-block{text-align:center;margin:0 0 2rem}
.social-text{color:var(--muted);margin:0 0 1rem}
.social-btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:linear-gradient(45deg,#f58529 0%,#dd2a7b 50%,#8134af 100%);
}
.contact form{max-width:520px}
label{display:block;margin:.6rem 0 .2rem;font-weight:600}
input,textarea{width:100%;padding:.6rem;border:1px solid #ddd;border-radius:6px}
.site-footer{border-top:1px solid #eee;padding:1rem;text-align:center;color:var(--muted);font-size:.9rem}
.skip-link{position:absolute;left:-9999px}

/* Cart styles */
.cart-button{position:fixed;right:1rem;bottom:1rem;background:var(--berry);color:#fff;border:none;padding:.75rem 1rem;border-radius:28px;box-shadow:0 6px 18px rgba(0,0,0,.12);cursor:pointer}
.cart-count{display:inline-block;margin-left:.4rem;font-weight:700}
.cart-drawer{position:fixed;right:1rem;bottom:5.5rem;width:320px;max-height:70vh;background:#fff;border:1px solid #eee;border-radius:8px;box-shadow:0 10px 30px rgba(0,0,0,.12);overflow:auto;display:flex;flex-direction:column}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:0.75rem 1rem;border-bottom:1px solid #f2f2f2}
.cart-items{padding:0.5rem 1rem;flex:1;}
.cart-item{display:flex;gap:.5rem;align-items:center;padding:.5rem 0;border-bottom:1px dashed #f4f4f4}
.cart-item img{width:56px;height:40px;object-fit:cover;border-radius:6px}
.cart-item .meta{flex:1}
.cart-footer{padding:0.75rem 1rem;border-top:1px solid #f2f2f2;display:flex;align-items:center;justify-content:space-between}

@media (max-width:420px){
  .cart-drawer{right:.5rem;left:.5rem;width:auto}
  .logo img{height:56px}
}
