
@media (max-width: 768px) {
  .categorias {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
  }

  .categorias ul {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .categorias li {
    list-style: none;
    width: 100%;
    margin: 0;
  }

  .categorias a {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 13px;
    padding: 0.1rem 0.5rem;
    color: #000;
    text-decoration: none;
    border: none;
    background: none;
  }
}

@media (max-width: 768px) {
  .header-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    align-self: flex-start;
  }

  .menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .menu a {
    text-align: center;
    width: auto;
  }
}
@media (max-width: 768px) {
  .carrito-flotante {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #productosContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    box-sizing: border-box;
    gap: 8px;
  }

  .producto {
    width: calc(50% - 8px);
    box-sizing: border-box;
  }

  .producto img {
    width: 100%;
    height: auto;
    display: block;
  }
}
