:root {
  --green-900: #083d35;
  --green-700: #0d6b5e;
  --green-500: #12a286;
  --mint-100: #e8f6f1;
  --aqua-100: #e9f8fb;
  --rose-100: #fff0f0;
  --ink: #17201f;
  --muted: #62716e;
  --line: #d9e6e2;
  --surface: #ffffff;
  --warm: #f8f4ec;
  --accent: #e95848;
  --shadow: 0 18px 45px rgba(8, 61, 53, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfc;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-bar {
  color: var(--green-900);
  background: linear-gradient(90deg, #f3fbf8, #ffffff 52%, #eef8f4);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.contact-bar__inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-bar__inner span {
  overflow-wrap: anywhere;
}

.contact-bar__inner span:not(.badge) {
  border: 1px solid rgba(13, 107, 94, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  padding: 7px 12px;
  color: #33413f;
  font-weight: 750;
}

.badge {
  margin-left: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--green-900);
  background: #d7f8ae;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(13, 107, 94, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-700);
  font-size: 1.7rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  overflow-wrap: anywhere;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
}

.nav__toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px 14px;
}

.button {
  border: 0;
  border-radius: 8px;
  background: var(--green-700);
  color: #fff;
  min-height: 44px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(13, 107, 94, 0.2);
}

.button--light {
  background: #fff;
  color: var(--green-900);
}

.button--ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  min-height: clamp(520px, 74vh, 760px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__shade {
  background: linear-gradient(90deg, rgba(8, 61, 53, 0.86), rgba(8, 61, 53, 0.45) 52%, rgba(8, 61, 53, 0.1));
}

.hero__content {
  position: relative;
  color: #fff;
  padding: 72px 0 96px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-500);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.hero .eyebrow {
  color: #bdf3e5;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  max-width: 720px;
  margin: 0;
  overflow-wrap: anywhere;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quick-actions {
  transform: translateY(-42px);
  margin-bottom: -18px;
}

.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-actions article,
.admin-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-actions article {
  padding: 22px;
}

.category-showcase {
  padding-top: 34px;
}

.category-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-showcase article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.category-showcase span {
  color: var(--green-500);
  font-weight: 950;
}

.category-showcase h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.category-showcase p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--mint-100);
  color: var(--green-700);
  font-weight: 900;
}

.quick-actions h2,
.service-list h3,
.admin-card h3 {
  font-size: 1.02rem;
  margin: 16px 0 8px;
}

.quick-actions p,
.service-list p,
.order-panel p,
.contact-card dd {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 56px 0 82px;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  min-width: 0;
}

.section h2,
.services-band h2,
.order-panel h2,
.contact-card h2,
.admin-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin: 0;
  overflow-wrap: anywhere;
}

.search {
  width: min(340px, 100%);
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 13px;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.category-tabs button {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--green-900);
  font-weight: 850;
  cursor: pointer;
}

.category-tabs button.is-active {
  color: #fff;
  background: var(--green-700);
  border-color: var(--green-700);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--aqua-100);
}

.product-card__body {
  padding: 16px;
  display: grid;
  gap: 9px;
  flex: 1;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-size: 1.18rem;
  font-weight: 950;
  color: var(--green-900);
}

.tag {
  color: var(--accent);
  background: var(--rose-100);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 900;
}

.tag--soft {
  color: var(--green-700);
  background: var(--mint-100);
}

.product-facts {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  padding: 10px;
  border-radius: 8px;
  background: #f7fbfa;
}

.product-facts div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.product-facts dt,
.product-facts dd {
  margin: 0;
  font-size: 0.8rem;
}

.product-facts dt {
  color: var(--muted);
  font-weight: 850;
}

.product-facts dd {
  color: var(--green-900);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-align: right;
}

.services-band {
  padding: 82px 0;
  background: linear-gradient(180deg, var(--warm), #eff8f5);
}

.brand-band {
  padding: 70px 0;
  background: var(--green-900);
  color: #fff;
}

.brand-band h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0 0 26px;
}

.brand-band .eyebrow {
  color: #bdf3e5;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.services-band__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.services-band__inner > div > p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  border-left: 5px solid var(--green-500);
  background: #fff;
  border-radius: 8px;
  padding: 20px;
}

.service-list h3,
.service-list p {
  margin-top: 0;
}

