@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@400;600;700;800;900&display=swap");

:root {
  --ink: #35243f;
  --muted: #75677d;
  --line: #eaddeb;
  --pink: #f7a9c8;
  --rose: #ffdce9;
  --lilac: #c9b6ff;
  --violet: #9d75e8;
  --mint: #c9f4df;
  --cream: #fff8fb;
  --white: #ffffff;
  --danger: #c64061;
  --ok: #23895e;
  --shadow: 0 18px 50px rgba(87, 55, 104, .14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #fff8fb 0%, #f5edff 50%, #ecfff5 100%);
  font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.animations-off .floating-bg,
body.animations-off .hero::before,
body.animations-off .hero::after {
  display: none;
}

.floating-bg {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.floating-bg span {
  animation: driftIcon 18s linear infinite;
  color: rgba(157, 117, 232, .22);
  font-family: "Baloo 2", Nunito, sans-serif;
  font-size: 2rem;
  left: var(--x, 10%);
  position: absolute;
  top: 110%;
}

.floating-bg span:nth-child(1) { --x: 8%; animation-delay: -1s; }
.floating-bg span:nth-child(2) { --x: 22%; animation-delay: -8s; color: rgba(247, 169, 200, .28); }
.floating-bg span:nth-child(3) { --x: 36%; animation-delay: -4s; }
.floating-bg span:nth-child(4) { --x: 50%; animation-delay: -11s; color: rgba(35, 137, 94, .16); }
.floating-bg span:nth-child(5) { --x: 64%; animation-delay: -6s; color: rgba(247, 169, 200, .24); }
.floating-bg span:nth-child(6) { --x: 76%; animation-delay: -13s; }
.floating-bg span:nth-child(7) { --x: 88%; animation-delay: -3s; color: rgba(247, 169, 200, .26); }
.floating-bg span:nth-child(8) { --x: 94%; animation-delay: -15s; }
.floating-bg span:nth-child(9) { --x: 3%; animation-delay: -10s; animation-duration: 22s; font-size: 1.55rem; color: rgba(247, 169, 200, .22); }
.floating-bg span:nth-child(10) { --x: 14%; animation-delay: -17s; animation-duration: 20s; font-size: 2.35rem; }
.floating-bg span:nth-child(11) { --x: 28%; animation-delay: -2s; animation-duration: 24s; font-size: 1.85rem; color: rgba(35, 137, 94, .14); }
.floating-bg span:nth-child(12) { --x: 42%; animation-delay: -19s; animation-duration: 21s; font-size: 1.45rem; color: rgba(247, 169, 200, .27); }
.floating-bg span:nth-child(13) { --x: 58%; animation-delay: -9s; animation-duration: 25s; font-size: 2.15rem; }
.floating-bg span:nth-child(14) { --x: 70%; animation-delay: -1s; animation-duration: 19s; font-size: 1.5rem; color: rgba(247, 169, 200, .24); }
.floating-bg span:nth-child(15) { --x: 82%; animation-delay: -16s; animation-duration: 23s; font-size: 2.4rem; }
.floating-bg span:nth-child(16) { --x: 97%; animation-delay: -7s; animation-duration: 20s; font-size: 1.7rem; color: rgba(35, 137, 94, .15); }
.floating-bg span:nth-child(17) { --x: 11%; animation-delay: -14s; animation-duration: 27s; font-size: 2.25rem; color: rgba(157, 117, 232, .18); }
.floating-bg span:nth-child(18) { --x: 19%; animation-delay: -5s; animation-duration: 18s; font-size: 1.6rem; color: rgba(247, 169, 200, .3); }
.floating-bg span:nth-child(19) { --x: 33%; animation-delay: -21s; animation-duration: 26s; font-size: 2rem; color: rgba(157, 117, 232, .19); }
.floating-bg span:nth-child(20) { --x: 47%; animation-delay: -12s; animation-duration: 19s; font-size: 1.5rem; color: rgba(247, 169, 200, .25); }
.floating-bg span:nth-child(21) { --x: 61%; animation-delay: -20s; animation-duration: 24s; font-size: 2.25rem; color: rgba(35, 137, 94, .13); }
.floating-bg span:nth-child(22) { --x: 73%; animation-delay: -4s; animation-duration: 28s; font-size: 1.4rem; color: rgba(157, 117, 232, .18); }
.floating-bg span:nth-child(23) { --x: 86%; animation-delay: -18s; animation-duration: 22s; font-size: 2.35rem; color: rgba(247, 169, 200, .2); }
.floating-bg span:nth-child(24) { --x: 92%; animation-delay: -11s; animation-duration: 25s; font-size: 1.6rem; color: rgba(157, 117, 232, .2); }

@keyframes driftIcon {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(22px, -120vh, 0) rotate(32deg); }
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.logo {
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  display: grid;
  font-weight: 900;
  height: 46px;
  letter-spacing: 0;
  place-items: center;
  width: 46px;
  animation: logoBeat 3.8s ease-in-out infinite;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
}

.brand span {
  color: var(--muted);
  display: block;
  font-size: .85rem;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(53, 36, 63, .72), rgba(157, 117, 232, .15)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-radius: 8px;
  color: white;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  padding: 38px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero::before {
  animation: auroraSweep 7s linear infinite;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 220, 233, .28), transparent 62%);
  height: 160%;
  left: -70%;
  top: -30%;
  transform: rotate(8deg);
  width: 55%;
}

.hero::after {
  animation: softPulse 4.5s ease-in-out infinite;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 220, 233, .78) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 20%, rgba(201, 182, 255, .9) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 70%, rgba(201, 244, 223, .86) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, .75) 0 2px, transparent 3px);
  inset: 0;
}

