.account-edit-form {
  margin-bottom: 32px;
}

.account-edit-form em,
.highlighted-text,
address {
  color: var(--color-breadcrum);
}

.woocommerce-EditAccountForm,
.woocommerce-address-fields {
  margin-bottom: 32px;
}

.woocommerce-EditAccountForm legend {
  font-size: 1.5em;
  font-weight: 700;
}

.full-width {
  width: 100%;
}

#billing_state_field {
  display: none;
}

.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-account .addresses .title::before,
.woocommerce-account .addresses .title::after {
  display: none;
}

.woocommerce-account .addresses {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.woocommerce-account .addresses > div {
  width: 100% !important;
}

.woocommerce-orders-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.woocommerce-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: var(--spacing-sm) var(--spacing-lg);
}

.order-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-grow: 1;
}

.order-number {
  font-weight: bold;
  color: #006d77;
  text-decoration: none;
}

.order-date,
.order-status,
.order-total {
  color: #555;
  font-size: 14px;
}

.order-actions a {
  background: var(--button-bg) !important;
  color: #fff !important;
}

.order-details {
  display: flex;
  gap: 20px;
  align-items: center;

  width: 100%;
  justify-content: space-between;

  padding: var(--spacing-sm) var(--spacing-lg);
}

/* 🎯 Modo Responsive (Mobile) */
@media screen and (max-width: 768px) {
  .woocommerce-order-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;

    border-bottom: 1px solid #ddd;
  }

  .woocommerce-order-item strong {
    display: inline-block;
  }

  .woocommerce-orders-list {
    margin-bottom: 32px;
  }

  .order-details {
    flex-direction: column;
    gap: 5px;

    align-items: flex-start;
  }

  .order-header {
    font-size: 20px;
  }

  .order-actions {
    width: 100%;
    text-align: right;
  }

  .order-actions .view-order {
    display: inline-block;
    width: auto;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 16px;
  }
}
