.site-content {
  position: relative;
}
body {
    overflow-x: hidden;
}
/*div.menuuseresplore #menuuser {
  background-color: #000;
}

div.menuuseresplore {
  position: absolute;
    left: 0;
    z-index: 9;
    top: 0;
}*/

/* ===== BOTÃO BURGER ===== */
/* Botão burger criado via JS */
.burger-btn {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #333;
  color: #fff;
  font-size: 24px;
  padding: 8px 12px;
  border: none;
  z-index: 99999999;
  cursor: pointer;
}

/* ===== MENU FIXO ESTILIZADO ===== */
.menuuseresplore {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #111;
    color: #fff;
    padding-top: 60px;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    z-index: 999999;
}

#menuuser li.nav-item {
    text-transform: inherit !important; 
}

/* Menu escondido */
.menuuseresplore.closed {
  transform: translateX(-100%);
}

/* Itens de menu */
.menuuseresplore .mod-menu > .nav-item > a,
.menuuseresplore .mod-menu__heading {
  display: block;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.menuuseresplore .nav-item > a:hover,
.menuuseresplore .mod-menu__heading:hover {
  background-color: #333;
}

.menuuseresplore .nav-item.active > a {
  background-color: #007bff;
  color: white;
}

/* Submenu visível ao hover */
.menuuseresplore .mod-menu__sub {
  display: none;
  padding-left: 20px;
}

.menuuseresplore .nav-item.parent:hover .mod-menu__sub {
  display: block;
}


/* ----- TELA CATEGORIA ----- */
/* Card geral */
.category-view .product-grid-view .product-container {
    background: #fff;
    border-radius: 14px;
    padding: 0 0 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.category-view .product-grid-view .product-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
}

/* Imagem do curso */
.category-view .product-list-images {
    margin-bottom: 22px !important;
    overflow: hidden;
}

.category-view .product-image-default img,
.category-view .product-image-hover img,
.category-view img.product-image {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover;
    display: block;
}

/* Título */
.category-view .product-name {
    padding: 0 22px;
    min-height: 58px;
}

.category-view .product-name a {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #343434;
    text-decoration: none;
}

.category-view .product-name a:hover {
    color: #118a8f;
}

/* Categorias */
.category-view .product-categories {
    font-size: 17px;
    line-height: 1.4;
    color: #777 !important;
}

/* Estrelas */
.category-view .product-rating {
    transform: scale(1.25);
    margin: 12px 0 16px !important;
}

/* Preço */
.category-view .product-prices {
    margin-bottom: 18px !important;
}

.category-view .product-sales-price .PricesalesPrice {
    font-size: 24px;
    font-weight: 800;
    color: #118a8f;
}

/* Desconto */
.category-view .product-discount-amount {
    margin-top: 6px;
    font-size: 16px;
    color: #e03131;
    font-weight: 600;
}

.category-view .product-discount-amount .PricediscountAmount {
    display: inline-block;
}

/* Descrição curta */
.category-view .product-short-description {
    padding: 0 28px;
    font-size: 18px;
    line-height: 1.45;
    color: #4a4f57;
    min-height: 78px;
}

/* Botão */
.category-view .addtocart-button.btn.btn-primary {
    background: linear-gradient(
        90deg,
        #118a8f 0%,
        #1ca8b1 60%,
        #31c7d3 100%
    );
    border: none;
    border-radius: 7px;
    padding: 15px 28px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.category-view .addtocart-button.btn.btn-primary:hover {
    background: linear-gradient(
        90deg,
        #0f7f85 0%,
        #15979d 60%,
        #27bac5 100%
    );
    transform: scale(1.03);
}

/* Ícones wishlist / quickview */
.category-view .product-list-utilities .btn-vme-round,
.category-view .product-list-utilities a {
    width: 48px;
    height: 48px;
    font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .category-view .product-image-default img,
    .category-view .product-image-hover img,
    .category-view img.product-image {
        height: 220px !important;
    }

    .category-view .product-name a {
        font-size: 20px;
    }

    .category-view .product-short-description {
        font-size: 16px;
    }

    .category-view .addtocart-button.btn.btn-primary {
        font-size: 16px;
        padding: 13px 22px;
    }
}

/* ----- TELA CATEGORIA - FIM ----- */