:root{
  --brand-yellow:#ffc107;
  --brand-dark:#212529;
}

body{
  font-family: Arial, sans-serif;
  background:#fff;
}

.navbar-brand img{ height:70px; }
.badge-cart{ position:absolute; top:-6px; right:-10px; }

.page-head{
  background:linear-gradient(180deg,rgba(0,0,0,.75),rgba(0,0,0,.75)),
             url("https://images.unsplash.com/photo-1550547660-d9450f859349?q=80&w=1600&auto=format&fit=crop")
             center/cover no-repeat;
  min-height:140px;
  color:#fff;
  display:flex;
  align-items:center;
}

.product-card{
  border:1px solid #e9ecef;
  border-radius:12px;
  padding:16px;
  transition:.2s;
  height:100%;
  background:#fff;
}

.product-card:hover{
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  transform:translateY(-1px);
}

.product-card img{ border-radius:10px; }

.btn-brand{
  background:var(--brand-yellow);
  color:#111;
  font-weight:700;
}
.btn-brand:hover{ filter:brightness(.95); }

.section-anchor{ scroll-margin-top:100px; }
.subnav a{ text-decoration:none; }
