/* Contenedor principal */
.woocommerce-MyAccount-container {
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  margin: 40px 0;
  padding: var(--spacing-lg);
}

/* Menú lateral */
.woocommerce-MyAccount-navigation {
  background: #f9f9f9;
  padding: 20px;
  border-radius: var(--border-radius);
  width: 250px;
  min-width: 250px;

  z-index: 1;
}

.woocommerce-MyAccount-navigation-list {
  list-style: none;
  padding: 0;
}

.woocommerce-MyAccount-navigation-list li {
  padding: 10px 15px;
  margin-bottom: 5px;
  border-radius: 6px;
  transition: background 0.3s ease-in-out;
}

.woocommerce-MyAccount-navigation-list li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: block;
}

.woocommerce-MyAccount-navigation-list li:hover,
.woocommerce-MyAccount-navigation-list .is-active {
  background: var(--color-text-primary);
}

.woocommerce-MyAccount-navigation-list li:hover a,
.woocommerce-MyAccount-navigation-list .is-active a {
  color: #fff;
}

/* Botón para mostrar menú en mobile */
.menu-toggle {
  display: none;
  background: #006d77;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
}

/* Contenido */
.woocommerce-MyAccount-content {
  flex-grow: 1;
  background: #fff;
  border-radius: 8px;
}

/* 🔥 Responsive para mobile */
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-container {
    flex-direction: column;
    gap: 10px;
  }

  .woocommerce-MyAccount-navigation {
    width: 100%;
    min-width: unset;
    box-shadow: none;
    background: transparent;
    padding: 0;

    position: absolute;
    top: var(--header-height);
    left: 0;
  }

  .woocommerce-MyAccount-navigation-list {
    display: none;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
  }

  .menu-toggle {
    display: block;
    width: 100%;
    text-align: left;

    border-radius: 0 !important;
  }

  .woocommerce-MyAccount-navigation-list.show {
    display: block;
  }
}

.woocommerce-dashboard-account {
  text-align: left;
  max-width: 500px;
  margin: 0px auto;
}

.dashboard-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.dashboard-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.dashboard-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dashboard-link {
  display: flex;
  align-items: center;
  background: var(--button-bg);

  color: #fff !important;
  text-decoration: none;

  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 6px;

  font-size: 16px;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.dashboard-link:hover {
  background: var(--button-bg-hover);
}

.logout {
  background: #d9534f;
}

.logout:hover {
  background: #c9302c;
}

/* 📌 Responsivo */
@media screen and (max-width: 768px) {
  .woocommerce-dashboard-account {
    text-align: center;
  }

  .dashboard-links {
    align-items: center;
  }

  .dashboard-link {
    width: 100%;
    justify-content: center;
  }
}
