header.principal {
    position: sticky;
    top: 40px;
    background-color: white;
    width: 100%;
    z-index: var( --z-index-header );
}
header.principal > .contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header.principal > .contenedor > .menu {
    height: 40px;
    width: 40px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
}
header.principal > .contenedor > .menu > .rayitas {
    width: 32px;
    display: flex;
    flex-direction: column;
    height: 40%;
    justify-content: space-between;
}
header.principal > .contenedor > .menu > .rayitas > span {
    height: 2px;
    background-color: black;
}
header.principal > .contenedor > a.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    display: flex;
}
header.principal > .contenedor > a.logo > img {
    width: 80px;
}
header.principal > .contenedor > .carrito {
    position: relative;
    width: 26px;
}
header.principal > .contenedor > .carrito > span {
    position: absolute;
    top: -10px;
    right: -5px;
    background-color: var( --rosado );
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.principal > .contenedor > .carrito > svg {}
