
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  font-family: 'Quicksand', sans-serif;
  background-color: #f8f7f3;
}

main {
  flex: 1 0 auto; 
}

p, h1, h2, h3, h4, h5, .btn, nav, footer {
  font-family: 'Quicksand', sans-serif;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 15px;
  width: 100%;
  font-size: small;
}

#text-footer{
  margin-bottom: 0px;
}

#menu-principal {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #f8f7f3;
}

#logo {
  width: 50px;
  height: auto;
  margin-right: 30px;
}

#boton_inicio {
  color: #b42822;
  border: #b42822 solid 1px;
  margin-right: 10px;
  margin-left: 20px;
  transition: 0.3s ease-in-out;
}
#boton_inicio:hover {
  background-color: #b42822;
  color: #fff;
}

.nav-link:hover {
  color: #b42822 !important;
  text-decoration: underline;
  font-weight: bold;
  display: flex;
}
.nav-link {
  margin: 0 20px;
}

#FAQ, #contacto, #tienda, #nosotros {
  display: none;
}
#menu-faq, #menu-tienda, #menu-nosotros, #menu-contacto {
  display: flex;
}
#menu-faq:hover #FAQ,
#menu-contacto:hover #contacto,
#menu-nosotros:hover #nosotros,
#menu-tienda:hover #tienda {
  display: flex;
  width: 40px;
  height: auto;
}

.d-block {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  max-height: 300px;
  min-height: 300px;
  margin: auto;
  align-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.2s;
  border: #b42822 solid 1px;
}
.product-card:hover {
  transform: scale(1.02);
  border: #b42822 solid 2px;
}
.product-card img {
  width: 100%;
  max-width: 120px; 
  max-height: 90px;
  min-height: 90px;
  height: auto;
  margin: auto;
  display: block;
}
.product-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.product-card p {
  font-size: 12px;
  margin: 2px 0;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.quantity-label {
  font-size: 12px;
  font-weight: bold;
}
.quantity-input {
  width: 50px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 3px;
  margin-left: 10px;
}
.add-to-cart {
  background-color: #b42822;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px;
  margin-left: 10px;
  transition: background 0.2s;
}
.add-to-cart:hover {
  background-color: #A2D2FF;
  color: #222;
  border: #b42822 1px solid;
}


.cart {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 260px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .cart {
    position: static;
    margin: 20px auto;
    width: 90%;
    max-width: 320px;
  }
}

#products{
  margin: 0px auto 20px auto;
}

#boton-checkout{
    background-color: #FFE156;
    color: black;
}

#boton-checkout:hover{
  background-color: #A2D2FF ;
  border: #222 1px solid;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: scale(1.02);
}