body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 15px;
}
header .logo-links {
  flex: 1;
  display: flex;
  justify-content: center;
}
header .logo-links img {
  height: 120px;
  width: 120px;
}
header .left-links,
header .right-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .left-links.left-links,
header .right-links.left-links {
  justify-content: flex-start;
  flex-grow: 1;
}
header .left-links.right-links,
header .right-links.right-links {
  justify-content: flex-end;
  flex-grow: 1;
}
header a {
  color: black;
}
header .cart-btn {
  background-color: transparent;
  color: black;
  border: 2px solid black;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .cart-btn:hover {
  background-color: #3b94a3;
}
header .cart-btn .cart-icon {
  font-size: 18px;
  color: black;
}
/* Estilo para el mensaje de éxito */
.mensaje-exito {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3b94a3;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#offcanvasCarrito .offcanvas-header,
#offcanvasCarrito .offcanvas-body {
  color: #000;
}
#offcanvasCarrito .offcanvas-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #ddd;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px;
}
#offcanvasCarrito .offcanvas-footer .d-flex {
  flex-direction: column;
  align-items: start;
}
#offcanvasCarrito .offcanvas-footer p {
  margin-bottom: 5px;
}
#offcanvasCarrito .offcanvas-footer .total-texto {
  font-weight: bold;
  color: black;
}
#offcanvasCarrito .offcanvas-footer #cart-total {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
}
#offcanvasCarrito .offcanvas-footer .btn {
  width: 100%;
}
#offcanvasCarrito .carrito-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#offcanvasCarrito .carrito-item img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 10px;
}
#offcanvasCarrito .carrito-item button {
  background-color: rgb(255, 255, 255);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}
#offcanvasCarrito .carrito-item button:hover {
  background-color: rgb(0, 0, 0);
}
.tittle-Product {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  background-color: #3b94a3;
  border: solid #000000;
  justify-items: center;
}

.product-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  max-width: 250px;
  min-height: 350px;
  box-sizing: border-box;
  background-color: #f9f9f9;
}
.product-item img {
  width: 100%;
  height: auto;
  max-height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 10px;
}
.product-item h2 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.2;
  max-height: 2.4em;
  overflow: hidden;
}
.product-item p {
  font-size: 0.9em;
  color: #555;
  line-height: 1.4;
  max-height: 4.2em;
  overflow: hidden;
  margin-bottom: 10px;
}
.product-item button,
.product-item .add-to-cart {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #3b94a3;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.product-item button:hover,
.product-item .add-to-cart:hover {
  background-color: #0078a0;
}

.separador {
  border: none;
  height: 3px;
  background-color: #000000;
  margin: 20px 0;
}

footer {
  background-color: #ffffff;
  color: black;
  padding: 40px 20px;
}
footer .footer-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer .footer-container .footer-logo img {
  width: 120px;
  height: auto;
  margin-right: 100px;
}
footer .footer-container .footer-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: auto;
  margin-left: 20px;
}
footer .footer-container .footer-info,
footer .footer-container .footer-connect,
footer .footer-container .footer-subscribe {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  margin-right: 50px;
}
footer .footer-container .footer-info h3,
footer .footer-container .footer-connect h3,
footer .footer-container .footer-subscribe h3 {
  font-size: 1.2em;
  color: #050505;
  margin-bottom: 10px;
}
footer .footer-container .footer-info ul,
footer .footer-container .footer-connect ul,
footer .footer-container .footer-subscribe ul {
  list-style-type: none;
  padding: 0;
}
footer .footer-container .footer-info li,
footer .footer-container .footer-connect li,
footer .footer-container .footer-subscribe li {
  margin: 5px 0;
}
footer .footer-container .footer-info a,
footer .footer-container .footer-info button,
footer .footer-container .footer-connect a,
footer .footer-container .footer-connect button,
footer .footer-container .footer-subscribe a,
footer .footer-container .footer-subscribe button {
  text-decoration: none;
  color: #050505;
  font-size: 1em;
}
footer .footer-container .footer-info a:hover,
footer .footer-container .footer-info button:hover,
footer .footer-container .footer-connect a:hover,
footer .footer-container .footer-connect button:hover,
footer .footer-container .footer-subscribe a:hover,
footer .footer-container .footer-subscribe button:hover {
  text-decoration: underline;
}
footer .footer-container .footer-info .footer-subscribe input,
footer .footer-container .footer-connect .footer-subscribe input,
footer .footer-container .footer-subscribe .footer-subscribe input {
  padding: 10px;
  margin-right: 10px;
  border: none;
  border-radius: 4px;
  width: 200px;
}
footer .footer-container .footer-info .footer-subscribe button,
footer .footer-container .footer-connect .footer-subscribe button,
footer .footer-container .footer-subscribe .footer-subscribe button {
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: black;
  border-radius: 4px;
  cursor: pointer;
}
footer .footer-container .footer-info .footer-subscribe button:hover,
footer .footer-container .footer-connect .footer-subscribe button:hover,
footer .footer-container .footer-subscribe .footer-subscribe button:hover {
  background-color: #3b94a3;
}
footer .footer-container .footer-info h3,
footer .footer-container .footer-connect h3,
footer .footer-container .footer-subscribe h3 {
  font-size: 1.2em;
  color: #050505;
  margin-bottom: 10px;
  text-decoration: underline;
}
footer .footer-container .footer-info ul li a {
  font-size: 0.9em;
  color: #050505;
}
footer .footer-container .footer-info ul li a:hover {
  text-decoration: underline;
}
footer .footer-bottom {
  background-color: #3b94a3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px;
  border: 2px solid #050505;
  border-radius: 25px;
  margin-top: 20px;
  gap: 10px;
}
footer .footer-bottom .footer-text {
  color: black;
  display: flex;
  font-weight: bold;
}
footer .footer-bottom .footer-text p {
  margin: 20px 20px;
}
footer .footer-bottom .footer-text a {
  color: black;
  text-decoration: none;
}
footer .footer-bottom .footer-text a:hover {
  text-decoration: underline;
  color: white;
}
footer .footer-bottom .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom .footer-social a {
  margin-left: 20px;
  color: rgb(0, 0, 0);
  font-size: 1.5em;
}
footer .footer-bottom .footer-social a:hover {
  color: white;
}

