@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

/* General Styles */
/* Reset */
body, ul, li, h1, p, h2, h3, a, btn {
  margin: 0;
  padding: 0;
  list-style: none;
   font-family: "Harmonia Sans", sans-serif !important;;
  font-weight: normal; /* Forzar la fuente a usar peso normal */
    text-align: center;
}

body {
  margin-top: 180px; /* Ajusta esto según la altura de tu barra de navegación */
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid rgb(131, 130, 130);
   font-family: "Harmonia Sans", sans-serif !important;;
  height: 150px;
  position: fixed; /* Fija la barra en la parte superior */
  top: 0; /* Asegura que esté en la parte superior */
  left: 0; /* Asegura que esté alineado a la izquierda */
  background-color: white; /* Opcional: da un fondo blanco para mejorar la visibilidad */
  width: 100%; /* Hace que ocupe todo el ancho de la pantalla */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
  }
  
  .navbar-left,
  .navbar-right {
  display: flex;
  align-items: center;
  margin-left: 200px;
  margin-right: 200px;
  }
  
  .navbar-center {
  text-align: center;
  }
  
  .logo h1 {
  font-size: 24px;
  margin: 0;
  }
  
  .logo p {
  font-size: 12px;
  margin: 0;
  }
  
  .navbar-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  }
  
  .navbar-links li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
  }
  
  #home{
  background: linear-gradient(90deg, #2cdbe3, #ffffff); /* Degradado rosado */
  transition: 0.3s;
  }
  
  .navbar-links li a:hover {
  color: #2cdbe3; /* Pink hover effect */
  }

  .search-icon svg {
    width: 20px;
    height: 20px;
    color: #000; /* o el color que prefieras */
  }
  
  .search-icon,
  .user-icon, .cart-icon {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px; /* Asegura que los botones tengan la misma altura */
  width: 40px;  /* Ajusta el tamaño del botón */
  color: black;

  }
  
  .user-iconn {
  display: none;
  }
  
  .user-icon svg {
  width: 24px;  /* Ajusta el tamaño del icono */
  height: 24px;
  fill: #000;  /* Color del icono */
  cursor: pointer;
  transition: fill 0.3s;
  }
  
  .user-icon svg:hover {
  fill: #2cdbe3;  /* Color al pasar el mouse */
  }
  
  .cart-icon {
  position: relative;
  }
  
  .cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: black;
  color: white;
  font-size: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  }
  
  /* Estilos para el usuario y cerrar sesión */
  .navbar-right {
  position: relative; /* Necesario para el posicionamiento del menú de cerrar sesión */
  gap: 20px;
  }
  
  .user-menu {
  display: none; /* Inicialmente oculto */
  position: absolute;
  top: 30px; /* Ajusta según sea necesario */
  right: 7px;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 125px;
   font-family: "Harmonia Sans", sans-serif !important;;
  z-index: 10; /* Asegura que el menú esté encima de otros elementos */
  text-align: center;
  }
  
  /* Mostrar el menú solo cuando el icono de usuario o el menú estén en hover */
  .user-icon:hover + .user-menu,
  .user-menu:hover {
  display: block;
  }
  
  /* Estilo del enlace de cerrar sesión */
  .cerrar {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
  }
  
  .cerrar:hover {
    background-color: #f0f0f0;
    color: #2cdbe3; /* Pink hover effect */
    text-decoration: underline;
  }
  
  .admin-btn{
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
  }
  
  .admin-btn:hover{
      background-color: #f0f0f0;
      color: #2cdbe3; /* Pink hover effect */
      text-decoration: underline;
  }
  
  /* Estilo del carrito */
  .cart-icon {
  cursor: pointer;
  /* Otros estilos de tu carrito */
  }
  
  /* Hamburger Menu */
  .hamburger-menu {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;

  }

  /* Móviles pequeños (480px o menos) */
