header {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.header-superior-background{
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: var(--background-color-3);
    color: var(--background-color-2);
}

.header-superior-content{
    display: flex;
    width: 100%;
    height: 100%;
    max-height: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    max-width: 1440px;
}

.header-superior-content a{
    border-bottom: 1px solid var(--background-color-3);
}

#cart-toggle{
    background: var(--background-color-3);
    color: var(--text-color-3);
    border: none;
    cursor: pointer;
    transition: all 300ms ease;
    box-sizing: border-box;
    font-size: 16px;
}

.header-info{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header-user{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.header-user img{
    width: 24px;
}

.header-central-background {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
    background: var(--background-color-3);
    background-size: cover;
}

.header-central-background img {
    width: 100%;
    max-width: 180px;
    animation: breathing 4s ease-in-out infinite;
}

.header-central-background i{
    color: var(--background-color-4);
}

@keyframes breathing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 1280px) {

    #cart-toggle{
        display: none;
    }
    
    .header-superior-content{
        height: 55px;
    }
        
}
