/* ===================================
   EFESIO HAMBURGER MENU - BLACK BACKGROUND / WHITE TEXT
   =================================== */

/* Contêiner principal */
.efesio-menu-container {
    position: relative;
    display: inline-block;
}

/* Botão Hambúrguer */
.efesio-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    z-index: 1001;
}

.efesio-hamburger span {
    width: 32px;
    height: 3px;
    background: #FFFFFF; /* Branco puro */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.efesio-hamburger:hover span {
    background: #CCCCCC; /* Cinza claro */
}

.efesio-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.efesio-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.efesio-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Content - fundo preto */
.efesio-menu-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: #0A0A0A; /* Preto profundo */
    z-index: 1000;
    overflow-y: auto;
    padding: 30px 25px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    transition: left 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.efesio-menu-content.active {
    left: 0;
}

/* Botão Fechar */
.efesio-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.efesio-close-button:hover {
    background: #2A2A2A;
    transform: rotate(90deg);
    color: #FFFFFF;
}

/* Botões de Ação (acima do logo) */
.efesio-top-buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    border-bottom: 1px solid #2A2A2A;
    padding-bottom: 15px;
}

.efesio-top-buttons-container .efesio-button-item {
    padding: 8px 5px;
    transition: all 0.2s ease;
    background: transparent;
    border-radius: 40px;
}

.efesio-top-buttons-container .efesio-button-item:hover {
    transform: translateY(-3px);
    background: #1F1F1F;
}

/* Logo */
.efesio-logo-container {
    text-align: center;
    margin: 20px 0 30px;
}

.efesio-logo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, opacity 0.2s;
    border-radius: 12px;
}

.efesio-logo:hover {
    transform: scale(1.02);
    opacity: 0.85;
}

/* Lista de Categorias */
.efesio-menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.efesio-menu-item {
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    background: #141414;
    transition: all 0.25s ease;
    border: 1px solid #2A2A2A;
}

.efesio-menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: #444;
}

/* Cabeçalho da categoria (clicável) */
.efesio-category-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.efesio-category-header:hover {
    background: #1F1F1F;
}

/* Imagem redonda com borda branca */
.efesio-menu-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    margin-right: 18px;
    transition: all 0.25s ease;
    background: #0A0A0A;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.efesio-category-header:hover .efesio-menu-image {
    transform: scale(1.05);
    border-color: #CCCCCC;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Informações da categoria */
.efesio-category-info {
    flex: 1;
}

.efesio-menu-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
    transition: color 0.2s ease;
    letter-spacing: -0.2px;
}

.efesio-category-header:hover .efesio-menu-title {
    color: #DDDDDD;
}

.efesio-menu-description {
    font-size: 0.8rem;
    color: #AAAAAA;
    margin: 0;
    line-height: 1.3;
}

/* Subcategorias */
.efesio-subcategories {
    list-style: none;
    margin: 0;
    padding: 6px 0 12px 20px;
    background: #0A0A0A;
    border-top: 1px solid #2A2A2A;
    display: none;
}

.efesio-subcategory-item {
    margin: 4px 0;
}

.efesio-subcategory-item a {
    font-size: 0.9rem;
    color: #EEEEEE;
    text-decoration: none;
    display: block;
    padding: 8px 15px;
    border-radius: 40px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.efesio-subcategory-item a:hover {
    background: #FFFFFF;
    color: #000000;
    transform: translateX(6px);
    padding-left: 22px;
}

/* Responsividade */
@media (max-width: 768px) {
    .efesio-menu-content {
        max-width: 100%;
        padding: 20px 18px;
    }

    .efesio-menu-image {
        width: 65px;
        height: 65px;
        margin-right: 12px;
    }

    .efesio-menu-title {
        font-size: 1rem;
    }

    .efesio-menu-description {
        font-size: 0.7rem;
    }

    .efesio-subcategory-item a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .efesio-top-buttons-container {
        gap: 8px;
    }

    .efesio-top-buttons-container .efesio-button-item {
        padding: 6px 4px;
    }
}

/* Ajuste para ícones de carrinho, wishlist, etc. (torná-los brancos) */
.efesio-top-buttons-container .xoo-wsc-sc-icon,
.efesio-top-buttons-container .meu-wishlist-icone,
.efesio-top-buttons-container .fibosearch-icon {
    filter: brightness(0) invert(1); /* Ícones brancos */
}