@media (max-width: 480px) {
  .modal-carrito {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50% !important; /* Ocupa solo la mitad derecha */
    height: 100vh;
    background: white;
    z-index: 1000;
  }
  
  .modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 0 20px; /* Redondear solo el lado izquierdo */
  }


  
  /* Ocultar productos recomendados y divisor */
  .productos-recomendados,
  .divisor {
    display: none;
  }
  
  /* Ajustar el carrito */
  .carrito {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .carrito .modal-header {
    padding: 10px;
  }
  
  .carrito .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
  }
  
  .carrito .modal-footer {
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
  }
}

/* Responsive Styles */
@media (max-width: 1280px) {
.navbar-left, .navbar-right {
  margin-left: 50px;
  margin-right: 50px;
}

.navbar-links {
  gap: 10px;
  margin-top: 10px;
}

.logo h1 {
  font-size: 20px;
}

.logo p {
  font-size: 10px;
}
}

/* Media Query para pantallas más pequeñas (máximo 768px) */
/* Media Query para pantallas de hasta 768px */
@media (max-width: 768px) {
.navbar {
  flex-direction: column;
  height: auto;
  padding: 20px;
  gap: 10px;
  position: relative; /* Para contener el menú hamburguesa y la capa de fondo */
  width: auto !important;
}

.navbar-left,
.navbar-right {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}

.navbar-center {
  flex: 1;
  justify-content: center;
}

.navbar-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0; /* Alinea el menú al principio de la pantalla */
  left: 0;
  width: 300px;
  height: 100vh; /* Hace que el menú ocupe toda la altura de la pantalla */
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 10; /* Asegura que el menú esté por encima del contenido */
  overflow-y: auto; /* Habilita el desplazamiento si el menú es más largo que la pantalla */
}

.navbar-links li a {
  position: relative;
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #000;
}

.navbar-links li a::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 90%;
  height: 2px;
  background-color: black;
}

.navbar-links li a:hover {
  color: #2cdbe3;
}

.navbar-links.show {
  display: flex;
  margin-top: 33px;
}

.hamburger-menu {
  display: block;
  position: absolute;
  left: 10px;
  top: 15px;
  z-index: 20; /* Asegura que el icono esté encima del menú */
}

/* Agregar una capa de fondo para bloquear el contenido detrás del menú */
.navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro translúcido */
  z-index: 5; /* Asegura que quede debajo del menú */
  display: none; /* Ocultar de forma predeterminada */
}

/* Mostrar la capa de fondo cuando el menú está visible */
.navbar-overlay.show {
  display: block;
}

#home {
  background: linear-gradient(90deg, #2cdbe3, #ffffff);
  text-align: center;
  text-decoration: none;
  position: relative;
}

#home:hover {
  color: #2cdbe3;
}
}

/* Media Query para pantallas de teléfonos móviles (máximo 480px) */
@media (max-width: 480px) {
.navbar {
  padding: 10px;
  height: auto;
  width: 100%;
}

.navbar-left,
.navbar-right {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}

.navbar-center {
  text-align: center;
  font-size: 18px;
}

.navbar-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.navbar-links li a {
  padding: 8px 0;
  font-size: 14px;
}

.hamburger-menu {
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
}

.navbar-links.show {
  display: flex;
  width: 80%;
  position: absolute !important;
  z-index: 9999 !important; /* Valor alto para estar por encima de todo */
  background-color: #fff !important; /* Asegura que el fondo sea sólido */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important; /* Sombra opcional para mejor visibilidad */
}

#home {
  font-size: 18px;
  padding: 10px;
}
}

@media (max-width: 768px) {
  .navbar {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
  }

  .navbar-left {
      order: 2 !important;
      width: 100% !important;
      margin-top: 10px !important;
      display: flex !important;
      justify-content: center !important; /* Centra el buscador */
  }

  .navbar-center {
      order: 1 !important;
  }

  #search-container {
      position: absolute !important;
      top: 100% !important;
      left: 50% !important; /* Centro horizontal */
      transform: translateX(-50%) !important; /* Centro horizontal */
      width: 200px !important; /* Ancho fijo de 200px */
      z-index: 1000 !important;
  }

  #search-input {
      width: 200px !important; /* Mismo ancho que el container */
      padding: 8px !important;
      box-sizing: border-box !important;
  }

  .search-icon {
      position: relative !important;
      z-index: 1001 !important;
  }

  .navbar-right {
      order: 3 !important;
  }
}

