/* Header compartido ACRAYARA catalogo */
:root {
  --ac-gold: #b89b5e;
  --ac-gold-dark: #8a7340;
}
.ac-header {
  background: var(--ac-gold);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.ac-header img { height: 48px; width: auto; max-width: 55vw; }
.ac-header-user {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.ac-header-user .ac-btn {
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
  margin-bottom: 0;
}
.ac-header-user .ac-btn svg {
  width: 15px;
  height: 15px;
}
.ac-creditos-badge {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.55) !important;
  color: #fff !important;
}
.ac-creditos-badge:hover {
  background: rgba(255,255,255,.28) !important;
  color: #fff !important;
}
.ac-creditos-badge strong {
  font-weight: 700;
}
.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ac-gold);
  border-radius: 8px;
  background: transparent;
  color: var(--ac-gold) !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  box-sizing: border-box;
}
a.ac-btn:link,
a.ac-btn:visited,
a.ac-btn:active,
a.ac-btn:focus {
  color: var(--ac-gold) !important;
  text-decoration: none !important;
}
.ac-btn:hover,
a.ac-btn:hover {
  background: rgba(184,155,94,.12);
  color: var(--ac-gold-dark) !important;
}
.ac-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.ac-btn-solid {
  background: var(--ac-gold);
  color: #fff !important;
  border-color: var(--ac-gold);
}
a.ac-btn-solid:link,
a.ac-btn-solid:visited,
a.ac-btn-solid:hover,
a.ac-btn-solid:active,
a.ac-btn-solid:focus {
  color: #fff !important;
}
.ac-btn-light {
  background: #fece3c;
  border-color: #fece3c;
  color: #965134 !important;
}
a.ac-btn-light:link,
a.ac-btn-light:visited,
a.ac-btn-light:hover,
a.ac-btn-light:active,
a.ac-btn-light:focus {
  color: #965134 !important;
}
.ac-login-form input {
  width: 100%;
  margin-bottom: 8px;
  min-height: 40px;
  border: 1px solid var(--ac-gold);
  border-radius: 8px;
  text-align: center;
  background: transparent;
  padding: 0 10px;
}
.ac-login-form .ac-btn,
.ac-account-actions .ac-btn {
  width: 100%;
  margin-bottom: 8px;
}
.ac-stat-list { list-style: none; padding: 0; margin: 0 0 12px; }
.ac-stat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,155,94,.2);
  font-size: 14px;
}
.ac-stat-list .count {
  font-weight: 700;
  color: var(--ac-gold);
  min-width: 28px;
  text-align: right;
}
.ac-card-head {
  background: var(--ac-gold);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px 12px;
}
@media (max-width: 575.98px) {
  .ac-header-user .ac-btn-label { display: none; }
  .ac-header-user .ac-btn { padding: 0 10px; }
  .ac-header img { height: 40px; }
}
