* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
margin: 0;
background: #fff;
color: #333;
font-family: "Akaya Kanadaka", sans-serif;
}

.header {
display: flex;
background: #e0f2ff;
padding: 10px;
border-bottom: 2px solid #e0f2ff;
font-family: "Dancing Script", cursive;
text-align: right;
}

.texto {
display: flex;
background: #e0f2ff;
padding: 3.5px;
border-bottom: 2px solid #ccc;
font-family: "Dancing Script", cursive;
font-size: 60px;
text-align: center;
position: absolute;
right: 480px;
top: -3px;
}

.logo {
width: 150px;
height: 150px;
border-radius: 50%;
}

.header h1 {
font-size: 18px;
text-align: center;
margin: 0;
font-size: 55px;
}

.buscador {
display: flex;
align-items: center;
}

.buscador input {
padding: 5px;
border: 1px solid #aaa;
border-radius: 5px;
width: 300px;
height: 50px;
font-size: 15px;
}

.buscador img.lupa {
margin-left: 5px;
width: 20px;
height: 20px;
}

.contenedor {
display: flex;
padding: 2px;
border-top: 5px solid #ccc;
}

.categorias {
width: 25%;
border-right: 2px solid #aaa;
background-color:#e0f2ff;

}

.categorias ul {
list-style: none;
padding: 0;
}

.categorias li {
display:flex;
align-items: center;
margin-bottom: 15px;
}

.categorias a {
display: flex;
align-items: center;
text-decoration: none;
color: #333;
font-size: 20px;
}

.categorias a:hover {
color: red;
text-decoration: underline;

}

.categorias img {
width: 100px;
height: 100px;
margin-right: 10px;
border: 2px solid #2196f3;
padding: 2px;

}

.ofertas {
width: 75%;
padding-left: 20px;
background-color: #ccc;
}

.ofertas h2 {
font-size: 28px;
text-align: center;
margin-bottom: 15px;
}

.ofertas2 {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 15px;
}

.producto {
border: 2px solid #e53935;
border-radius: 10px;
background: #fff;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
}

.producto:hover {
transform: scale(1.05);
}

.producto-img img {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 8px;
}

.producto-info {
text-align: center;
margin-top: 10px;
}

.producto-info .nombre {
font-size: 16px;
font-weight: bold;
margin: 0;
color: #333;
}

.producto-info .precio {
font-size: 14px;
color: #e53935;
margin: 5px 0 0;
}

.akaya-kanadaka-regular {
  font-family: "Akaya Kanadaka", sans-serif;
  font-weight: 400;
  font-style: normal;
}



.descripcion {
background: #f1f1f1;
text-align: center;
padding: 10px;
font-size: 18px;
border-top: 2px solid #ccc;
}

.fa-instagram{
font-size: 28px;
color: #333;
margin-right: 15px;

}
.fa-facebook{
font-size: 28px;
color: #333;
margin-left: 5px;
}
.fa-youtube{
font-size: 28px;
color: #333;
margin-left: 17px;
}
.fa-tiktok{
font-size: 28px;
color: #333;
margin-left: 20px;
}

.header h1 {
  font-size: 60px;
  color: black;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: right;
    align-items: left;
  }
  
  .header h1 {
    font-size: 34px;
    color: black;
    margin-top: 0;
    
  }

  .texto {
    position: static;
    margin: 10px auto;
    text-align: center;
    justify-content: center;
    font-size: 30px;
    margin-top: 0;   
    padding-top: 0;
    margin-left: 120px;
  }

  .buscador {
    justify-content: center;
  }

  .contenedor {
    flex-direction: column;
  }

  .categorias {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #aaa;
  }

  .ofertas {
    width: 100%;
    padding: 10px;
  }

  .ofertas2 {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 500px) {
  .logo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    position: absolute;
    left: 2px;
    top: 10px;
    border-radius: 50%;
  }

  .buscador input {
    width: 100%;
  }

  .producto {
    width: 100%;
  }

  .producto-img img {
    height: 100px;
  }

  .producto-info .nombre,
  .producto-info .precio {
    font-size: 12px;
  }
}