/* filtro*/
/* Estilo para el botón desplegable */
.dropdown {
position: relative;
display: inline-block;
 font-family: "Harmonia Sans", sans-serif !important;;
padding-left: 45px;
padding-bottom: 20px;
}

.selected {
color: #007BFF; /* Puedes cambiar el color de la opción seleccionada */
}


.dropdown-btn {
background-color: #fff;
color: #000;
border: 1px solid #ddd;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
width: 200px;
text-align: left;
}

.dropdown-btn:hover {
background-color: #f9f9f9;
}

/* Estilo para el menú */
.dropdown-menu {
display: none; /* Oculto por defecto */
position: absolute;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 5px;
padding: 10px 0;
margin: 0;
list-style-type: none;
width: 220px;
z-index: 10;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-menu .dropdown-header {
font-size: 14px;
color: #888;
padding: 5px 20px;
}

.dropdown-menu .dropdown-item {
font-size: 16px;
padding: 10px 20px;
cursor: pointer;
color: #000000;
transition: background-color 0.3s ease;
}

.dropdown-menu .dropdown-item.selected {
color: #2cdbe3;
}

/* Estilo cuando una opción está siendo presionada */
.dropdown-menu .dropdown-item:active {
color: #2cdbe3;
}


.dropdown-menu .dropdown-item:hover {
background-color: #f0f0f0;
}

/* Mostrar el menú al hacer clic */
.dropdown:hover .dropdown-menu {
display: block;
}




/* Footer */
.custom-footer {
  background-color: #2cdbe3; /* Fondo rosa */
  color: #ffffff; /* Texto blanco */
  padding: 10px 40px; /* Reducir padding superior e inferior */
  font-family: "Harmonia Sans", sans-serif !important;;
  position: relative;
  height: 200px;
  align-items: center;
  display: grid;
}

.footer-container {
display: flex;
justify-content: space-between;
align-items: flex-end; /* Alinear el contenido al fondo */
}

.footer-logo img {
max-width: 120px; /* Tamaño del logo */
}

.footer-content {
flex: 1;
text-align: center; /* Centrar el contenido */
}

.footer-section h3 {
font-size: 1.5em;
margin: 0;
}

.footer-section p {
margin: 10px 0;
}

.footer-social {
  margin-top: 5px; /* Reducir el espacio */
}

.footer-social a {
  color: #ffffff; /* Color inicial del ícono */
  margin: 0 5px;
  font-size: 1.5em; /* Tamaño del ícono */
  text-decoration: none;
  display: inline-flex; /* Cambiado a inline-flex */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Hacer círculo */
  transition: all 0.3s ease; /* Transición suave */
}

.footer-social a:hover {
  background-color: #ffffff; /* Fondo blanco al hacer hover */
  color: #2cdbe3; /* Ícono cambia al color rosa del footer */
}

.footer-rights {
margin-top: 10px; /* Reducir espacio */
font-size: 0.9em;
}

.footer-rights p {
margin: 0; /* Sin margen */
}

/* Media Query para pantallas de hasta 1280px (laptops) */
@media (max-width: 1280px) {
.footer-container {
  flex-direction: column; /* Cambiar a columna para pantallas más pequeñas */
  align-items: center; /* Centrar todo el contenido */
}

.footer-logo img {
  max-width: 100px; /* Reducir el tamaño del logo */
}

.footer-content {
  text-align: center; /* Centrar el contenido */
}

.footer-social a {
  font-size: 1.2em; /* Reducir el tamaño de los íconos */
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.footer-rights {
  font-size: 0.85em; /* Reducir tamaño de fuente */
  text-align: center; /* Centrar el texto */
}
}

/* Media Query para pantallas de hasta 768px (tabletas) */
@media (max-width: 768px) {
.custom-footer {
  padding: 20px 30px; /* Aumentar padding en pantallas pequeñas */
}

.footer-container {
  flex-direction: column;
  align-items: center;
}

.footer-logo img {
  max-width: 80px; /* Reducir el tamaño del logo */
}

.footer-social a {
  font-size: 1.5em; /* Mantener tamaño de íconos */
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.footer-rights {
  font-size: 0.8em; /* Reducir tamaño de fuente */
}
}

/* Media Query para pantallas de hasta 480px (teléfonos móviles) */
@media (max-width: 480px) {
.custom-footer {
  padding: 10px 20px; /* Reducir padding */
}

.footer-container {
  flex-direction: column; /* Cambio a columna para pantallas más pequeñas */
  align-items: center;
}

.footer-logo img {
  max-width: 60px; /* Reducir tamaño del logo */
}

.footer-social a {
  font-size: 1.2em; /* Reducir tamaño de los íconos */
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.footer-rights {
  font-size: 0.75em; /* Reducir tamaño de fuente */
  text-align: center; /* Centrar texto */
}
}



/* Modal */
.modal-carrito {
position: fixed;
top: 0;
right: 0;
height: 100%;
background-color: #fff;
box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
z-index: 1000;
}

.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #f8f8f8;
border-bottom: 1px solid #ddd;
}

.modal-headerr{
display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #ddd;
}

.modal-header h2 {
margin: 0;
font-size: 18px;
}

.close-btn {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
}

.modal-body {
flex: 1;
overflow-y: auto;
padding: 20px;
}

.carrito-items {
list-style: none;
padding: 0;
margin: 0;
}

.carrito-item {
display: flex;
align-items: center;
margin-bottom: 40px;
border-bottom: 1px solid #eee;
padding-bottom: 0px;
}

.carrito-item img {
width: 60px;
height: 60px;
border-radius: 5px;
margin-right: 15px;
}

.carrito {
padding-right: 20px;
}

.item-details {
flex: 1;
}

.item-details h4 {
margin: 0 0 5px;
font-size: 16px;
}

.item-details p {
margin: 0;
color: #555;
font-size: 14px;
}

.item-actions {
display: flex;
align-items: center;
margin-top: 10px;
}

.item-actions button {
background-color: #f0f0f0;
border: none;
padding: 5px 10px;
cursor: pointer;
font-size: 16px;
}

.item-actions span {
margin: 0 10px;
font-size: 16px;
}

.remove-btn {
background: none;
border: none;
font-size: 20px;
color: #f00;
cursor: pointer;
}

.modal-footer {
padding: 20px;
background-color: #f8f8f8;
border-top: 1px solid #ddd;
text-align: center;
}

.checkout-btn,
.view-cart-btn {
width: 100%;
margin-top: 10px;
padding: 10px;
border: none;
background-color: #2cdbe3;
font-size: 16px;
cursor: pointer;
font-size: 16px;
transition: opacity 1s ease, background-position 2s ease;
background-size: 220% 100%;
background-position: 190% 0;
color: white;
}

@keyframes epicAnimationn {
0% {
  transform: scale(1);
  background-color: #000;
  box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
}
50% {
  transform: scale(1.2);
  background-color: #2cdbe3;
  box-shadow: 0 0 15px #2cdbe3, 0 0 25px #2cdbe3;
}
100% {
  transform: scale(1);
  background-color: #000;
  box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
}
}

.footer-rights p {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-top: 20px;
}

.footer-rights a{
  text-decoration: none;
}
.footer-rights strong {
  color: #000;
}


.user-icon:hover {
  color: #2cdbe3;  /* Color al pasar el mouse */
}


.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  color: black;
}

.search-circle {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-circle::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 1px;
  background: currentColor;
  bottom: -4px;
  right: -9px;
  transform: rotate(45deg);
}

.modal-content {
display: flex;
gap: 10px;
height: 100%;
}

.compra {
height: 75%;
}

.divisor {
width: 1px;
background-color: #ddd;
margin: 0 10px;
}

.add-to-cart-btn {
background-color: transparent;
color: #000000;
font-size: 12px;
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
text-decoration: none;
padding-top: 10px;
position: relative;
overflow: hidden;
}

.add-to-cart-btn span {
display: inline-block;
opacity: 0;
transform: translateX(100%);
transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.add-to-cart-btn:hover span {
opacity: 1;
transform: translateX(0);
animation: slideInFromRight 0.5s forwards;
}

.add-to-cart-btn:hover {
color: #2cdbe3;
}

@keyframes slideInFromRight {
0% {
  transform: translateX(100%);
  opacity: 0;
}
100% {
  transform: translateX(0);
  opacity: 1;
}
}

.add-to-cart-btn .arrow {
margin-left: 8px;
font-size: 18px;
font-weight: normal;
transition: transform 0.3s;
text-decoration: none;
}

.add-to-cart-btn:hover .arrow {
transform: translateX(5px);
text-decoration: none;
}

/* Media Queries for Responsiveness */

/* Para pantallas de hasta 1280px (laptops) */
@media (max-width: 1280px) {
.modal-carrito {
  width: 550px; /* Reducir el ancho del modal */
}

.modal-header h2 {
  font-size: 16px; /* Ajustar tamaño del título */
}

.checkout-btn, .view-cart-btn {
  font-size: 14px; /* Reducir tamaño de fuente en los botones */
}

.item-details h4 {
  font-size: 14px; /* Reducir tamaño de fuente de los productos */
}

.item-details p {
  font-size: 12px; /* Reducir tamaño de texto en los productos */
}
}

/* Para pantallas de hasta 768px (tabletas) */
@media (max-width: 768px) {
.modal-carrito {
  width: 72%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.recomendado{
  font-size: 14px;
}

.modal-header {
  padding: 15px;
}

.modal-header h2 {
  font-size: 14px;
}

.item-details h4 {
  font-size: 14px;
}

.item-details p {
  font-size: 12px;
}

.checkout-btn, .view-cart-btn {
  font-size: 14px;
  padding: 8px;
}
}

/* Para pantallas de hasta 480px (teléfonos móviles) */
@media (max-width: 480px) {
.modal-carrito {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.modal-header {
  padding: 10px;
  align-items: flex-start;
}

.modal-headerr {
  padding: 10px;
  align-items: flex-start;
}
.recomendado{
  font-size: 14px;
}

.modal-content{
  gap: 0px;
}

.modal-header h2 {
  font-size: 14px;
}

.item-details h4 {
  font-size: 13px;
}

.item-details p {
  font-size: 11px;
}

.checkout-btn, .view-cart-btn {
  font-size: 12px;
  padding: 8px;
}
}
  

  /* Estilos generales */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
   font-family: "Harmonia Sans", sans-serif !important;;
  line-height: 1.6;
}

.profile {
  text-align: center;
  margin-bottom: 20px;
}

.profile-image {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
}

.title, .expo {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  color: #333;
}

.biography {
  text-align: justify;
  font-size: 16px;
  color: #555;
}

.expositions {
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.expositions li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

/* Para tablets (pantallas entre 768px y 1024px) */
@media (max-width: 1024px) {
  .profile-image {
    width: 250px;
    height: 250px;
  }

  .title, .expo {
    font-size: 20px;
  }

  .biography {
    font-size: 14px;
  }

  .expositions li {
    font-size: 14px;
  }
}

/* Para móviles (pantallas de 767px o menos) */
@media (max-width: 767px) {
  .container {
    padding: 10px;
  }

  .profile-image {
    width: 200px;
    height: 200px;
  }

  .title, .expo {
    font-size: 18px;
  }

  .biography {
    font-size: 13px;
  }

  .expositions li {
    font-size: 13px;
  }
}

/* Para móviles pequeños (pantallas de 480px o menos) */
@media (max-width: 480px) {
  .container {
    padding: 5px;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  .title, .expo {
    font-size: 16px;
  }

  .biography {
    font-size: 12px;
  }

  .expositions li {
    font-size: 12px;
  }
}


/* Estilo para las redes sociales laterales */
.social-icons {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.social-icons .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 20px; /* Tamaño del icono */
  color: #000;
}

.social-icons .icon:hover {
  background-color: #111111; /* Fondo gris */
  transform: scale(1.1); /* Aumenta el tamaño del círculo */
  color: #fff;
}

.social-icons .icon i {
  transition: transform 0.3s ease;
}

.social-icons .icon:hover i {
  transform: scale(1.3); /* Zoom en el icono */
}





.taller-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}

.taller-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.taller-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 155px;
     font-family: "Harmonia Sans", sans-serif !important;;
}

.btn:hover {
    background-color: white;
    border: solid 1px;
    color: black;
     font-family: "Harmonia Sans", sans-serif !important;;
}

.btn a {
     font-family: "Harmonia Sans", sans-serif !important;;
}

.image-container img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    margin-top: 20px;
}

.additional-text {
    margin-top: 30px;
    color: #555;
}

.additional-text p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Media queries para tablets */
@media (max-width: 768px) {
    .taller-container {
        padding: 20px;
    }

    .taller-container h1 {
        font-size: 28px;
    }

    .taller-container p {
        font-size: 16px;
    }

    .btn {
        width: 140px;
        font-size: 14px;
    }

    .image-container img {
        max-height: 250px;
    }

    .additional-text p {
        font-size: 14px;
    }
}

/* Media queries para celulares */
@media (max-width: 480px) {
    .taller-container {
        padding: 15px;
    }

    .taller-container h1 {
        font-size: 24px;
    }

    .taller-container p {
        font-size: 14px;
    }

    .btn {
        width: 120px;
        font-size: 12px;
    }

    .image-container img {
        max-height: 200px;
    }

    .additional-text p {
        font-size: 12px;
    }
}

/* Ajustes para pantallas de 1280px o menos */
@media (max-width: 1280px) {
    .taller-container {
        max-width: 900px;
        padding: 30px;
    }

    .taller-container h1 {
        font-size: 32px;
    }

    .taller-container p {
        font-size: 17px;
    }

    .btn {
        width: 150px;
        font-size: 15px;
    }

    .image-container img {
        max-height: 280px;
    }

    .additional-text p {
        font-size: 15px;
    }
}



/* Estilo para el contenedor de resultados de búsqueda */
#search-container {
  position: absolute; /* Posición absoluta respecto al contenedor padre más cercano */
  top: 100%; /* Ubica el contenedor justo debajo del ícono */
  left: 0; /* Alinea el contenedor al borde izquierdo del contenedor padre */
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Asegura que esté sobre otros elementos */
  display: none; /* Oculto por defecto */
  text-align: center;
}

/* Estilo para el input del buscador */


/* Estilo para los resultados */
#product-results {
  margin-top: 10px;
  max-height: 200px; /* Altura máxima para mostrar los resultados */
  overflow-y: auto; /* Agrega scroll si los resultados son demasiados */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 10;
}

/* Estilo para cada item de producto */
#product-results .producto-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px; /* Reducir el tamaño del texto */
  display: flex; /* Usamos flexbox para organizar imagen y texto */
  align-items: center; /* Centra verticalmente la imagen y el texto */
}

