.backdrop-shown {
    overflow: hidden;
    padding-right: 17px;
}
.menu-lateral-backdrop-shown {
    overflow: hidden !important;
    /* padding-left: 17px; */
}


/* Bootstrap override classes */
.container {
    width: 100%;
    max-width: 1250px;
}

.text-dark { color: #000 !important;}
.text-black { color: #000 !important;}
.text-white { color: #FFF !important;}
.text-secondary { color: #888 !important;}

/* :focus {
    rgb(117, 17, 165)
} */

/*----------------------------*/

/* a:focus, a:active {
    outline: none !important;
} */

.top-0 { top: 0;}
.right-0 { right: 0;}
.bottom-0 { bottom: 0;}
.left-0 {left: 0;}
.inset-0 { inset: 0;}

.z-index-1 {z-index: 1;}
.z-index-2 {z-index: 2;}
.z-index-3 {z-index: 3;}
.z-index-4 {z-index: 4;}
.z-index-5 {z-index: 5;}

.gap-1 {gap: 0.25rem;}
.gap-2 {gap: 0.5rem;}
.gap-3 {gap: 1rem;}
.gap-4 {gap: 1.5rem;}
.gap-5 {gap: 3rem;}

:is(.image-contain-h-100, .image-contain-h-200, .image-contain-h-300) {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

/* .image-contain-h-100 { height: 100px; } */
.image-contain-h-200 { height: 200px; }
/* .image-contain-h-300 { height: 300px; } */


.logotipo-decor {
    width: 196px;
    transition: width 0.3s;
}

/*SEACH*/
.search-input {
    border: 1px solid transparent !important;
    border-radius: 8px;
    height: 48px;
}

.slick-custom-dots .slick-dots {
    list-style-type: none;
    display: flex !important;
    gap: 0.5rem;
    margin: 0px;
    padding: 0px;
}
.slick-custom-dots .slick-dots button {
    font-size: 0px;
    border: none !important; 
    background-color: #FFF;
    border-radius: 6px;
    width: 20px;
    height: 12px;
    transition: width 0.2s;
}

.slick-custom-dots .slick-dots li.slick-active > button {
    width: 48px;
    background-color: #7511A5;
}

.card-departamento {
    position: relative;
    width: 165px; 
    height: 165px; 
    border-radius: 90px;
    background-color: #EEE;
}

.card-departamento:hover {
    background-color: #FF1520;
}

.card-departamento:hover::before {
    content: '';
    position: absolute;
    width: 94%;
    height: 94%;
    border: 3px solid #FFF;
    z-index: 2;
    pointer-events: none;
    border-radius: 50%;
}

.card-departamento:hover img {
    filter: brightness(0) invert(1);
}

/*********************************************************/

#menu .dropdown-menu {
    left: 50%;
    min-width: 180px;
    transform: translateX(-50%) !important;
    background-color: #590D7D;
    margin-top: 12px;
}

#menu .dropdown-menu a:hover {
    background-color: #7511A5 !important;
    background-image: unset !important;
}

/*********************************************************/

.card-produto {
    width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
    background-color: #FFF; 
    height: 450px;
}

.btn-comprar-agora,
.btn-adicionar-ao-carrinho {
    background-color: #7511A5;
}

.btn-comprar-agora:hover,
.btn-adicionar-ao-carrinho:hover {
    color: #FFF;
    background-color: #590D7D;
}
  
.table-specification tr:nth-child(odd) {
    background-color: #EDEDED;
}

.btn-favoritar {
    width: 50px;
    height: 50px;
    background-color: #EEEEEE;
}

.btn-favoritar:hover {
    color: #FFF;
    background-color: #7511A5;
}

.produto-anterior, 
.proximo-produto {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #C0C0C0;
    background-color: #FFF;
    transition: background-color 0.3s, border-color 0.3s;
}
.produto-anterior:hover, 
.proximo-produto:hover {
    border-color: #7511A5;
    background-color: #7511A5;
}
.produto-anterior:hover i, 
.proximo-produto:hover i {
    color: #FFF !important;
}
.proximo-produto:hover .preview-proximo-produto {
    display: block;
}

.preview-proximo-produto {
    display: none;
    position: absolute;
    z-index: 10;
    top: 110%;
    right: -68%;
    width: 100px;
    height: 100px;
    border: 1px solid #DDD;
    background-color: #FFF;
}


/* PRODUCT SEARCH */
#accordion a i {
    transform: rotateX(0deg);
    transition: transform 0.3s;
}

#accordion a:not(.collapsed) i {
    transform: rotateX(180deg);
}

#accordion-categorias a i {
    transform: rotate(0deg);
    transition: transform 0.3s;
}

#accordion-categorias a:not(.collapsed) i {
    transform: rotate(90deg);
}


.card-ambiente {
    height: 290px;
    border-radius: 12px;
    border: 1px solid #EEE;

    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .logotipo-decor {
        width: 140px;
    }

    .card-ambiente {
        height: 220px;
    }

    .card-produto {
        height: 400px;
    }
}

/* @media screen and (max-width: 572px) {
    .card-produto {
        height: 380px;
    }
} */


/***** WHATSAPP BUTTON ******/
#robbu-whatsapp-button {
    position: fixed;
    display: flex;
    z-index: 50;
    background: #25d366;
    bottom: 25px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 2px 2px 12px rgba(22, 124, 60, .2);
    transition: .4s;
    align-items: center;
    justify-content: center;
    right: 25px;
}
#robbu-whatsapp-button>img {
    display: block;
    width: 34px;
    height: 34px
}
#robbu-whatsapp-button:hover {
    background: #21bd5c;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, .4)
}