/* Listas de compras — estilo Knuspr (laranja, cartões) */
.sl-page {
  background: var(--acc-bg, #eceff1);
  min-height: 50vh;
}

.sl-main {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem 1.35rem 2.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.sl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--acc-muted, #5c6360);
  margin-bottom: 1rem;
}
.sl-breadcrumb a {
  color: var(--acc-muted, #5c6360);
  text-decoration: none;
}
.sl-breadcrumb a:hover {
  color: var(--acc-orange, #ff7c00);
}
.sl-breadcrumb__sep {
  opacity: 0.5;
}

.sl-h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.sl-block-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.sl-block-head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.sl-info {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #c5cad0;
  color: var(--acc-muted, #5c6360);
  font-size: 0.7rem;
  font-weight: 800;
  font-style: normal;
  display: grid;
  place-items: center;
  cursor: help;
  flex-shrink: 0;
}

.sl-lead {
  font-size: 0.9375rem;
  color: var(--acc-muted, #5c6360);
  line-height: 1.5;
  margin: 0 0 1.75rem;
  max-width: 52ch;
}

.sl-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .sl-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sl-card {
  background: #f7f8fa;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 220px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sl-card:hover {
  border-color: rgba(255, 124, 0, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.sl-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #e8ecf0;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  line-height: 1;
}

/* Knuspr: cruz + grande e fina em laranja */
.sl-card__icon:not(.sl-card__icon--maia) {
  font-size: 3.35rem;
  font-weight: 200;
  color: var(--acc-orange, #ff7c00);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.sl-card__icon--maia {
  background: #e8ecf0;
  padding: 0.35rem;
}

.sl-maia-mascot {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}
.sl-maia-mascot svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sl-card__btn {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
  padding: 0.72rem 1rem;
  border: none;
  border-radius: 10px;
  background: var(--acc-orange, #ff7c00);
  color: #fff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.sl-card__btn:hover {
  background: var(--acc-orange-dark, #e56f00);
  transform: translateY(-1px);
}

.sl-center-action {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 2rem;
}
.sl-center-action .sl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
  max-width: 280px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.sl-saved {
  border-top: 1px solid #e8eaed;
  padding-top: 1.75rem;
}
.sl-saved h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #1a1a1a;
}
.sl-saved-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.sl-saved-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #f7f8fa;
  border-radius: 12px;
  border: 1px solid #e8eaed;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}
.sl-saved-item a {
  color: var(--acc-orange, #ff7c00);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}
.sl-saved-item a:hover {
  text-decoration: underline;
}
.sl-saved-item button.sl-remove {
  border: none;
  background: none;
  color: #c62828;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0.25rem;
}

.sl-float-maia {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--acc-orange, #ff7c00);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 124, 0, 0.45);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 900;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease;
}
.sl-float-maia:hover {
  transform: scale(1.06);
}

.account-sidebar__nav a[aria-current="page"] {
  font-weight: 800;
  color: var(--acc-orange, #ff7c00);
}

/* Atalhos Listas / Favoritos (barra secundária estilo Knuspr) */
.fav-topnav-tools {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.fav-topnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: #1a1a1a;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
a.fav-topnav-link:hover {
  background: #f0f1f3;
  text-decoration: none;
  color: #1a1a1a;
}
.fav-topnav-link--active {
  background: #3d4246 !important;
  color: #fff !important;
}
.fav-topnav-link--active svg {
  stroke: #fff;
}
.fav-topnav-link .fav-heart {
  stroke: #e91e63;
}
.fav-topnav-link--active .fav-heart {
  stroke: #ffb3c6;
  fill: rgba(255, 255, 255, 0.15);
}

/* Modal — criar nova lista (Knuspr) */
.sl-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(30, 35, 40, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sl-modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.sl-modal {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  position: relative;
  transform: translateY(8px) scale(0.98);
  transition: transform 0.2s ease;
}
.sl-modal-overlay[aria-hidden="false"] .sl-modal {
  transform: translateY(0) scale(1);
}
.sl-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  color: #5c6360;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.sl-modal__close:hover {
  background: #f0f1f3;
  color: #1a1a1a;
}
.sl-modal__title {
  margin: 0;
  padding: 1.5rem 2.75rem 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: -0.02em;
}
.sl-modal__body {
  padding: 0 1.5rem 1.25rem;
}
.sl-modal__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  color: #1a1a1a;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sl-modal__input::placeholder {
  color: #9aa0a6;
}
.sl-modal__input:focus {
  outline: none;
  border-color: var(--acc-orange, #ff7c00);
  box-shadow: 0 0 0 3px rgba(255, 124, 0, 0.18);
}
.sl-modal__suggest-label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5c6360;
}
.sl-modal__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sl-modal__pill {
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d8dce2;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.sl-modal__pill:hover {
  border-color: var(--acc-orange, #ff7c00);
  color: var(--acc-orange, #ff7c00);
}
.sl-modal__pill--active {
  border-color: var(--acc-orange, #ff7c00);
  background: #fff8f0;
  color: var(--acc-orange-dark, #e56f00);
}
.sl-modal__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem 1.35rem;
  border-top: 1px solid #eceff1;
}
.sl-modal__cancel {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #5c6360;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  text-decoration: none;
}
.sl-modal__cancel:hover {
  color: #1a1a1a;
}
.sl-modal__submit {
  min-width: 140px;
  padding: 0.7rem 1.75rem;
  border: none;
  border-radius: 999px;
  background: var(--acc-orange, #ff7c00);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.sl-modal__submit:hover {
  background: var(--acc-orange-dark, #e56f00);
  transform: translateY(-1px);
}
.sl-modal__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
