
.colored,
.shop-bag i,
.naver .navbar a i,
.header .naver .navbar .social a:hover i,
.naver .navbar a:hover,
.user-menu i,
.search-bar-mobile button i,
.categoria .vertudo i,
.categoria .counter,
.bread i,
.produto-detalhes .categoria a,
.campo-numero i,
.sacola-table .sacola-remover i,
.sacola-table .sacola-change i,
.adicionado .checkicon,
.title-line i,
.back-button i,
.sidebar-info i,
.filter-select .outside,
.filter-select .fake-select i,
.pagination i,
.funcionamento-mobile i,
.fake-select i,
.search-bar button i,
.holder-shop-bag i
 {
color: #27293e !important;
}

.top {
border-color: #27293e !important;
}

.footer-info,
.categoria .produto .detalhes,
.cover,
.carousel-indicators .active,
.botao-acao,
.sidebar .sidebar-header,
.minitop,
.opcoes .opcao.active .check,
.floatbar {
background: #27293e !important;
}

.pagination > li > a:hover, .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
background: #27293e !important;
color: #fff !important;
}

.is-sticky .avatar {
height: 70px !important;
width: 70px !important;
}

.tv-infinite-menu a.active,
.tv-infinite-menu a:hover,
.fancybox-thumbs__list a::before {
border-color: #27293e !important;
}

/* ALL MOBILE */

@media (max-width: 991px) {

	.user-menu i {
	color: #fff !important;
	}

	.shop-bag i {
	color: #fff !important;
	}

	.shop-bag .counter {
	border: 0;
	padding-top: 2px;
	}

	.top {
	border-top: 0;
	background: #27293e !important;
	}

}

/* ALL DESK */

@media (min-width: 991px) {

}

input[type="datetime-local"] {
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 10px 15px;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
	color: #333;
}

input[type="datetime-local"]:focus {
	border-color: #cc0000; /* Cor da borda ao focar (pode ajustar) */
	outline: none;
	box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.2); /* leve sombra da sua cor vermelha */
}

/* Estilos adicionais para hierarquia de categorias - Não altera o layout existente */
.navbar .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    padding: 5px 0;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

/* Estilo para categorias pai */
.navbar .dropdown-menu > li > a {
    font-weight: 600;
    color: #333;
    padding: 8px 15px;
    border-bottom: 1px solid #f5f5f5;
}

/* Estilo para subcategorias */
.navbar .dropdown-menu .dropdown-menu li a {
    font-weight: normal;
    color: #666;
    padding: 8px 15px 8px 25px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
}

/* Hierarquia visual */
.navbar .dropdown-menu li {
    position: relative;
}

.navbar .dropdown-menu li .dropdown-menu {
    left: 100%;
    top: -5px;
    margin-left: 1px;
    min-width: 200px;
    background: #fcfcfc;
}

/* Ícone de seta apenas para itens com submenu */
.navbar .dropdown-menu li.has-children > a {
    position: relative;
    font-weight: 600;
    color: #333;
    padding: 8px 15px;
    padding-right: 25px; /* espaço para o ícone à direita */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .dropdown-menu li.has-children > a:after {
    content: '▸';
    font-size: 14px;
    color: #999;
    margin-left: auto;
}
.navbar .dropdown-menu li.has-children:hover > a {
    background-color: #f0f0f0;
    color: #0056b3;
}

/* Efeito hover diferenciado */
.navbar .dropdown-menu li > a:hover {
    background: #f5f5f5;
    color: #0066cc;
}

/* Responsividade */
@media (max-width: 767px) {
    .navbar .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
    }
       
    .navbar .dropdown-menu > li > a,
    .navbar .dropdown-menu .dropdown-menu li a {
        padding: 8px 15px;
        border-bottom: none;
    }
}
.navbar .dropdown-menu li:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
}
.navbar .dropdown-menu .dropdown-menu {
    visibility: hidden;
    opacity: 0;
    display: block; /* mantém estrutura */
    transition: visibility 0.2s ease, opacity 0.2s ease;
    position: absolute;
}