/* Estilo para la imagen del producto */
#product-results .producto-item img {
  width: 40px; /* Reducir el tamaño de la imagen */
  height: 40px;
  object-fit: cover;
  margin-right: 10px; /* Espacio entre la imagen y el texto */
}

/* Estilo para el nombre del producto */
#product-results .producto-item h3 {
  font-size: 14px;
  margin: 0;
  flex-grow: 1; /* Permite que el nombre del producto ocupe el espacio disponible */
}

/* Estilo para la descripción o precio del producto */
#product-results .producto-item p {
  font-size: 12px; /* Reducir el tamaño del precio */
  color: #000;
  margin: 10px;
}

/* Estilo para el botón de agregar al carrito */
#product-results .producto-item button {
  width: 36%;
  margin-top: 10px;
  padding: 10px;
  border: none;
  background-color: rgb(44, 219, 227);
  color: white;
  cursor: pointer;
  font-size: 10px;
  transition: opacity 1s ease, background-position 2s ease;
  background-size: 220% 100%;
  background-position: 190% 0;
}

@keyframes epicAnimationn {
  0% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
  50% {
    transform: scale(1.2);
    background-color: #2cdbe3;
    box-shadow: 0 0 15px #2cdbe3, 0 0 25px #2cdbe3;
  }
  100% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
  }
  
