.header__img__container {
    top: 0;
    z-index: -1;
    width: 100%;
}


/* BOTONES DEL MENU */

.menu__button,
.menu__search__button,
.header__search__input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    border-radius: 50%;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
    margin: 10px;
    text-align: center;
}

.menu__container {
    transition: all 1s ease;
}

.header__search__input {
    border: none;
    text-align: left;
    margin-top: 23px;
    cursor: auto;
    background-color: var(--color__secundario);
    color: var(--color__cuarto);
    padding: 0;
    top: -1000px;
    width: 73%;
    left: 12%;
    opacity: 0;
    transition: top 0.5s;
}

.header__search__input__active {
    border: 2px solid black;
    box-shadow: 1px 1px 10px white;
    max-width: 73vw;
    padding: 5px;
    top: 0;
    left: 12%;
    position: fixed;
    opacity: 1;
    z-index: 1;
}

@media screen and (min-width: 974px) {
    .header__search__input__active {
        width: 59%;
        left: 20%;
    }
}

@media screen and (min-width: 1100px) {
    .header__search__input__active {
        width: 648px;
        left: 26%;
    }
}

.header__search__input::placeholder {
    color: var(--color__cuarto);
}

button.menu__button__bars__container {
    margin-top: 5px;
}

.menu__search__button {
    right: 0;
    left: auto;
}

.menu__button__bars__container,
.menu__search__button__container {
    background-color: var(--transparent);
    border: none;
    cursor: pointer;
}

.fa-bars,
.fa-search {
    font-size: 30px;
    color: var(--color__cuarto);
    text-shadow: 0 0 2px var(--color__terciario);
    padding: 5px;
}

.fa-search {
    font-size: 20px;
    margin-top: 10px;
}

.header__img__container__subcontainer {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--color__cuarto);
}

.header__image {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    object-fit: contain;
    filter: brightness(0.5);
}


/* IMAGEN DE LA TIENDA */

.header__logo__img__container {
    position: absolute;
    top: 0;
    width: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    overflow: hidden;
    height: 80%;
}


/* REDES SOCIALES DEL HEADER */

.header__info__RRSS {
    bottom: 2px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 10px;
}

.header__info__RRSS__icon {
    cursor: pointer;
    margin: 3px;
    text-align: center;
    border: solid 2px transparent;
    padding: 2px;
    width: 100%;
    font-size: 28px;
}


/* INFO DEL HEADER */

.header__info__container {
    background-color: var(--color__cuarto);
    padding-top: 100px;
    position: relative;
    box-shadow: 0 -50px 50px rgba(0, 0, 0, 0.32);
}

.header__logo__img,
.header__info__title,
.header__info__description,
.header__info__contact i,
.header__info__contact p {
    color: var(--color__terciario);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.header__logo__img {
    opacity: 1;
    object-fit: contain;
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.header__info__title {
    font-size: 25px;
    font-weight: 700;
    margin: 0 10px;
}

.header__info__description {
    font-size: 14px;
    padding: 10px;
    margin-right: 40px;
    text-align: left;
}

.header__info__contact {
    margin: 0 40px 0 10px;
    display: flex;
    align-items: center;
}

.header__info__contact p {
    font-size: 12px;
    margin: 10px;
    color: var(--color__terciario);
}