* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contenedor_principal {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: white;
}

.HEADER {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    background: #ffffff;
    
}
.HEADER_1 {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.HEADER_2 {
    width: 100%;
    display: flex;
    align-items: center;
}
.HEADER_3 {
    width: 100%;
    display: flex;
    margin: auto;
    
}
.shopicon {
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(Shoping.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: auto;
    transition: all 0.1s ease;
    border-radius: 5px 5px 5px 5px;
    justify-self: right;
}
.loginicon {
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(Login.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: auto;
    transition: all 0.1s ease;
    border-radius: 5px 5px 5px 5px;
    justify-self: right;
}
.shoppin {
    width: 200px;
    display: flex;
    align-items: center;
    padding: 5px;
}

.comprar {
    width: 40px;
    height: 40px;
    display: block;
    margin: auto;
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 3px;
    position: relative;
}
.login {
    width: 40px;
    height: 40px;
    display: block;
    margin: auto;
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 3px;
}
.shopicon:hover {
    cursor: pointer;
    background-image: url(Shop_Icon.png);
    background-color: #ffffff;
}
.loginicon:hover {
    cursor: pointer;
    background-image: url(Login_Icon.png);
    background-color: #ffffff;
}

.contador {
    text-align: center;
    font-size: 16px;
    padding: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: white;
    background: #ff6c22;
    position: absolute;
    right: 100px;
    top: 0;
    display: none;
}
.Box_logo {
    width: 100%;
    margin: auto;
    display: block;
}
.Logo {
    width: 120px;
    padding: 0px;
    margin: 20px auto;
    display: block;
    animation: loguito .5s ease-in-out alternate;
}
@keyframes rotacion {
    from {
        margin-left: 10px;
        transform: rotateZ(0deg);
    }
    to {
        margin-left: 80px;
        transform: rotateZ(360deg);
    }
}
@keyframes loguito {
    0% {scale: 0;transform: rotateZ(0deg);}
    100% {scale: 1.2;transform: rotateZ(360deg)}
}

/*-----------------------------------------------*/
/*-----------------------------------------------*/
/*--------------------SEARCH---------------------*/
/*-----------------------------------------------*/
/*-----------------------------------------------*/
.CONT_SEARCH {
    width: 100%;
    padding: 10px;
    display: none;
    justify-content: center;
}

.BOX_SEARCH {
    width: 40%;
    margin: auto;
    border-radius: 5px;
    display: flex;
    justify-content: flex-end;
}

.INPUT_SEARCH {
    width: 100%;
    height: 40px;
    padding: 5px;
    font-size: 17px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0);
    background: white;
    display: block;
    border: #d28800 4px solid;
    margin: auto;
}
.INPUT_SEARCH::-webkit-input-placeholder {
    font-size: 17px;
    padding: 10px;
}
.SEARCH {
    width: 140px;
    height: 40px;
    padding: 3px;
    margin: 10px auto;
    background: #9fbfca;
    transition: all .3s;
    color: #161616;
    text-align: center;
    border-radius: 5px;
    border: #9fbfca 1px solid;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    position: relative;
    left: 200px;

}
.SEARCH:hover {
    transform: scale(.9);
}
/*-----------------------------------------------*/
/*-----------------------------------------------*/
/*--------------------MENU-----------------------*/
/*-----------------------------------------------*/
/*-----------------------------------------------*/
.MENU {
    width: 100%;
    z-index: 100;
    font-size: 14px;
    transition: all 0.1s ease-in;
    background-color: #d28800;
    justify-content: center;
    align-content: center;
}
.boxmenu {
    width: 100%;
    display: block;
}
.boton {
    display: none;
}
.menu_btn {
    width: 55px;
    display: none;
    padding: 5px;
}
.menu_btn:hover {
    cursor: pointer;
}
.menu_list {
    width: 100%;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}
.menu_list li {
    padding: 5px;
    transition: all 0.1s ease;
    display: block;
    border-left: white 2px solid;
}
.menu_list li a {
    text-decoration: none;
    color: white;
    padding: 5px 20px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    width: 100%;
}
.menu_list li:hover {
    cursor: pointer;
    background: #f7ae27;
    color: white;
}
.menu_list li a:hover {
    cursor: pointer;
    color: white;
}
.FIXED {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

.boxmenu {
    position: relative;
}
.menu_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 0px;
}
.menu_list li {
    position: relative;
}
.menu_list a {
    text-decoration: none;
    color: white;
    padding: 0px;
    display: block;
}

/* Dropdown styling */
.dropdown {
    display: none;
    position: absolute;
    background-color:  #d28800;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 10;
    flex-direction: column;
}
.dropdown li a {
    padding: 10px 15px;
    color: white;
}
.dropdown li a:hover {
    background-color: white;
    color:  #daa137;
}
.submenu:hover .dropdown {
    display: flex;
}

/* Responsive menu button */
.menu_btn {
    display: none;
    cursor: pointer;
}
#menu_btn:checked ~ .menu_list {
    display: flex;
    flex-direction: column;
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu_btn {
        display: block;
    }
    .menu_list {
        display: none;
        flex-direction: column;
        background-color: #161616;
        width: 100%;
    }
    .menu_list li {
        text-align: left;
    }
    .dropdown {
        position: static;
        width: 100%;
    }
}

@media (max-width:768px) {
    .MENU {
        width: 100%;
        height: 45px;
        background-color: #d28800;
    }
    .menu_btn {
        width: 50px;
        height: 45px;
        display: block;
        padding: 2px;
        border-right: 3px solid #ffffff;
    }
    .menu_icon {
        width: 40px;
    }
    .menu_list {
        width: 60%;
        margin-left: -62%;
        position: absolute;
        background: #d28800;
        flex-direction: column;
        transition: all 0.5s;
    }
    .boton:checked ~ .menu_list {
        margin: 0;
    }
    .menu_list li a {
        text-decoration: none;
        color: #ffffff;
        padding: 3px 10px;
        display: block;
        font-size: 16px;
    }
    .comprar, .login {
        width: 35px;
        height: 35px;
    }
    .contador {
        right: 110px;
        z-index: 1;
    }
    .Logo {
        width: 120px;
    }
    .BOX_SEARCH {
        width: 80%;
    }
    .SEARCH {
        left: 120px;
    }
   
}

@media (max-width:390px) {
    .shoppin {
        width: 40%;
        justify-content: flex-end;
        padding: 0px;
    }
    .contador {
        width: 25px;
        height: 25px;
        right: 50px;
        padding: 3px;
    }
    .BOX_SEARCH {
        width: 90%;
    }
    .SEARCH {
        left: 100px;
    }
}