:root{
  --accent:#0b6b5b;
  
  --glass: rgba(255,255,255,0.9);
  --maxwidth:1100px;
  --card-radius:12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  color: white;
  min-height:100vh;
  background-image: url('backgroundimage.jpeg');
  background-size:cover;
  background-position:center;
  
}

/* dim background for readability */
.bg-overlay{
  position:fixed;
  inset:0;
  background:var(--bg-overlay);
  z-index:0;
}

/* header */
.site-header{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  max-width:var(--maxwidth);
  margin:0 auto;
}
.logo-wrap{display:flex;align-items:center;gap:12px}
.logo{width:64px;height:64px;object-fit:contain;border-radius:8px;background:white;padding:6px}
.brand h1{margin:0;font-size:18px;color:white}
.brand p{margin:0;font-size:12px;color:#e6e6e6}

.topbar a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  opacity:0.95;
}



.topbar{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;color:#fff}
.topbar img.brandlogo{width:56px}
.topbar nav a{color:tra;margin-left:12px;text-decoration:none;padding:8px;border-radius:8px}
.topbar nav a.active{background:rgba(255,255,255,0.12)}

.wrap{max-width:1100px;margin:20px auto;padding:18px;background:transparent;border-radius:10px}
.filters{display:flex;gap:12px;align-items:center;margin-bottom:14px}
.filters label{display:flex;gap:8px;align-items:center}
.grid{display:flex;gap:12px;flex-wrap:wrap}
.card{width:260px;background:transparent;border-radius:10px;padding:12px;box-shadow:0 6px 14px rgba(0,0,0,0.06);text-align:center}
.card img{width:100%;height:160px;object-fit:cover;border-radius:8px}
.price{font-weight:700;color:white;margin:8px 0}
.tag{font-size:13px;color:white}
.details{margin-top:18px}
.review-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.r{display:flex;gap:10px;align-items:center;background:#fff;padding:10px;border-radius:8px;box-shadow:0 4px 10px rgba(0,0,0,0.04)}
.r img{width:56px;height:56px;object-fit:cover;border-radius:50%}





















