/* RESET STYLES & HELPER CLASSES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --white: #fff;
  --black: #333;
  --pekitas-orange: #d1b39f;
  --header-bar-bg: #333;
  --menu-bg: #fff; /* Cambiado a blanco */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
}

a {
  text-decoration: none;
}

button,
a {
  color: inherit;
}

/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header-mobile {
  color: var(--black); /* Cambiado a negro para el texto */
  position: relative;
}

header .navbar .toggle-menu.mobile-only {
    position: absolute;
    top: 20px; /* Ajusta según sea necesario */
    right: 20px; /* Ajusta según sea necesario */
    z-index: 1002; /* Por encima de todo */
}

.page-header-mobile .header-bar .brand {
  font-weight: bold;
}

.page-header-mobile .menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--menu-bg);
  z-index: 1000;
}

.mobile-only {
    display: none; /* Oculto por defecto */
}

@media (max-width: 768px) {
    .mobile-only {
        display: block; /* Visible solo en móviles */
    }
    .desktop-nav {
        display: none; /* Oculta el menú de escritorio en móviles */
    }
}

.page-header-mobile .menu-wrapper.is-visible {
  display: block;
}

.page-header-mobile .list-wrapper {
  height: 100%;
  padding: 30px 20px;
  overflow-y: auto;
  background: var(--menu-bg);
}

.page-header-mobile .list-wrapper:nth-child(2),
.page-header-mobile .list-wrapper:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
  backface-visibility: hidden;
  transition: transform 0.3s ease-in-out;
}

.page-header-mobile .list-wrapper:nth-child(2).is-visible,
.page-header-mobile .list-wrapper:nth-child(3).is-visible {
  transform: none;
}

.page-header-mobile .list-wrapper:nth-child(1) > ul > li > .sub-menu,
.page-header-mobile .list-wrapper:nth-child(2) .level-3 {
  display: none;
}

.page-header-mobile .menu-wrapper li + li {
  margin-top: 20px;
}

.page-header-mobile .menu-wrapper a {
  display: block; /* Cambiado a block para que ocupe todo el ancho */
  position: relative;
  padding: 10px 15px; /* Añadido padding para un área de clic más grande */
  font-size: 20px;
  border-radius: 8px; /* Bordes redondeados */
  transition: background-color 0.2s ease-in-out;
  -webkit-tap-highlight-color: transparent; /* Elimina el resaltado azul en el clic */
}

.page-header-mobile .menu-wrapper a:active {
  background-color: #e0e0e0; /* Gris un poco más oscuro en active */
}

.page-header-mobile .menu-wrapper a.nested {
  text-decoration: none; /* Quitado el subrayado */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-header-mobile .menu-wrapper a.nested::after {
  content: '›';
  font-size: 28px;
  font-weight: bold;
}

.page-header-mobile .menu-wrapper a:hover,
.page-header-mobile .menu-wrapper a.is-active {
  color: var(--pekitas-orange);
  background-color: #f0f0f0; /* Gris claro en hover y active */
}

.page-header-mobile .back-one-level {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.page-header-mobile .back-one-level svg {
  fill: var(--black);
  margin-right: 10px;
}

/* Hamburger Menu Icon */
.toggle-menu {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.toggle-menu span {
    display: block;
    position: absolute;
    height: 3px; /* Más altas */
    width: 22px; /* Ligeramente más grande */
    background: #6D3E05; /* Color café oscuro */
    border-radius: 2px;
    opacity: 1;
    left: 50%;
    transform: translateX(-50%); /* Centrado */
    transition: all 0.3s ease-in-out;
}

/* Posición inicial de las líneas (hamburguesa) */
.toggle-menu span:nth-child(1) {
    top: 4px;
}

.toggle-menu span:nth-child(2) {
    top: 10px;
}

.toggle-menu span:nth-child(3) {
    top: 16px;
}

/* Estado activo (X) */
.toggle-menu.is-active span:nth-child(1) {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
    top: 4px;
}

.toggle-menu.is-active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.toggle-menu.is-active span:nth-child(3) {
    transform: translateX(-50%) translateY(-6px) rotate(-45deg);
    top: 16px;
}

.page-header-mobile .close-menu-bar {
    display: flex;
    justify-content: flex-end;
    padding: 18px 20px; /* Ajustado para alinear con el botón principal */
    height: 60px; /* Altura consistente con la barra de navegación */
}

.close-menu {
    width: 24px;
    height: 24px;
}
