:root {
  --primary: #1A3A5C;
  --accent: #2E75B6;
  --success: #28A745;
  --warning: #FFC107;
  --error: #DC3545;
  --bg: #F8F9FA;
  --text: #172033;
  --muted: #667085;
  --line: #DDE3EA;
  --card: #FFFFFF;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  --radius-card: 8px;
  --radius-input: 4px;
  --radius-pill: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--warning);
  color: #111;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 1.25rem;
  background: var(--primary);
  color: #fff;
  overflow-y: auto;
}

.brand-lockup {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}

.brand-lockup strong { display: block; font-size: 1.25rem; }
.brand-lockup small { display: block; color: #D8E8F8; font-size: 0.78rem; }

.sidebar nav {
  display: grid;
  gap: 0.35rem;
}

.sidebar a,
.nav-logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #F5FAFF;
  cursor: pointer;
  text-align: left;
}

.sidebar a:hover,
.sidebar a.active,
.nav-logout:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  font-weight: 700;
}

.page-shell { min-width: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(248, 249, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.searchbar {
  position: relative;
  display: flex;
  flex: 1;
  max-width: 820px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}

.searchbar input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0.85rem 1rem;
  outline: none;
}

.searchbar button,
.primary-action,
.secondary-action,
.add-cart,
.pagination button,
.admin-tabs a,
.cart-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.searchbar button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.searchbar button,
.primary-action,
.add-cart {
  background: var(--primary);
  color: #fff;
}

.secondary-action,
.pagination button,
.admin-tabs a {
  background: #EAF2FA;
  color: var(--primary);
}

.cart-pill {
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--primary);
}

.cart-pill span {
  min-width: 26px;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: var(--warning);
  color: #1f1f1f;
  text-align: center;
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  padding: 0.75rem;
}

.mobile-menu span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
}

.main-content {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 1.5rem;
}