.order-panel {
  padding: 84px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.order-form,
.admin-card {
  display: grid;
  gap: 14px;
}

.order-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.order-panel--compact {
  padding-top: 0;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-link span {
  min-width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 950;
}

.cart-box {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

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

.cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item strong {
  line-height: 1.25;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 3px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button,
.text-button {
  border: 0;
  background: #fff;
  color: var(--green-700);
  cursor: pointer;
  font-weight: 900;
}

.quantity-control button {
  height: 34px;
}

.quantity-control span {
  margin: 0;
  color: var(--ink);
  text-align: center;
  font-weight: 950;
}

.text-button {
  padding: 8px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-total span {
  color: var(--muted);
  font-weight: 850;
}

.cart-total strong {
  font-size: 1.4rem;
  color: var(--green-900);
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-900);
  font-weight: 850;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-700);
  font-weight: 800;
}

.contact-section {
  padding: 0 0 86px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  padding: 30px;
}

.contact-card dl {
  display: grid;
  gap: 16px;
}

.contact-card dt {
  font-weight: 950;
}

.contact-card dd {
  margin: 4px 0 0;
}

.contact-section img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-panel {
  padding: 72px 0 84px;
  background: var(--green-900);
  color: #fff;
}

.admin-panel .eyebrow {
  color: #bdf3e5;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 22px;
  overflow-x: auto;
  padding: 0 0 6px;
  scrollbar-width: thin;
}

.admin-tabs button {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d9fff3;
  cursor: pointer;
  font-weight: 900;
  padding: 10px 15px;
}

.admin-tabs button.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--green-900);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.is-active {
  display: block;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 18px;
}

.metric-card span,
.metric-card strong {
  display: block;
}

.metric-card span {
  color: #bdf3e5;
  font-weight: 850;
  font-size: 0.85rem;
}

.metric-card strong {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.admin-grid--compact {
  margin-top: 20px;
}

.admin-card {
  color: var(--ink);
  padding: 24px;
  box-shadow: none;
}

.admin-card--narrow {
  max-width: 760px;
}

.admin-card--wide {
  grid-column: 1 / -1;
}

.admin-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.table-filter {
  max-width: 280px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
}

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

.data-table th {
  background: #f3fbf8;
  color: var(--green-900);
}

.data-table th button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 950;
  padding: 0;
}

.data-table td input,
.data-table td select,
.data-table td textarea {
  min-width: 150px;
  margin-bottom: 7px;
}

.data-table td textarea {
  min-width: 260px;
}

.table-muted {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 4px;
}

.compact-list {
  margin: 0;
  padding-left: 18px;
}

.row-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.danger {
  color: #b42318;
}

.orders-list {
  display: grid;
  gap: 12px;
}

.admin-muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.users-list {
  display: grid;
  gap: 12px;
}

.user-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 1.3fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 14px;
}

.user-item strong,
.user-item span {
  display: block;
  overflow-wrap: anywhere;
}

.user-item span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 4px;
}

.user-edit-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  gap: 10px;
  align-items: center;
}

.audit-action {
  display: inline-flex;
  border-radius: 999px;
  background: #e9f8f3;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 5px 9px;
  text-transform: uppercase;
}

.taxonomy-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.taxonomy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  padding: 12px;
}

.taxonomy-item div,
.taxonomy-item strong,
.taxonomy-item span {
  min-width: 0;
}

.taxonomy-item strong,
.taxonomy-item span {
  display: block;
  overflow-wrap: anywhere;
}

.taxonomy-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
  margin-top: 3px;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdfc;
}

.order-card p {
  margin: 6px 0;
  color: var(--muted);
}

.order-card ul {
  margin: 12px 0;
  padding-left: 20px;
}

.order-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.order-card__top span {
  color: var(--muted);
  font-size: 0.88rem;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  color: #fff;
  background: #051f1b;
}

.footer__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-actions__grid,
  .category-showcase__grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-band__inner,
  .order-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .contact-bar {
    font-size: 0.8rem;
  }

  .contact-bar__inner {
    justify-content: flex-start;
    gap: 7px;
    padding: 8px 0;
  }

  .contact-bar__inner span:not(.badge) {
    padding: 6px 9px;
  }

  .contact-bar__inner [data-pharmacy="email"] {
    display: none;
  }

  .badge {
    margin-left: 0;
  }

  .nav {
    align-items: stretch;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    max-width: calc(100% - 92px);
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav__links {
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 11px 0;
  }

  .nav__links .button {
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 128px);
    align-items: end;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(8, 61, 53, 0.84), rgba(8, 61, 53, 0.42));
  }

  .hero__content {
    padding: 72px 0 52px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
    line-height: 0.98;
  }

  .hero p:not(.eyebrow) {
    font-size: 1.04rem;
  }

  .hero__actions .button {
    flex: 1 1 180px;
  }

  .quick-actions {
    transform: none;
    margin: 20px 0 0;
  }

  .section__heading,
  .footer__inner {
    align-items: start;
    flex-direction: column;
  }

  .admin-grid,
  .category-showcase__grid,
  .product-grid,
  .quick-actions__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0 60px;
  }

  .services-band,
  .order-panel,
  .admin-panel {
    padding: 58px 0;
  }

  .order-form,
  .admin-card,
  .contact-card {
    padding: 18px;
  }

  .cart-item {
    grid-template-columns: 56px 1fr;
  }

  .cart-item img {
    width: 56px;
    height: 56px;
  }

  .quantity-control,
  .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .admin-card__heading,
  .order-card__top,
  .taxonomy-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-form,
  .user-item,
  .user-edit-form {
    grid-template-columns: 1fr;
  }

  .table-filter,
  .admin-actions,
  .admin-actions .button {
    width: 100%;
    max-width: none;
  }

  .contact-section {
    padding-bottom: 58px;
  }

  .contact-section img {
    min-height: 260px;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 20px, 1180px);
  }

  .contact-bar__inner {
    display: flex;
    align-items: center;
  }

  .contact-bar__inner [data-pharmacy="phone"] {
    display: none;
  }

  .nav__toggle {
    padding: 9px 11px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 560px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    flex: 0 0 auto;
  }

  .hero__actions .button,
  .order-form .button,
  .admin-card .button {
    width: 100%;
  }

  .section h2,
  .services-band h2,
  .order-panel h2,
  .contact-card h2,
  .admin-panel h2 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .category-tabs {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-card__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__meta .button {
    width: 100%;
  }

  .footer__inner {
    min-height: 96px;
  }
}
