html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; }

/* Navbar */
.navbar-brand img { height: 50px; }

/* Parallax Hero */
.hero {
  background-image: url('../img/hero-bg.jpg');
  min-height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
}

section { padding: 80px 0; }

/* Products */
.product-card img {
  height: 220px;
  object-fit: contain;
}
.price {
  color: #042b5b;
  font-weight: bold;
}

/* Footer */
.footer-logo { height: 45px; }
.social a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
}

.btn-ar {
    background: #042b5b !important;
    border: #042b5b !important;
}
