/* HEADER */

header a{
    text-decoration: none;
}

@media(max-width: 1023px){
    header.rn-header{
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99999;
        background-color: #fff;
    }
    
    header.rn-header.fixed{
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

.rn-header-inner{
	padding-block: 40px;
	justify-content: space-between;
    display: none;
}

.rn-header-menu{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    position: relative;
}

.rn-header-menu .rn-header-menu-top{
	display: flex;
	align-items: center;
    justify-content: center;
}

img.icon-hover{
    display: none;
}

.change-icon-hover.hover-active img:not(.icon-hover){
    display: none;
}

.change-icon-hover.hover-active span{
    color: #636363 !important;
}

.change-icon-hover.hover-active img.icon-hover{
    display: initial;
}

.rn-header-menu-top .sociais{
	display: flex;
    align-items: center;
    gap: 12px;
    border-right: 2px solid #757778;
    padding-right: 30px;
    height: 100%;
}

.rn-header-menu-top .sociais a{
    display: flex;
}

.rn-header-menu-top .sociais a img{
	width: 30px;
	height: 30px;
}

.rn-header-menu-top .sociais a.whatsapp img{
	width: 40px;
	height: 40px;
}

.rn-header-menu-top .search{
    border-right: 1px solid #757778;
    padding-right: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.rn-header-menu-top .search form .search-form-inner{
    position: relative;
}

.rn-header-menu-top .search form input,
.rn-search-mobile form input{
    height: 40px;
    padding-left: 16px;
    font-weight: 300;
}

.rn-header-menu-top .search form input::placeholder,
.rn-search-mobile form input::placeholder{
    color: #c1a46b;
}

.rn-header-menu-top .search form button,
.rn-search-mobile form button{
    position: absolute;
    right: 12px;
    top: 7px;
    border: 0;
    background: none;
}

.rn-header-menu-top .search form button img,
.rn-search-mobile form button img{
    width: 25px;
}

.rn-search-mobile{
    margin-top: 12px;
    padding-inline: 20px;
    padding-bottom: 12px;
    display: none;
}

.rn-search-mobile.active{
    display: block;
}

.rn-search-mobile .search-form-mobile-inner{
    position: relative;
}

.rn-search-mobile form input{
    width: 100%;
}

.rn-header-menu-top .account{
    border-right: 1px solid #757778;
    padding-right: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.rn-header-menu-top .account a{
    display: flex;
    align-items: center;
    gap: 12px;
}

.rn-header-menu-top .account a span{
    color: #c1a46b;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 300;
}

.rn-header-menu-top .account img {
    width: 30px;
}

.rn-header-menu-top .cart a{
    display: flex;
    align-items: center;
    gap: 12px;
}

.rn-header-menu-top .cart a span{
    color: #c1a46b;
    font-size: 1rem;
    font-weight: 300;
    line-height: 17px;
}

.rn-header-menu-top .cart img{
    width: 50px;
}

.rn-header-menu-bottom{
    display: flex;
    gap: 26px;
    justify-content: center;
    align-items: center;
}

.open-menu-desktop-fixed{
    position: fixed;
    top: 63px;
    cursor: pointer;
    display: none;
    z-index: 99999;
}

.open-menu-desktop-fixed img{
    background: #c1a46b;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 10px 0px;
    border-radius: 10%;
}

@media(min-width: 1024px){
    .open-menu-desktop-fixed{
        right: 80px;
    }
}

@media(min-width: 1366px){
    .open-menu-desktop-fixed{
        right: 143px;
    }
}

.open-menu-desktop-fixed.fixed{
    display: block;
}

.rn-header-menu-bottom.fixed{
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    left: 0;
    width: 0;
    opacity: 0;
    z-index: -9999;
    transition: all 0.4s ease;
}

.rn-header-menu-bottom.fixed.opened{
    opacity: 1;
    z-index: 99999;
    width: 100%;
}

.rn-header-menu-bottom span{
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    position: relative;
}

.rn-header-menu-bottom span:not(:last-child){
    border-right: 1px solid #757778;
    padding-right: 24px;
}

.rn-header-menu-bottom span a{
    color: #757778;
    transition: color 0.2s ease;
    font-weight: 300;
}

.rn-header-menu-bottom span a:hover{
    color: #c1a46b;
}

.rn-menu-mobile{
    position: fixed;
    background: #fff;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    top: 0;
    display: none;
}

.rn-menu-mobile .rn-menu-mobile-inner{
    height: 100%;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
}

.rn-menu-mobile .rn-menu-mobile-inner .close{
    display: flex;
    justify-content: flex-end;
}

.rn-menu-mobile .rn-menu-mobile-inner .close img{
    cursor: pointer;
}

.rn-menu-mobile .rn-menu-mobile-inner .items{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.rn-menu-mobile .rn-menu-mobile-inner a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 200;
}

.rn-menu-mobile .rn-menu-mobile-inner a img{
    width: 12px;
}

.rn-menu-mobile .sub-items{
    height: 100%;
    flex-direction: column;
    justify-content: center;
    display: none;
}

.rn-menu-mobile .sub-items .back{
    margin-bottom: 12px;
    position: relative;
    width: 215px;
}

.rn-menu-mobile .sub-items .back::before{
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    background-image: url('../images/icons/arrow-right2.svg');
    background-repeat: no-repeat;
    background-size: 17px 17px;
    transform: rotate(180deg);
    left: -39px;
    top: -9px;
}

.rn-menu-mobile .sub-items .back span{
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #000;
    font-weight: 200;
}

.rn-menu-mobile .sub-items .sub-items-inner{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.rn-dropdown{
    position: absolute;
    top: 100%;
    margin-top: 15px;
    width: 250px;
    opacity: 0;
    z-index: -1;
    transition: all 1s ease;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rn-dropdown .rn-dropdown-inner{
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rn-dropdown .rn-dropdown-inner a{
    text-transform: uppercase;
    font-size: 1rem;
}

.rn-dropdown .rn-dropdown-inner a:not(:last-child){
    margin-bottom: 8px;
}

.rn-dropdown .rn-dropdown-inner a:hover{
    color: #757778;
    font-weight: bold;
}

.rn-header-menu-bottom span:hover .rn-dropdown{
    opacity: 1;
    z-index: 9999;
}

.rn-header-menu-bottom span:hover::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 15px;
    width: 100%;
    z-index: 0;
}

@media(min-width: 1024px){
    .rn-header-inner{
        display: flex;
        padding-inline: 40px;
    }

    .rn-header-inner .rn-header-logo img{
        width: 70px;
    }

    .rn-header-menu .rn-header-menu-top{
        gap: 20px;
        margin-bottom: 40px;
    }

    .rn-header-menu-top .search form input{
        width: 300px;
    }

    .rn-header-menu-bottom span a{
        font-size: 0.9rem;
    }
}

@media(min-width: 1200px){
    .rn-header-inner .rn-header-logo img{
        width: 110px;
    }

    .rn-header-menu .rn-header-menu-top{
        gap: 30px;
        margin-bottom: 0;
    }

    .rn-header-menu-top .search form input{
        width: 365px;
    }

    .rn-header-menu-bottom span a{
        font-size: 1.2rem;
    }
}

@media(min-width: 1366px){
    .rn-header-inner{
        padding-inline: 80px;
    }
}

.rn-header-mobile{
    padding: 20px 20px 10px 20px;
    display: none;
    justify-content: space-between;
}

@media(max-width: 1023px){
    .rn-header-mobile{
        display: flex;
    }
}

.rn-header-mobile .rn-header-mobile-logo img{
    width: 80px;
}

.rn-header-mobile .rn-header-menu-mobile{
    display: flex;
    align-items: center;
    gap: 20px;
}

.rn-header-mobile .rn-header-menu-mobile a,
.rn-header-mobile .rn-header-menu-mobile .search-mobile,
.rn-header-mobile .rn-header-menu-mobile .rn-menu{
    display: flex;
    align-items: center;
}

.rn-header-mobile .rn-header-menu-mobile .whatsapp a img,
.rn-header-mobile .rn-header-menu-mobile .search-mobile img,
.rn-header-mobile .rn-header-menu-mobile .account-mobile a img{
    height: 25px;
    width: 25px;
}

.rn-header-mobile .rn-header-menu-mobile .cart-mobile a img{
    height: 35px;
    width: 35px;
}

/* FOOTER */
footer {
	width: 100%;
	margin-bottom: 40px;
}

footer .footer-inner {
	display: flex;
	justify-content: space-between;
    max-width: 1185px;
    margin: 0 auto;
    padding: 0 15px;
}

@media(max-width: 1023px){
	footer .footer-inner {
		flex-direction: column;
		gap: 20px;
	}
}

@media(max-width: 767px){
	footer {
		padding-bottom: 30px;
	}
}

footer .footer-inner .footer-left p,
footer .footer-inner .footer-left address {
	font-size: 18px;
	color: #000;
	font-weight: 300;
}

footer .footer-inner .footer-left address {
	margin: 10px 0;
}

footer .footer-inner .footer-left p:first-child {
	font-weight: 500;
}

footer .footer-inner .footer-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}