a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
a:hover {
  color: #3b94a3;
}
a:active {
  color: black;
}

@media (max-width: 480px) {
  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .logo img {
    height: 50px;
    width: auto;
  }
  .left-links,
  .right-links {
    flex: 1;
    justify-content: center;
    margin-bottom: 10px;
  }
  .cart-btn {
    font-size: 14px;
    padding: 5px 10px;
  }
  .navbar-toggler {
    border: none;
  }
  .offcanvas {
    background-color: #343a40;
    color: white;
    max-width: 60% !important;
  }
  .offcanvas .navbar-nav a {
    color: white;
    text-decoration: none;
  }
  .offcanvas .navbar-nav a:hover {
    color: #3b94a3;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    justify-items: center;
  }
  .product-item {
    width: 100%;
    max-width: 160px;
  }
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer .footer-bottom .footer-text {
    font-size: 0.8em;
    display: block;
    max-width: 90%;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .footer-text {
    font-size: 0.7em;
    padding: 10px;
  }
}
/* Estilos para dispositivos móviles */
@media (max-width: 767px) {
  header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .left-links,
  .right-links {
    justify-content: center;
    width: 50%;
  }

  .logo-links {
    width: 80%;
    text-align: center;
  }

  .cart-btn {
    display: flex;
    justify-content: center;
    width: 80%;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px;
    justify-items: center;
  }
  .product-item {
    max-width: 180px;
    min-height: auto;
  }
  .product-item h2 {
    font-size: 1.2em;
  }

  .product-item p {
    font-size: 0.9em;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-info,
  .footer-connect,
  .footer-subscribe {
    margin-bottom: 20px;
  }

  .footer-info ul,
  .footer-connect ul {
    padding: 0;
  }

  .footer-info li,
  .footer-connect li {
    margin-bottom: 10px;
  }

  .footer-subscribe input {
    width: 80%;
    margin-bottom: 10px;
  }

  .footer-subscribe button {
    width: 80%;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-bottom .footer-text {
    margin-bottom: 10px;
  }

  .footer-social {
    margin-top: 10px;
  }
} /*# sourceMappingURL=StylesProducto.css.map */
