/* ── Layout: Header, Breadcrumb, Sidebar Nav, Section Block, Section Toggle ── */

/* ── Kundenkonto Header (simuliert) ── */
.whic-header {
  background: var(--whic-dark);
  color: #fff;
  padding: 14px 0;
  font-size: 14px;
}
.whic-header .logo {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}
.whic-breadcrumb {
  background: var(--whic-bg-alt);
  border-bottom: 1px solid var(--whic-border);
  padding: 10px 0;
  font-size: 13px;
}
.whic-breadcrumb a { color: var(--whic-text-light); text-decoration: none; }
.whic-breadcrumb a:hover { color: var(--whic-green); }
.whic-breadcrumb .current { color: var(--whic-text); font-weight: 500; }

/* ── Kundenkonto Sidebar Nav (simuliert) ── */
.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.account-nav li a {
  display: block;
  padding: 10px 16px;
  color: var(--whic-text-light);
  text-decoration: none;
  font-size: 14px;
  border-radius: var(--whic-radius);
  transition: all .2s;
}
.account-nav li a:hover { background: var(--whic-bg-alt); color: var(--whic-text); }
.account-nav li a.active {
  background: var(--whic-green-pale);
  color: var(--whic-green);
  font-weight: 600;
}
/* Sub-Nav Items (eingerückt unter Parent) */
.account-nav-sub {
  list-style: none;
  padding: 0;
  margin: 2px 0 2px 20px;
}
.account-nav-sub li a {
  display: block;
  padding: 5px 12px;
  color: var(--whic-text-light);
  text-decoration: none;
  font-size: 13px;
  border-radius: var(--whic-radius);
  transition: all .2s;
}
.account-nav-sub li a:hover { background: var(--whic-bg-alt); color: var(--whic-text); }
.account-nav-sub li a.active { color: var(--whic-green); font-weight: 500; background: none; }


/* ── Section Headers ── */
.section-block { margin-bottom: 36px; }
.section-block h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.section-block .section-sub {
  color: var(--whic-text-light);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── Abschnitts-Toggle (Allgemein / Vergangene Newsletter) ── */
.section-toggle { display: flex; gap: 0; margin-bottom: 14px; }
.section-toggle-btn {
  padding: 5px 16px; border: 1px solid var(--whic-border); background: #fff;
  font-size: 13px; font-weight: 500; cursor: pointer; color: var(--whic-text-light);
  transition: all .15s;
}
.section-toggle-btn:first-child { border-radius: var(--whic-radius) 0 0 var(--whic-radius); border-right: none; }
.section-toggle-btn:last-child  { border-radius: 0 var(--whic-radius) var(--whic-radius) 0; }
.section-toggle-btn.active { background: var(--whic-green); color: #fff; border-color: var(--whic-green); }

/* ── Alle-View Sub-Section Separator ── */
.all-view-sep {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--whic-text-light);
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 14px 0 8px; border-bottom: 1px solid var(--whic-border);
  margin-bottom: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .account-sidebar { display: none; }
  .cta-card { flex-direction: column; text-align: center; padding: 20px; }
  .alert-card { flex-direction: column; text-align: center; }
  .alert-card .alert-actions { justify-content: center; }
  .aroma-tier-cards { flex-direction: column; }
}