.hero-carousel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    linear-gradient(90deg, rgba(26, 58, 92, 0.95), rgba(46, 117, 182, 0.72)),
    url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-slide {
  display: none;
  min-height: 340px;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.hero-slide.active { display: flex; }
.hero-slide > div { max-width: 680px; }
.hero-slide h1 { margin: 0.2rem 0 0.8rem; font-size: clamp(2rem, 5vw, 4.4rem); line-height: 1.05; }
.hero-slide p { max-width: 56ch; color: #F2F7FC; font-size: 1.08rem; }
.eyebrow { margin: 0; color: var(--accent); font-size: 0.78rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.hero-carousel .eyebrow { color: #CDE7FF; }

.carousel-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}

.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.5rem;
}

.section-block,
.summary-panel,
.chart-card {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  background: var(--card);
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-heading h1,
.section-heading h2 { margin: 0; line-height: 1.2; }

.category-grid,
.product-grid,
.kpi-grid,
.account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-tile,
.brand-card,
.product-card,
.cart-item,
.address-card,
.kpi-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
}

.category-tile {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.category-tile span { font-size: 2rem; }
.category-tile:hover { border-color: var(--accent); text-decoration: none; }

.brand-scroll {
  display: flex;
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
}

.brand-card {
  min-width: 150px;
  min-height: 76px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 800;
  scroll-snap-align: start;
}

.product-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 0.8rem;
}

.product-card img,
.mini-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: #EDF2F7;
}

.product-card h3 {
  min-height: 3rem;
  margin: 0.2rem 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.product-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.price-row, .detail-price { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: baseline; }
.price-row strong, .detail-price strong { color: var(--primary); font-size: 1.2rem; }
del { color: var(--muted); }
.discount-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-row,
.cart-layout,
.quick-order-layout,
.catalog-layout,
.chart-grid,
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.25rem;
  align-items: start;
}

.trust-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.trust-row div {
  padding: 1rem;
  border-left: 4px solid var(--success);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-row span,
.kpi-grid span { display: block; color: var(--muted); font-size: 0.88rem; }

.order-list.compact {
  display: grid;
  gap: 0.6rem;
}

.order-list a,
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
}

.status {
  display: inline-flex;
  width: max-content;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-processing { background: #FFF3E0; color: #8A4B00; }
.status-delivered { background: #E8F5E9; color: #1B6B2A; }
.status-confirmed { background: #ECEBFF; color: #352C8F; }
.status-cancelled { background: #FDECEC; color: #A01822; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.filter-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

input,
select {
  min-height: 42px;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  background: #fff;
}

input:focus,
select:focus,
button:focus,
a:focus {
  outline: 3px solid rgba(46, 117, 182, 0.35);
  outline-offset: 2px;
}

.sort-control {
  grid-auto-flow: column;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.product-media {
  padding: 1rem;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.product-info {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-info h1 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.15; }
.detail-price span { color: var(--success); font-weight: 800; }

.qty-row {
  display: flex;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.qty-row button {
  width: 42px;
  border: 0;
  background: #F1F5F9;
  cursor: pointer;
}

.qty-row input {
  width: 56px;
  border: 0;
  text-align: center;
}

.scheme-box {
  padding: 1rem;
  border-radius: var(--radius-card);
  background: #F1F8F3;
  border: 1px solid #BDE5C7;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.tabs button {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  padding: 0.65rem;
  cursor: pointer;
}

.tabs button.active {
  background: var(--primary);
  color: #fff;
}

.tabs div {
  grid-column: 1 / -1;
}

.mini-product {
  display: grid;
  gap: 0.5rem;
  min-width: 190px;
  color: var(--text);
  font-weight: 700;
}

.summary-panel {
  position: sticky;
  top: 88px;
}

.summary-panel p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.65rem 0;
}

.summary-panel .save { color: var(--success); font-weight: 800; }
.summary-panel .grand {
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.full { width: 100%; }

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.data-table th,
.data-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.data-table th {
  background: #F2F6FA;
  color: var(--primary);
}

.wide-label { margin-bottom: 1rem; }
.upload-panel, .action-row, .payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cart-list { display: grid; gap: 0.8rem; }
.cart-item { grid-template-columns: 80px minmax(220px, 1fr) auto auto auto; }
.cart-item img { width: 80px; height: 80px; border-radius: 6px; object-fit: cover; }
.cart-item h3, .cart-item p { margin: 0; }
.cart-item p { color: var(--muted); }

.checkout-flow {
  display: grid;
  gap: 1rem;
}

.checkout-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

.checkout-step > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.timeline span {
  padding: 0.75rem;
  border-radius: var(--radius-pill);
  background: #EEF2F6;
  text-align: center;
  font-weight: 700;
}

.timeline .done { background: #E8F5E9; color: #1B6B2A; }
.timeline .active { background: #FFF3E0; color: #8A4B00; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.auth-body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(26, 58, 92, 0.92), rgba(248, 249, 250, 0.94)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 560px);
  gap: 2rem;
  align-items: center;
  padding: clamp(1rem, 5vw, 4rem);
}

.auth-brand {
  color: #fff;
}

.auth-brand h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
}

.auth-card {
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

.auth-card h2 { margin: 0 0 0.4rem; }
.auth-switch { text-align: center; }
.auth-card .full { grid-column: 1 / -1; }
.auth-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #BDE5C7;
  border-radius: var(--radius-card);
  background: #F1F8F3;
  color: #1B6B2A;
  font-weight: 700;
}
.auth-note.error {
  border-color: #F3B6B9;
  background: #FDECEC;
  color: #A01822;
}

.kpi-grid article {
  padding: 1rem;
}

.kpi-grid strong {
  display: block;
  color: var(--primary);
  font-size: 1.8rem;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  min-height: 220px;
}

.bar-chart span {
  flex: 1;
  min-height: 40px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.autocomplete {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
}

.autocomplete a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
}

.autocomplete a:hover { background: #F2F6FA; text-decoration: none; }

.empty-state {
  padding: 2rem;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

@media (max-width: 1024px) {
  .app-shell { grid-template-columns: 84px minmax(0, 1fr); }
  .sidebar { padding: 0.8rem; }
  .brand-lockup div,
  .sidebar a:not(.active),
  .nav-logout { font-size: 0; }
  .sidebar a.active { font-size: 0; }
  .sidebar a,
  .nav-logout { justify-content: center; }
  .category-grid,
  .product-grid,
  .kpi-grid,
  .account-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-row,
  .cart-layout,
  .quick-order-layout,
  .catalog-layout,
  .chart-grid,
  .product-detail { grid-template-columns: 1fr; }
  .summary-panel,
  .filter-panel { position: static; }
}

@media (max-width: 767px) {
  .app-shell { display: block; }
  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 60;
    width: min(82vw, 320px);
    transform: translateX(-100%);
    transition: transform 160ms ease;
  }
  .sidebar.open { transform: translateX(0); }
  .brand-lockup div,
  .sidebar a:not(.active),
  .sidebar a.active,
  .nav-logout { font-size: 1rem; }
  .sidebar a,
  .nav-logout { justify-content: flex-start; }
  .mobile-menu { display: block; flex: 0 0 auto; }
  .topbar {
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.65rem;
  }
  .searchbar { min-width: 0; }
  .searchbar button { display: none; }
  .main-content { padding: 1rem 0.75rem 5rem; }
  .hero-slide { min-height: 430px; align-items: flex-start; }
  .category-grid,
  .product-grid,
  .kpi-grid,
  .account-grid,
  .form-grid { grid-template-columns: 1fr; }
  .cart-item,
  .order-list a {
    grid-template-columns: 64px 1fr;
  }
  .cart-item > strong,
  .cart-item > button,
  .cart-item .qty-row {
    grid-column: 2;
  }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-brand h1 { font-size: 3.5rem; }
}

/* ===== Zaplin static-build supplement (catalog + WhatsApp checkout) ===== */
textarea {
  width: 100%;
  min-height: 84px;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  background: #fff;
  font: inherit;
  resize: vertical;
}
textarea:focus { outline: 3px solid rgba(46, 117, 182, 0.35); outline-offset: 2px; }

/* full-width fields inside a 2-col form grid */
.form-grid .wide-label,
.form-grid [data-acc="address"] { grid-column: 1 / -1; }
.form-grid .wide-label { grid-column: 1 / -1; }

/* checkout summary divider + line items */
[data-checkout-summary] hr { border: 0; border-top: 1px solid var(--line); margin: 0.75rem 0; }
[data-checkout-summary] { margin-top: 0.5rem; }

/* order confirmation note */
[data-order-confirmation] {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-card);
  background: #F1F8F3;
  border: 1px solid #BDE5C7;
  font-weight: 600;
}

/* WhatsApp-green primary action on checkout */
[data-place-order] { background: #25D366; border-color: #25D366; color: #06351c; }
[data-place-order]:hover { background: #1ebe5a; }

/* autocomplete entries are clickable even without href */
.autocomplete a { cursor: pointer; }

/* empty-state used inside a table cell should be plain, not a floating card */
.data-table .empty-state { background: transparent; box-shadow: none; padding: 1.25rem; color: var(--muted); }

/* admin stock and client management */
.admin-save-state {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.admin-save-state.saved {
  border-color: #BDE5C7;
  background: #F1F8F3;
  color: #1B6B2A;
}
.admin-help {
  margin: 0.25rem 0 0;
  color: var(--muted);
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}
.admin-actions input,
.admin-subhead input {
  width: min(320px, 100%);
}
.admin-table {
  min-width: 920px;
}
.admin-table td strong,
.admin-table td small {
  display: block;
}
.admin-table td small {
  color: var(--muted);
}
.admin-table input,
.admin-table select {
  min-width: 92px;
}
.stock-note {
  color: var(--success) !important;
  font-weight: 800;
}
.stock-note.stock-low {
  color: #8A4B00 !important;
}
.stock-chip {
  display: inline-flex;
  margin-left: 0.5rem;
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}
.stock-chip.ok { background: #E8F5E9; color: #1B6B2A; }
.stock-chip.low { background: #FFF3E0; color: #8A4B00; }
.add-cart:disabled,
.primary-action:disabled,
.secondary-action:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}
.admin-client-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #F8FAFC;
}
.admin-form-actions {
  display: flex;
  align-items: end;
  gap: 0.65rem;
}
.admin-subhead {
  margin-top: 1.25rem;
}
.admin-subhead h3 {
  margin: 0;
}
.admin-row-actions {
  display: flex;
  gap: 0.45rem;
}
.admin-row-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
}
.status-active { background: #E8F5E9; color: #1B6B2A; }
.status-pending { background: #FFF3E0; color: #8A4B00; }
.status-suspended { background: #FDECEC; color: #A01822; }

@media (max-width: 1024px) {
  .admin-client-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .admin-actions,
  .admin-form-actions,
  .admin-row-actions {
    justify-content: flex-start;
  }
  .admin-client-form { grid-template-columns: 1fr; }
}

.forgot-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.forgot-panel summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.forgot-panel .form-grid {
  margin-top: 0.75rem;
}
