@font-face {
  font-family: superchips;
  src: url("https://educ8tive-studio.github.io/static/font/superchips.ttf");
}

:root{
  --brand:#27abbf;
  --accent:#002646;
  --card-bg:#ffffff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background-color:var(--brand);
  color:var(--accent);
}

.container{
  max-width:1100px;
  margin:20px auto;
  padding:20px;
  background:rgba(255,255,255,0.95);
  border-radius:8px;
}

.site-title{
  font-family:superchips,Arial,Helvetica,sans-serif;
  font-size:50px;
  font-weight:700;
  -webkit-text-stroke:1px var(--accent);
  color:#fff;
  background:var(--brand);
  display:inline-block;
  padding:10px 20px;
  border-radius:8px;
  margin:0;
}

.nav-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:18px;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:20px;
  -webkit-text-stroke:1px var(--accent);
}

.products{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:18px;
}

.card{
  background:var(--card-bg);
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,0.12);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.thumb{
  width:100%;
  height:0;
  padding-bottom:66%;
  background-position:center;
  background-size:cover;
  display:block;
}

.card-body{padding:12px;flex:1;display:flex;flex-direction:column}
.title{font-weight:700;margin:0 0 8px 0;font-size:16px;color:var(--accent)}
.desc{font-size:14px;margin-bottom:10px;color:#334;flex:1}
.meta{display:flex;justify-content:space-between;align-items:center;gap:8px}
.price{background:#ffde59;padding:6px 10px;border-radius:6px;font-weight:700}
.link-btn{text-decoration:none;background:var(--brand);color:#fff;padding:7px 10px;border-radius:6px;font-weight:700}

@media (max-width:420px){
  .site-title{font-size:36px}
}
