

		.container {

			width: 95%;
			max-width: 400px;
			padding: 20px;
			border-radius: 10px;
			background: #cecece;
			box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.75);
			margin: auto;
			border: solid 10px #cecece;
		
		}
input, select, textarea {
  font-size: 16px;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
		h2 {
			font-size: 24px;
			text-align: center;
			margin-bottom: 20px;
			color: #333;
		}

		form {
			display: flex;
			flex-direction: column;
		}

		label {
			margin-bottom: 10px;
			font-weight: bold;
		}

		input[type="text"],
		input[type="password"] {
			padding: 10px;
			border: 1px solid #DDD;
			border-radius: 5px;
			margin-bottom: 20px;
		}

		input[type="submit"] {
			padding: 10px 20px;
			background: #f30000;
			border: none;
			border-radius: 5px;
			color: #FFF;
			font-weight: bold;
			cursor: pointer;
		}

		input[type="submit"]:hover {
			background: red;
		}
		#login-form {
  display: flex;
}

#registro-form {
  display: none;
}
#olvido-form{
	display: none;
}

button {
	padding: 10px 20px;
			background: #6C6C6C;
			border: none;
			border-radius: 5px;
			color: #FFF;
			font-weight: bold;
			cursor: pointer;
			font-size: 15px;
			margin-top: 10px;
}
button:hover {
	background: #999999;
}
#login-form a{
	margin-bottom: 10px;
	text-decoration: none;
	color: #C1C1C1;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}
#olvido-form a{
	margin-bottom: 10px;
	text-decoration: none;
	color: #C1C1C1;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}
#login-form a:hover {
	color: #474747;
}
#olvido-form a:hover {
	color: #474747;
}
@media screen and (max-width: 768px) {
	.container{
		
	  margin-bottom: 60px;	

	}
}
/* Estilos CSS */
    * {
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      
      background-color: #f2f2f2;
       min-height: 100vh;
       display: flex;
       flex-direction: column;
      min-height: 100vh;
      
    }
    input, select, textarea {
  font-size: 16px;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
   header{
   	width: 100%;
   	background-color: #8f8f8f; /* Cambiar el color de fondo según tus preferencias */
   	margin-bottom: 20px;
    
   }
    .header {
      color: #fff;
      display: flex;
      justify-content: center;
      width: 95%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0;
      height: 70px;
    }
    
    .logo {
    background: #8f8f8f;
    height: 170px;
    width: 275px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .menu-burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-burger div {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 5px;
      transition: all 0.3s ease;
    }

    .nav-links {
      display: flex;
      justify-content: flex-end; /* Alinear elementos a la derecha */
      flex: 1; /* Expandir el espacio disponible */
    }

    .nav-links li {
      list-style: none;
    }
   ul{
   	display: flex;

   }

    .nav-links a {
      color: #fff;
      text-decoration: none;
      padding: 10px;
      transition: all 0.3s ease;
      border-radius: 20px;

    }

    .nav-links a:hover {
      background-color: #555;
      opacity: 0.8;
    }

    .footer {
      background-color: #717171;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 20px;
    }
                                      

  #product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  background-color: ;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 80px;
}
#product-container h2{

  width: 100%;
  text-align: center;
}
#basket{
      background: yellow;
      color: #000;
      border-radius: 2px;
      margin-left: 10px;
    }

.product {
  width: 200px;
  height: 320px;
  margin: 10px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}
#sin-stock{
  opacity: 0.8;
  cursor: not-allowed;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 15px;
  color: #313131;
}

.product p {
  font-size: 16px;
  color: #858585;
}
.product a{
  padding: 5px 50px;
  border-radius: 3px;
  background-color: #fad458;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px; 
}
.product a:hover {
  background-color: #4479ff;
}

.product-details {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #e1e1e1;
    font-size: 14px;
    color: #7d7d7d;
    transform: translateY(-27%);
    transition: 0.5s;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
}

.show-details {
  display: block;
}
#btn-view-product{
  width: 100%;
  display: flex;
  justify-content: center;
}
#view-more-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #BA0000;
  color: white;
  border: none;
  border-radius: 5px;

  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
#view-more-btn:hover {
  background: #FB0000;
}
.pagination{

  text-align: center;
  font-size: 25px;
  color: rgb(223 0 0);
  margin-top: -50px;

}
.pagination a{

  text-decoration: none;
  color: rgb(255 115 115);
}
.pagination a:hover{

  color: rgb(223 0 0);
}
.pagination span{

  cursor: pointer;
}
    /* Estilos responsivos */
    @media screen and (max-width: 768px) {
      ul{
      	flex-direction: column;
      	width: 100%;
      	padding-left: 0;

      }
      .menu-burger {
        display: flex;
      }
      li{
      	margin-bottom: 1px;
      	width: 100%;
      	background: #AC1E00;
      	text-align: center;

      	padding: 20px;
      }

      .nav-links {
        position: absolute;
        justify-content: start;
        top: 59px;
        margin: auto;
        right: 0;
        background-color: rgba(76, 76, 76, 0.8);
        display: flex;
        width: 100%;
        height: 100%;        
        transition: all 0.5s ease-in;
        opacity: 0;
        pointer-events: none;
        z-index: 10;

      }
      


      .nav-links li {
        opacity: 1;
        animation: navLinkFade 0.5s ease forwards;
      }

      .nav-active {
        opacity: 1;
        z-index: 10;
        pointer-events: all;

      }

      .nav-links a {
        padding: 0px 0;
        opacity: 1;
      }
      #basket{
       margin-left: 0;
      }

      #basket li{
      background: yellow;
      color: #000;
    }
     .product{
      max-width: 160px;
      padding: 7px 3px;
      padding-bottom: 20px;

    }
    .product img{
      width: 140px;
    }
    #product-container{
      padding: 0;
    }

  }