:root{
  --bg:#f7f9fc;
  --card:#fff;
  --txt:#0f172a;
  --muted:#475569;
  --acc:#2563eb;
  --danger:#dc2626;
  --border:rgba(15,23,42,.12);
  --shadow:0 8px 24px rgba(2,6,23,.06);
}

.woocommerce-account .site-main{ background:var(--bg); }

/* Contenedor */
.acc-wrap{
  max-width: 980px;
  margin: 48px auto 64px;
  padding: 0 16px;
}

/* Hero */
.acc-hero{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px 16px;
  margin-bottom: 14px;
}
.acc-hero__title{ margin:0 0 4px; font-size: 24px; color: var(--txt); }
.acc-hero__subtitle{ margin:0; color: var(--muted); }

/* Botonera simple */
.acc-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
  margin-bottom: 16px;
}
.acc-btn{
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--txt);
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.acc-btn:hover{ transform: translateY(-1px); }
.acc-btn--primary{ background: var(--acc); color:#fff; border-color: transparent; }
.acc-btn--danger{ color:#fff; background: var(--danger); border-color: transparent; }

/* Área de contenido (endpoints) */
.acc-content{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
}

/* Tablas/inputs dentro del contenido */
.acc-content table{
  width:100%; border-collapse: separate; border-spacing:0;
  border:1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.acc-content th{ background:#f8fafc; text-align:left; }
.acc-content th, .acc-content td{ padding: 12px; border-bottom: 1px solid var(--border); }
.acc-content tr:last-child td{ border-bottom: 0; }

.acc-content .button, 
.acc-content button, 
.acc-content input[type=submit]{
  border-radius:10px; 
  background: var(--acc); 
  border:none; 
  color:#fff; 
  font-weight:700;
  padding:.6rem 1rem;
}
.acc-content .button:hover{ filter: brightness(.97); }

/* Mensajes */
.woocommerce-message, .woocommerce-error, .woocommerce-info{
  border-radius: 10px;
}

/* Responsivo */
@media (max-width: 640px){
  .acc-actions{ gap: 8px; }
  .acc-btn{ flex: 1 1 auto; }
}
