/* ===== ESTILOS GENERALES ===== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");
:root {
  --dl-primary: #27ae60;
  --dl-primary-dark: #219653;
  --dl-secondary: #ff6b35;
  --dl-text-dark: #2c3e50;
  --dl-text-light: #ffffff;
  --dl-bg-light: #f9f9f9;
  --dl-border-color: #e8f5e9;
  --dl-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
  --dl-hover-green: #1e8449;
}
.account-container {
  padding: 30px 0;
  background-color: #ffffff;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif !important;
}
/* ===== MIGAS DE PAN ===== */
.account-breadcrumb {
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--dl-shadow);
  font-size: 15px;
  font-weight: 500;
  color: var(--dl-text-dark);
}
.account-breadcrumb a {
  text-decoration: none;
  color: var(--dl-primary);
  transition: color 0.3s ease;
}
.account-breadcrumb a:hover {
  color: var(--dl-primary-dark);
}
.account-breadcrumb span {
  color: #888;
  font-size: 14px;
}
.account-breadcrumb .active {
  font-weight: 600;
  color: var(--dl-text-dark);
}
/* ===== TÍTULO Y DESCRIPCIÓN ===== */
.account-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dl-text-dark);
  margin-bottom: 10px;
  text-align: center;
}
.account-description {
  color: #6c757d;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
/* ===== CONTENIDO DE LA CUENTA ===== */
.account-content {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--dl-shadow);
}
/* ===== NAVEGACIÓN DE LA CUENTA ===== */
.account-navigation {
  background: var(--dl-bg-light);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--dl-shadow);
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation li {
  margin-bottom: 10px;
}
.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 20px;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  color: var(--dl-text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--dl-shadow);
}
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: var(--dl-primary);
  color: var(--dl-text-light);
  transform: translateY(-2px);
}
/* ===== CONTENIDO PRINCIPAL ===== */
.account-main {
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--dl-shadow);
}
.woocommerce-MyAccount-content {
  font-size: 1rem;
  color: var(--dl-text-dark);
}
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-weight: 700;
  color: var(--dl-text-dark);
  margin-bottom: 15px;
}
.woocommerce-MyAccount-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td {
  padding: 12px;
  border: 1px solid var(--dl-border-color);
  text-align: left;
}
.woocommerce-MyAccount-content th {
  background: var(--dl-bg-light);
  font-weight: 600;
}
.woocommerce-MyAccount-content a {
  color: var(--dl-primary);
  text-decoration: none;
}
.woocommerce-MyAccount-content a:hover {
  color: var(--dl-primary-dark);
}
.woocommerce-MyAccount-content form {
  max-width: 600px;
}
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--dl-border-color);
  border-radius: 50px;
  margin-bottom: 15px;
  background: var(--dl-bg-light);
}
.woocommerce-MyAccount-content button {
  background: var(--dl-primary);
  color: var(--dl-text-light);
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--dl-shadow);
}
.woocommerce-MyAccount-content button:hover {
  background: var(--dl-hover-green);
  transform: translateY(-2px);
}
/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
  .account-content .col-md-3,
  .account-content .col-md-9 {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .account-container {
    padding: 15px 0;
  }
  .account-title {
    font-size: 1.8rem;
  }
  .account-navigation {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .account-title {
    font-size: 1.6rem;
  }
  .woocommerce-MyAccount-content table {
    font-size: 0.9rem;
  }
}
/* ===== ANIMACIONES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
