* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Akaya Kanadaka', cursive;
   
}
/* Header */
header::before {
    content: "";
    display: block;
    margin-bottom: 80px;
}

/* Estilos para el menú de navegación */
nav {
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
    transition: all 0.5s ease-in-out;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav .logo {
    font-size: 35px;
    font-family: 'Impact', sans-serif;
    color: #17202A;
}

.nav .enlaces-header a {
    color: #5D6678;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease, background-color 0.3s ease;
    padding: 10px 15px;
    border-radius: 4px;
}

.nav .enlaces-header a:hover {
    background-color: #f0f0f0;
    color: #17202A;
}

.hamburguer {
    display: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
    transition: color 0.3s ease;
}

/* Responsivo */
@media screen and (max-width:600px) {
    .nav {
        padding: 0 10px;
    }

    .contenido-header>img {
        width: 200px;
    }

    .enlaces-header {
        position: fixed;
        background: #667db6;
        background: linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        clip-path: circle(0.0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav .menudos {
        clip-path: circle(150% at 100% 0);
    }

    .nav .enlaces-header a {
        color: #fff;
        font-size: 1.2em;
    }

    .hamburguer {
        display: block;
    }

    .cta {
        display: inline-block;
        background: var(--color-btn);
        color: var(--text-btn);
        padding: var(--padding-btn);
        text-align: center;
        text-decoration: none;
    }

    .bg {
        opacity: 1;
        background-image: radial-gradient(#444CF7 0.7px, transparent 0.7px), radial-gradient(#444CF7 0.7px, #E5E5F7 0.7px);
        background-size: 28px 28px;
        background-position: 0 0, 14px 14px;
        text-align: center;
    }
}
/* Estilos para el pie de página */
.main-footer {
    background: #151515;
    color: white;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.footer_section {
    margin-bottom: 20px;
}

.footer_section .logo {
    width: 200px; /* Ajusta el tamaño del logo */
    margin-bottom: 15px;
}

.footer_title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

.footer_txt {
    color: #ccc;
    margin-bottom: 15px;
}

.footer_link {
    color: #bbb;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer_link:hover {
    color: #fff;
}

.footer_input {
    background: #2a2a2a;
    color: white;
    width: 100%;
    padding: 15px;
    border: 1px solid #555;
    margin-top: 10px;
}

.footer_input::placeholder {
    color: #bbb;
}

.copy {
    color: #888;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
}

.footer_section i {
    color: #bbb;
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.footer_section i:hover {
    color: #fff;
}

/* Grid para pantallas grandes */
@media screen and (min-width:1024px) {
    .main-footer {
        grid-template-columns: repeat(4, 1fr);
    }
    .copy {
        grid-column: 1 / span 4;
        text-align: center;
    }
}

.contenedor {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}


.contenedor1 {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 60px 0;
}

/*Carrito de Compras*/

.addToCart{
    transition-duration: 0.4s;
    border-radius: 12px;
    padding: 10px 24px;
    background-color: white;
    color: black;
    border: 2px solid #f57004; 
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    
  }
  
  .addToCart:hover {
    background-color: #e65411; /* Green */
    color: white;
  }
  .comprarButton{
    transition-duration: 0.4s;
    border-radius: 12px;
    padding: 10px 24px;
    background-color: white;
    color: black;
    border: 2px solid #04bdf5; 
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    

  }
  .comprarButton:hover {
    background-color: #1511e6; /* Green */
    color: white;
  }
  .btn-secondary{
    transition-duration: 0.4s;
    border-radius: 12px;
    padding: 10px 24px;
    background-color: white;
    color: black;
    border: 2px solid #f52004; 
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  }
  .btn-secondary:hover {
    background-color: #e63111; /* Green */
    color: white;
  }
  .item {
    display: grid; 
text-align: center;
align-items: center;
  }
  .item-1{
      width: 30%;
      height: 70%;
  }
  .item-2{
    width: 30%;
    height: 70%;
  }
  .item-3{
    width: 30%;
    height: 70%;
  }
  .item-4{
    width: 30%;
    height: 70%;
  }
  .item-5{
      width: 30%;
      height: 80%;
  }
  /* Favoritos */
  .addToFavorites {
    transition-duration: 0.4s;
    border-radius: 50%; /* Forma circular */
    padding: 8px;
    background-color: #ffffff;
    color: #f57004; /* Color similar al botón de carrito */
    border: 2px solid #f57004; 
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19); /* Menor sombra para hacerla más sutil */
    font-size: 18px; /* Tamaño del ícono ajustado */
    width: 40px; /* Tamaño del botón */
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    margin-left: 10px; /* Separación del botón de carrito */
}

.addToFavorites:hover {
    background-color: #f57004;
    color: white;
    transform: scale(1.1); /* Ligeramente más grande al hacer hover */
}

.item-image {
    max-width: 100%; /* Limita el ancho máximo al contenedor */
    height: auto;   /* Mantiene la proporción de la imagen */
    display: block; /* Evita márgenes innecesarios */
    margin: 0 auto; /* Centra la imagen dentro del contenedor */
    max-height: 300px; /* Opcional: limita la altura */
}
/* compra */
.swal2-input {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
}

.swal2-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.fa-solid {
    color: #007bff;
    font-size: 18px;
}
