@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* Estilos globales */

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #faf9f6;
  font-family: "Inter", sans-serif;
  color: #2e4c3f;
  font-weight: 400;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #546b56;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #353535;
}

li>a {
  color: black;
}

/* Popup */
div.popup {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f8b195, #f67280);
  color: white;
  padding: 10px;
  z-index: 1000;
  overflow: hidden;
  white-space: nowrap;
}

/* Header */
header,
footer {
  background-color: #aab39c;
  text-align: center;
}

header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
}

/* Contenedor principal del header */
header .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 55px;
  height: auto;
}

header .logo .logo-titulo {
  font-weight: 700;
  font-size: 22px;
  color: #333;
  margin: 0;
}

/* Contador carrito y fav */
.icono-header {
  position: relative;
  display: inline-block;
}

.count-badge {
  position: absolute;
  top: -14px;
  right: -15px;

  width: 22px;
  height: 22px;
  background: #b4bca7;
  color: #2e4c3f;

  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
  padding: 0;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);

  z-index: 1;
}

/* Menu */
header nav.menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

header nav.menu ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav.menu ul li a {
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

header nav.menu ul li a:hover {
  color: #5a6452;
}

header nav.menu ul a.pagina-actual {
  text-decoration: underline 2px #5a6452;
  font-weight: 600;
  color: #5a6452;
}

/* Iconos */
header .iconos {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .iconos a {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  /* 👈 NECESARIO */
}

header .iconos a i {
  position: relative;
  z-index: 2;
  /* 👈 Ícono adelante */
}

header .iconos a:hover {
  color: #5a6452;
}

/* Main */
main h1#slogan {
  font-weight: 600;
  font-size: 25px;
  text-align: center;
  margin: 50px;
}

/* Footer */
footer {
  border-top: 1px solid #8a8585;
  margin-top: 20px;
  padding-top: 10px;
  background-color: #aab4a0;
  padding: 10px;
}

footer div.iconos-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  padding-left: 36px;
}

footer p {
  color: #333;
}

/* Productos destacados y productos */
.productos,
.productos-destacados {
  padding: 20px;
  text-align: center;
  background: #f9f9f9;
}

.titulo-seccion {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #546b56;
  margin-bottom: 30px;
}

/* Grid */
.contenedor-productos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.card-producto {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card-producto:hover {
  transform: scale(1.03);
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.18);
}

.card-producto img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  display: block;
}

.card-producto h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  color: #546b56;
}

.card-producto p {
  font-size: 14px;
  color: #6d6d6d;
  margin-bottom: 20px;
}

