html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #ffff;
  color: #f1f5f9;
  overflow-x: hidden;
}

.hero-bg {
  background-image: url('../images/Hero.webp');
  background-size: cover;
  background-position: center;
}

.section-nosotros-bg {
  background-image: url('../images/Camping.webp');
  background-size: cover;
  background-position: center;
}

.product-card {
  background-color: #1a1a1a;
}

.custom-button {
  width: auto;
  text-align: left;
  background-color: #009dfd;
  color: white;
  font-weight: 600;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  text-decoration: none;
}

.custom-button:hover {
  background-color: #00ebe3;
  color: black;
}

.custom-button:active {
  background-color: black;
  color: white;
  border: 1px solid #009dfd;
  transform: scale(0.98);
}

.product-display-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-display-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.powerbank-hero-bg {
  background-image: url('../images/Powerbank.webp');
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.kids-camping-bg {
  background-image: url('../images/Camping_kids.webp');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  width: 100%;
}

/* Mobile Query */
@media (max-width: 768px) {
  .hero-bg {
    background-image: url('../images/Mobile_hero.webp');
  }

  .section-nosotros-bg {
    background-image: url('../images/Mobile_camping.webp');
    background-size: cover;
    background-repeat: no-repeat;
    height: 800px;
  }

  .powerbank-hero-bg {
    background-image: url('../images/Mobile_Powerbank.webp');
  }

  .kids-camping-bg {
    background-image: url('../images/Mobile_kids_camping.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}