.sparkles {
  animation: floaty 5s ease-in-out infinite;
  color: var(--rose);
  font-size: 1.7rem;
  position: absolute;
  right: 30px;
  top: 26px;
}

.charm {
  align-items: center;
  animation: charmDance 5.4s ease-in-out infinite;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 220, 233, .9);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(53, 36, 63, .14);
  color: var(--violet);
  display: grid;
  font-family: "Baloo 2", Nunito, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  height: 58px;
  place-items: center;
  position: absolute;
  width: 58px;
}

.charm-one {
  right: 88px;
  top: 88px;
}

.charm-two {
  animation-delay: -2.1s;
  bottom: 34px;
  right: 34px;
  width: 70px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .75; }
  50% { transform: translateY(12px) rotate(8deg); opacity: 1; }
}

@keyframes auroraSweep {
  0% { left: -70%; opacity: 0; }
  20% { opacity: .8; }
  100% { left: 118%; opacity: 0; }
}

@keyframes softPulse {
  0%, 100% { opacity: .42; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.02); }
}

@keyframes logoBeat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.04); }
}

@keyframes charmDance {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(7deg); }
}

.hero h1 {
  font-family: "Baloo 2", Nunito, sans-serif;
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: .95;
  margin: 0 0 12px;
  max-width: 780px;
}

.hero p {
  font-size: 1.08rem;
  margin: 0;
  max-width: 620px;
}

.actions,
.filters {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 22px 0;
  padding: 12px;
}

.input,
.select,
.textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 42px;
  padding: 10px 12px;
}

.textarea {
  min-height: 88px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--violet);
  outline: 3px solid rgba(201, 182, 255, .45);
}