/* Precio + acciones */
.precio-acciones {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.precio {
  font-size: 20px;
  font-weight: bold;
  color: #2e4c3f;
}

/* Botones */
.acciones-producto {
  display: flex;
  gap: 12px;
}

.btn-agregar,
.btn-favorito {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #2e4c3f;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.btn-agregar:hover {
  color: #7b897b;
  transform: scale(1.1);
}

.btn-favorito:hover {
  color: #b02a37;
  transform: scale(1.1);
}

/* Carrito lateral */
.carrito-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 380px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.carrito-sidebar.activo {
  right: 0;
}

/* Header del carrito */
.carrito-header {
  background: #aab4a0;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carrito-header h2 {
  margin: 0;
  color: #2e4c3f;
  font-size: 20px;
  font-weight: 700;
}

.carrito-cerrar {
  font-size: 22px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #2e4c3f;
}

/* Contenido del carrito */
.carrito-contenido {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Mensaje vacio del carrito */
.carrito-vacio {
  padding: 15px;
  text-align: center;
  color: #546b56;
}

/* Items del carrito */
.carrito-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e4e4e4;
}

.carrito-item img {
  width: 65px;
  height: 65px;
  border-radius: 10px;
  object-fit: cover;
}

.carrito-item-info {
  flex: 1;
}

.carrito-item-info h4 {
  margin: 0;
  font-size: 16px;
  color: #2e4c3f;
  font-weight: 600;
}

.carrito-item-info span {
  font-size: 14px;
  color: #6b6b6b;
}

/* Boton para eliminar items del carrito */
.carrito-item-delete {
  font-size: 18px;
  background: transparent;
  color: #2e4c3f;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* Cantidades en los items */
.carrito-cantidad {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.carrito-cantidad button {
  width: 26px;
  height: 26px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  cursor: pointer;
}

.carrito-cantidad span {
  min-width: 22px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* Resumen compra */
.carrito-resumen {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #e4e4e4;
  margin-top: auto;
}

.carrito-resumen-fila {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.carrito-resumen-total span:last-child {
  font-size: 17px;
  font-weight: bold;
  color: #2e4c3f;
  margin: 0px;
}

/* Scroll para prodcutos */
.carrito-lista {
  max-height: 35vh;
  overflow-y: auto;
  padding-right: 5px;
}

/* Si hay texto de carrito vacio */
.carrito-vacio {
  max-height: 40vh;
  overflow-y: auto;
}

/* Cupon */
.carrito-cupon {
  margin-top: 0px;
  padding-top: 0px;
}

.carrito-cupon label {
  font-size: 14px;
  font-weight: 600;
  color: #2e4c3f;
  margin-bottom: 8px;
  display: block;
}

.carrito-cupon-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

#input-cupon {
  flex: 1;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  background-color: #fff;
  color: #2e4c3f;
  outline: none;
  transition: all 0.2s ease;
}

#input-cupon::placeholder {
  color: #8b8b8b;
}

#input-cupon:focus {
  border: 2px solid #2e4c3f;
  box-shadow: 0 0 0 3px rgba(35, 59, 43, 0.25);
}

.carrito-cupon-row button {
  background-color: #7b897b;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carrito-cupon-row button:hover {
  background-color: #546954;
}

.carrito-mensaje {
  font-size: 13px;
  margin-top: 6px;
}

.cupon-exito {
  color: #2E4C3F;
}

.cupon-error {
  color: #b02a37;
}

/* Botones acciones */
.carrito-acciones {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  padding-top: 0px;
}

.carrito-acciones button {
  flex: 1;
  padding: 8px;
  margin: 5px;
  border-radius: 10px;
  cursor: pointer;
}

/* Quitar cupon */
.carrito-quitar-cupon {
  border: 1px solid #7b897b !important;
  color: #7b897b !important;
  background: transparent !important;
  font-weight: 300;
}

.carrito-quitar-cupon:hover {
  background: #7b897b !important;
  color: white !important;
}

/* Vaciar carrito */
.carrito-vaciar {
  background: #ffffff;
  color: #b83632;
  font-weight: 300;
  border: 1px solid #b83632;
}

.carrito-vaciar:hover {
  background: #b83632;
  color: white;
}

/* Boton final compra */
.carrito-checkout {
  background: #7b897b;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0px;
  font-size: 15px;
  font-weight: 400;
}

.carrito-checkout:hover {
  background: #546954;
}

/* Linea separadora debajo de envio y antes del total */
.separador-total {
  border-top: 1px solid #dcdcdc;
  margin-top: 12px;
  padding-top: 12px;
}

/* Linea separadora superior del bloque de resumen */
.carrito-resumen {
  border-top: 1px solid #e4e4e4;
  padding-top: 15px;
}

/* Reseñas */
main section.resenias {
  background-color: #faf9f6;
  padding: 30px;
  margin-top: 60px;
  text-align: center;
}

main section.resenias h2 {
  margin-bottom: 30px;
}

main section.resenias .resenias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

main section.resenias .resenias-grid .resenia {
  background-color: white;
  padding: 30px;
  font-style: italic;
}

main section.resenias .resenias-grid .resenia p {
  font-size: 16px;
  margin-bottom: 1rem;
}

main section.resenias .resenias-grid .resenia .estrellas {
  font-style: normal;
}

main section.resenias .resenias-grid .resenia h4 {
  font-weight: normal;
  font-size: 18px;
  text-align: start;
  color: #444;
  text-align: center;
}

/* Boton ver productos */
main form.boton-ver-productos {
  display: flex;
  justify-content: center;
  margin: 10px;
}

main .boton {
  background-color: #546954;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

main .boton:hover {
  background-color: #7b897b;
}

/* Popup favoritos */
.popup-fav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-fav.activo {
  display: flex !important;
}

.popup-fav-contenido {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.popup-fav-titulo {
  font-size: 20px;
  font-weight: 700;
  color: #2e4c3f;
}

/* X de cerrar */
.popup-fav-x {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #2e4c3f;
  padding: 5px;
  transition: 0.2s ease;
}

.popup-fav-x:hover {
  color: #b02a37;
  transform: scale(1.15);
}

/* Corazón en rojo */
.favorito-activo {
  color: #c0392b !important;
}

/* Header verde tipo barra */
.popup-fav-header-bar {
  background: #aab39c;
  padding: 14px 18px;
  margin: -25px -25px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ajustar botón X */
.popup-fav-header-bar .popup-fav-x {
  color: #2e4c3f;
  font-size: 22px;
}

/* Cards favoritos */
.item-favorito {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #d3d8d5;
  padding: 14px 16px;
  margin: 14px 0;
  transition: 0.25s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* Hover sutil */
.item-favorito:hover {
  border-color: #2e4c3f;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.fav-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 8px;
}

.fav-info {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fav-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 1px;
  margin-bottom: 10px;
  color: #2e4c3f;
  line-height: 1.2;
  text-align: start;
}

.fav-info p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #6a7a70;
  line-height: 1.3;
}

.fav-precio {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #2e4c3f;
}

/* Acciones botones favoritos */

.fav-actions {
  display: flex;
  flex-direction: row;
  padding: 0;
}

.btn-fav-add {
  margin-right: 4px !important;
}

.btn-fav-add,
.btn-fav-remove {
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-fav-remove {
  width: 90px;
  height: 100px;
}

.btn-fav-add {
  width: 70px;
  height: 100px;
}

/* Boton add */
.btn-fav-add {
  background: #234e3d;
  color: white;
}

.btn-fav-add i {
  font-size: 18px;
}

/* Boton remove */
.btn-fav-remove {
  background: #7b897b;
  color: white;
}

.btn-fav-remove i {
  font-size: 18px;
}

/* Hover */
.btn-fav-add:hover {
  background: #1c3f32;
}

.btn-fav-remove:hover {
  background: #6b776b;
}

.fav-empty {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  color: #2e4c3f;
  font-size: 15px;
  font-weight: 500;
}

/* Boton flotante */
#chat-fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #2e4c3a;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition:
    transform 0.2s ease,
    background 0.2s;
}

#chat-fab:hover {
  transform: scale(1.08);
  background: #3e5d4f;
}

/* Mensajes del usuario */
.chat-row.user .chat-bubble {
  background: #2E4C3A;
  color: #DDE6D5;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 70%;
}

/* Mensajes del bot */
.chat-row.bot .chat-bubble {
  background: #E0E0E0;
  color: #000;
  margin-right: auto;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 70%;
}

/* contenedor chat */
#chat-box {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 330px;
  max-height: 470px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatOpen 0.25s ease forwards;
  z-index: 9998;
}

/* Animación */
@keyframes chatOpen {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header chat */
.chat-header {
  background: #2e4c3f;
  color: white;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.chat-header #chat-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Body chat */
.chat-body {
  padding: 15px;
  height: 240px;
  overflow-y: auto;
}

/* Mensaje */
.chat-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}

.chat-icon {
  background: #dde6d5;
  color: #2e4c3a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.chat-bubble {
  background: #dde6d5;
  color: #2e4c3a;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  max-width: 70%;
}

/* Footer */
.chat-footer {
  padding: 15px;
  background: #f7f7f7;
}

.chat-option {
  background-color: #dde6d5;
  color: #2e4c3a;
  border: 1px solid #b5c7a4;
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  margin: 5px 4px;
  transition: 0.2s ease-in-out;
}

.chat-option:hover {
  background: #3e5d4f;
}

.sub-option {
  background-color: #dde6d5;
  color: #2e4c3a;
  border: 1px solid #b5c7a4;
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  margin: 5px 4px;
  transition: 0.2s ease-in-out;
}

.sub-option:hover {
  background-color: #c8d4bd;
  transform: translateY(-2px);
}

.sub-option:active {
  transform: scale(0.96);
}

.volver-opciones {
  background-color: #ffffff;
  border: 1px solid #b5c7a4;
  color: #2e4c3a;
  font-weight: 600;
}

/* Main barra busqueda */
main form.barra-buscadora {
  position: relative;
  width: 400px;
  margin: 20px auto;
  display: flex;
  align-items: center;
}

main form.barra-buscadora input[type="text"] {
  width: 100%;
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
}

main form.barra-buscadora input[type="text"]:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

main form.barra-buscadora .icono-lupa {
  position: absolute;
  right: 15px;
  color: #555;
  font-size: 18px;
  pointer-events: none;
}

main h2#titulo-productos {
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  margin-top: 40px;
}

/* Botón hamburguesa solo en móvil */

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.menu-movile {
  display: none;
}

/* Ajustes responsivos */

@media (max-width: 768px) {

  /* ocultar menú desktop */
  .menu,
  .iconos {
    display: none !important;
  }

  /* mostrar botón hamburguesa */
  .menu-toggle {
    display: block;
  }

  /* menú mobile */
  .menu-movile {
    display: none;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #AAB39C;
    padding: 10px 0;
    position: absolute;
  }

  .menu-movile ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .menu-movile ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 18px;
    background-color: rgba(255, 255, 255, 0.1294117647);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .menu-movile ul li a:hover {
    background-color: #5a6452;
    color: white;
  }

  .nav-container {
    margin: -10px;
  }

  /* clase que se activa con JS */
  .menu-movile.activo {
    display: block;
  }

  #slogan {
    font-size: 26px;
    text-align: center;
    padding: 0 15px;
  }

  /* Productos destacados */
  .contenedor-productos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .card-producto {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 100%;
  }

  .card-producto img {
    width: 100%;
    height: auto;
  }

  /* botones */
  .precio-acciones {
    gap: 70px;
  }

  .acciones-producto {
    display: flex;
    gap: 1px;
  }

  .btn-agregar,
  .btn-favorito {
    font-size: 25px;
    padding: 10px;
  }

  .boton-ver-productos {
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }

  .boton {
    width: 90%;
    padding: 14px;
    font-size: 18px;
  }

  /* reseñas  */
  .resenias-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .resenia {
    text-align: center;
  }

  /*footer */
  footer {
    text-align: center;
    padding: 20px 10px;
  }

  .iconos-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }

}

@media (max-width: 768px) {

  /* Contenedor principal */
  .popup-fav-contenido {
    width: 90%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
    padding: 16px;
    animation: slideUp 0.3s ease;
  }

  .popup-fav-titulo {
    font-size: 18px;
  }

  /* Cards favoritos */
  .item-favorito {
    width: 90%;
    gap: 12px;
    margin-right: 10px;
    border-radius: 12px;
  }

  /* Imagen más chica */
  .fav-img img {
    margin-left: -10px;
    width: 80px;
    height: 80px;
    border-radius: 8px;
  }

  /* Info */
  .fav-info {
    min-width: unset;
  }

  .fav-info h3 {
    font-size: 15px;
    margin-left: -16px;
    margin-bottom: 6px;
  }

  .fav-info p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .fav-precio {
    font-size: 15px;
  }

  .fav-actions {
    margin-left: -25px !important;
  }

  .btn-fav-remove {
    width: 60px;
    height: 80px;
  }

  .btn-fav-add {
    width: 50px;
    height: 80px;
  }

  main .barra-buscadora {
    margin: 0 auto;
    width: 280px !important;
  }
}