body {
  font-family: "Rubik", sans-serif;
  font-size: 1.1em;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

header {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo-container {
  flex: 0 0 auto;
}

.logo {
  height: 70px;
  width: auto;
}

.language-selector {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #333;
}

.language-selector .lang {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
  font-size: 0.9rem;
}

.language-selector .lang:hover {
  color: #f68eca;
}

.language-selector .active-lang {
  color: #d71285;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  margin: 0 15px;
}

nav a.active {
  color: #d71285;
}

nav a:hover {
  color: #f68eca;
}

.batidostitulo {
  font-size: 35px;
  color: #f65e12;
}

.especialidades {
  font-size: 30px;
}

.precio {
  font-size: 20px;
}

.sabores {
  display: flex;
  justify-content: center;
  gap: 120px;
  text-align: left;
  text-align: center;
  margin: 40px auto;
}

.sabores ul {
  list-style: none;
  padding: 0;
  width: auto;
}

.sabores li {
  margin: 10px 0;
  font-size: 18px;
}

h4 {
  text-align: left;
  margin-left: 20px;
  color: #938372;
}

.combina {
  font-size: 30px;
  color: #888;
}

.alergenos {
  font-family: "rubik";
  font-weight: 300;
  color: red;
  font-size: 25px;
}

footer {
  background-color: #333;
  color: white;
  padding: 15px 20px;
}

.footer-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons {
  position: absolute;
  left: 20px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 20px;
  height: auto;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.cookie-buttons button {
  margin: 0 5px;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#accept-cookies {
  background-color: #4caf50;
  font-family: "Rubik", sans-serif;
  color: white;
}

#accept-cookies:hover {
  background-color: #45a049;
}

#reject-cookies {
  background-color: #f44336;
  font-family: "Rubik", sans-serif;
  color: white;
}

#reject-cookies:hover {
  background-color: #da190b;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    background-color: white;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1s ease;
    border-top: 0px solid #ccc;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0);
    z-index: 999;
  }

  nav a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
    margin: 0;
  }

  nav.active {
    max-height: 500px;
  }

  h3 {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .sabores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 360px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .sabores ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .sabores li {
    font-size: 18px;
    line-height: 1.5;
    min-height: 27px;
  }

  .combina {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .alergenos {
    padding: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  #cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons {
    position: static;
    justify-content: center;
  }

  .cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
