:root{
  --accent:#b08b3e;
  --text:#111111;
  --muted:#6b6b6b;
  --bg:#f6f6f6;
  --card:#ffffff;
  --shadow:0 18px 40px rgba(0,0,0,0.08);
  --shadow-hero:0 28px 60px rgba(0,0,0,0.12);
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, #ffffff 0%, #f3f3f3 55%, #efefef 100%);
}

a{ color:inherit; }

.container{
  width:min(1040px, 92vw);
  margin:0 auto;
}

.site-header{
  padding:26px 0 12px;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.logo{
  font-family:"Great Vibes", cursive;
  font-size:42px;
  color:var(--accent);
  text-decoration:none;
  line-height:1;
  user-select:none;
}

.nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-link{
  font-size:15px;
  font-weight:500;
  text-decoration:none;
  color:var(--text);
  opacity:0.98;
}

.nav-link:hover{ color:var(--accent); }

.nav-link.active{
  color:var(--accent);
}

main{
  padding:0 0 8px;
}

.hero{
  margin:6px 0 36px;
}

.hero img{
  width:100%;
  height:auto;
  border-radius:22px;
  box-shadow:var(--shadow-hero);
}

.products{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:34px;
  padding-bottom:44px;
}

.product-card{
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:24px 22px 20px;
  text-align:center;
}

.product-img{
  width:100%;
  max-width:240px;
  height:auto;
  display:block;
  margin:0 auto 14px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18));
}

.product-title{
  margin:0 0 6px;
  font-size:18px;
  font-weight:700;
}

.product-price{
  margin:0 0 14px;
  font-size:15px;
  font-weight:500;
  color:var(--text);
}

.btn{
  border:0;
  background:#0c0c0c;
  color:var(--accent);
  padding:10px 18px;
  width:142px;
  border-radius:999px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,0.22);
  transition:transform 0.10s ease, box-shadow 0.12s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(0,0,0,0.26);
}

.btn:active{
  transform:translateY(0);
  box-shadow:0 10px 20px rgba(0,0,0,0.22);
}

.site-footer{
  padding:22px 0 34px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-top:1px solid rgba(0,0,0,0.08);
  padding-top:18px;
}

.social{
  display:flex;
  align-items:center;
  gap:14px;
}

.social a{
  text-decoration:none;
  font-size:18px;
  color:var(--text);
}

.social a:hover{ color:var(--accent); }

.footer-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.footer-nav a{
  text-decoration:none;
  font-size:15px;
  font-weight:500;
}

.footer-nav a:hover{ color:var(--accent); }

.footer-nav a.active{ color:var(--accent); }

/* Simple pages */
.page{
  padding: 12px 0 44px;
}

.page-card{
  background:rgba(255,255,255,0.78);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:26px 22px;
}

.page h1{
  margin:0 0 10px;
  font-size:26px;
}

.page p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.7;
}

.form{
  display:grid;
  gap:14px;
  margin-top:12px;
}

.label{
  font-size:13px;
  color:var(--muted);
  margin-bottom:6px;
  display:block;
}

.input, .textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  outline:none;
  font:inherit;
}

.textarea{ min-height:120px; resize:vertical; }

/* Responsive */
@media (max-width: 920px){
  .products{ grid-template-columns:1fr; gap:22px; }
  .product-img{ max-width:260px; }
  .header-inner{ flex-direction:column; align-items:flex-start; }
  .nav{ gap:18px; flex-wrap:wrap; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .footer-nav{ gap:18px; flex-wrap:wrap; }
}