.button {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(157, 117, 232, .2);
  transform: translateY(-1px);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.pink {
  background: linear-gradient(135deg, #ee7fb1, #9d75e8);
}

.button.pink::after {
  animation: buttonGlow 3.2s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
  content: "";
  height: 140%;
  left: -70%;
  position: absolute;
  top: -20%;
  transform: rotate(14deg);
  width: 45%;
}

@keyframes buttonGlow {
  0%, 45% { left: -70%; }
  100% { left: 125%; }
}

.button.danger {
  background: var(--danger);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.mission-vision {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.mission-vision article {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.mission-vision h2 {
  font-family: "Baloo 2", Nunito, sans-serif;
  line-height: 1.08;
  margin: 10px 0;
}

.mission-vision p {
  color: var(--muted);
  margin: 0;
}

.card {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}

.card:hover {
  box-shadow: 0 22px 60px rgba(157, 117, 232, .22);
  transform: translateY(-4px);
}

.product-img {
  aspect-ratio: 4 / 3;
  background: #f1e8f5;
  overflow: hidden;
  position: relative;
}

.product-img img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  width: 100%;
}

.product-img:hover img {
  transform: scale(1.12);
}

.badge {
  background: var(--rose);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: .76rem;
  font-weight: 800;
  padding: 5px 9px;
}

.badge.ok {
  background: var(--mint);
  color: var(--ok);
}

.badge.warn {
  background: #fff0bd;
}

.badge.danger {
  background: #ffd5df;
  color: var(--danger);
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-body h3,
.panel h2,
.panel h3 {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.price {
  font-family: "Baloo 2", Nunito, sans-serif;
  color: var(--violet);
  font-size: 1.2rem;
  font-weight: 900;
}

.pop-spark {
  animation: sparklePop .72s ease-out forwards;
  color: #f48bb8;
  font-family: "Baloo 2", Nunito, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  left: 0;
  pointer-events: none;
  position: fixed;
  text-shadow: 0 6px 18px rgba(157, 117, 232, .3);
  top: 0;
  z-index: 60;
}

@keyframes sparklePop {
  0% { opacity: 0; transform: translate(-50%, -20%) scale(.55) rotate(-12deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -130%) scale(1.2) rotate(10deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.cart-button {
  position: relative;
}

.drawer {
  background: white;
  box-shadow: -20px 0 60px rgba(53, 36, 63, .2);
  display: grid;
  gap: 14px;
  height: 100vh;
  max-width: 420px;
  overflow: auto;
  padding: 22px;
  position: fixed;
  right: -440px;
  top: 0;
  transition: right .25s ease;
  width: calc(100vw - 22px);
  z-index: 20;
}

.drawer.open {
  right: 0;
}

.cart-item,
.row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 10px 0;
}

.qty {
  align-items: center;
  display: flex;
  gap: 8px;
}

.qty button {
  background: var(--rose);
  border: 0;
  border-radius: 8px;
  height: 32px;
  width: 32px;
}

.modal {
  align-items: center;
  background: rgba(53, 36, 63, .54);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 30;
}

.modal.open {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 8px;
  max-height: 92vh;
  max-width: 900px;
  overflow: auto;
  padding: 18px;
  width: 100%;
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
}

.zoom-img {
  border-radius: 8px;
  overflow: hidden;
}

.zoom-img img {
  display: block;
  transition: transform .2s ease;
  width: 100%;
}

.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.thumbs img {
  border: 2px solid transparent;
  border-radius: 8px;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.thumbs img.active {
  border-color: var(--violet);
}

.admin-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 230px 1fr;
}

.sidebar,
.panel {
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.sidebar {
  align-self: start;
  display: grid;
  gap: 8px;
  position: sticky;
  top: 20px;
}

.tab {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  padding: 11px 12px;
  text-align: left;
}

.tab.active {
  background: var(--rose);
  font-weight: 900;
}

.stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
}

.operations-layout,
.operations-grid {
  display: grid;
  gap: 16px;
}

.operations-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.operations-summary article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 16px;
}

.operations-summary strong {
  font-size: 1.25rem;
}

.operations-summary small {
  color: var(--muted);
}

.operations-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  margin-top: 18px;
}

.operations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.operations-section {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.operations-section + .operations-section {
  margin-top: 14px;
}

.priority-item,
.activity-list article,
.program-metrics article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 12px;
}

.priority-item p {
  color: var(--muted);
  margin: 0;
}

.quick-links {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-metrics,
.activity-list {
  display: grid;
  gap: 10px;
}

.program-metrics {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.program-metrics small,
.activity-list small {
  color: var(--muted);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.product-controls {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 16px 0;
}

.selected-row {
  background: rgba(255, 220, 233, .24);
}

.product-insights {
  display: grid;
  gap: 12px;
}

.product-insight-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.product-master-summary,
.product-expedient-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.product-insight-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 12px;
}

.product-master-summary article,
.product-expedient-grid section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 12px;
}

.product-master-summary strong {
  font-size: 1.2rem;
}

.product-insight-grid span {
  color: var(--muted);
}

.order-controls {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 16px 0;
}

.notice.compact {
  align-items: center;
  display: flex;
  gap: 8px;
  margin: 0;
}

.order-workspace {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.35fr);
}

.order-list {
  display: grid;
  gap: 10px;
  max-height: 70vh;
  overflow: auto;
  padding-right: 4px;
}

.order-list-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  gap: 8px;
  padding: 14px;
  text-align: left;
}

.order-list-item.active {
  border-color: var(--violet);
  box-shadow: 0 12px 28px rgba(201, 182, 255, .24);
}

.order-case {
  display: grid;
  gap: 14px;
}

.order-case-header,
.order-case-section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.order-case-header {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.order-case-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-case-section {
  display: grid;
  gap: 8px;
}

.order-next-action {
  background: linear-gradient(135deg, rgba(255, 220, 233, .48), white);
}

.order-next-action strong {
  font-size: 1.25rem;
}

.order-history {
  display: grid;
  gap: 8px;
}

.order-history article {
  background: rgba(255, 220, 233, .24);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.support-controls {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 16px 0;
}

.support-workspace {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.35fr);
}

.support-list {
  display: grid;
  gap: 10px;
  max-height: 70vh;
  overflow: auto;
  padding-right: 4px;
}

.support-list-item,
.support-case-header,
.support-section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 14px;
}

.support-list-item {
  cursor: pointer;
}

.support-list-item.active {
  border-color: var(--violet);
  box-shadow: 0 12px 28px rgba(201, 182, 255, .24);
}

.support-case {
  display: grid;
  gap: 14px;
}

.support-case-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.support-context-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.support-context-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.support-context-grid.compact {
  margin-top: 8px;
}

.support-context-grid strong {
  font-size: 1.05rem;
}

.support-thread {
  display: grid;
  gap: 8px;
}

.support-thread article {
  background: rgba(255, 220, 233, .24);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 10px;
}

.support-thread article.internal {
  background: rgba(201, 182, 255, .18);
}

.support-thread.compact article {
  padding: 8px;
}

.configuration-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 16px 0;
}

.governance-summary {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 16px 0;
}

.governance-summary article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 12px;
}

.governance-summary span {
  color: var(--muted);
}

.governance-summary strong {
  font-size: 1.2rem;
}

.configuration-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 14px;
}

.configuration-card h4 {
  margin: 0;
}

#auditRows {
  display: grid;
  gap: 10px;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.notice {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--violet);
  border-radius: 8px;
  margin: 12px 0;
  padding: 12px;
}

.track-panel {
  margin-top: 24px;
}

.order-result {
  display: grid;
  gap: 8px;
}

.order-result strong {
  color: var(--violet);
}

.review-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 12px;
}

.check-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.check-grid label {
  background: rgba(255, 220, 233, .36);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.hidden {
  display: none !important;
}

@media (max-width: 780px) {
  .shell {
    padding: 14px;
  }

  .hero {
    min-height: 280px;
    padding: 24px;
  }

  .detail-grid,
  .admin-layout,
  .form-grid,
  .order-workspace,
  .order-case-grid,
  .support-workspace,
  .mission-vision,
  .operations-summary,
  .operations-layout,
  .operations-grid,
  .product-master-summary,
  .product-expedient-grid,
  .support-context-grid,
  .governance-summary {
    grid-template-columns: 1fr;
  }

  .support-case-header {
    display: grid;
  }

  .support-list {
    max-height: none;
  }

  .order-case-header {
    display: grid;
  }

  .order-list {
    max-height: none;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}
