*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f4f4f4;
  color: #222;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */

.cm-header {
  background-color: #f57c00;
  color: #fff;
  padding: 0.75rem 1rem;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.cm-header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.cm-logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cm-brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.cm-brand-link:visited,
.cm-brand-link:hover {
  color: inherit;
}

.cm-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.cm-header-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}

.cm-header-button {
  margin-left: auto;
  flex-shrink: 0;
  min-width: 0;
}

.cm-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cm-header-link {
  text-decoration: none;
}

.cm-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  margin-left: 6px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.cm-header-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .cm-header-btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }
  
  .cm-header-title {
    font-size: 0.9rem;
  }
}

/* Main layout */

.cm-main {
  flex: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1rem 1.25rem;
  box-sizing: border-box;
  overflow-x: hidden;
}

.cm-flash {
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cm-flash-item {
  background: #fff3e0;
  border: 1px solid #ffd9a8;
  color: #7c2d12;
  padding: 0.5rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
}

/* Filters */

.cm-filters {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem 0.95rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.cm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #fff3e0;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.cm-filters-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cm-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cm-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
}

.cm-field input,
.cm-field select {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cm-field input:focus,
.cm-field select:focus {
  border-color: #f57c00;
  box-shadow: 0 0 0 1px rgba(245, 124, 0, 0.25);
}

.cm-filters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .cm-filters-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cm-filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cm-btn {
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cm-btn-primary {
  background-color: #f57c00;
  color: #fff;
  border-color: #f57c00;
}

.cm-btn-primary:hover {
  filter: brightness(0.95);
}

.cm-btn-ghost {
  background-color: #fff;
  color: #444;
  border-color: #ddd;
}

.cm-btn-ghost:hover {
  background-color: #f3f4f6;
}

.cm-summary {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: #555;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  word-wrap: break-word;
}

.cm-summary-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.cm-summary-text {
  flex: 1 1 auto;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cm-offers-toggle-form {
  margin: 0;
  flex-shrink: 0;
}

.cm-summary-tag {
  margin-left: 0.3rem;
  color: #f57c00;
}

/* Product list */

.cm-list {
  margin-bottom: 0.9rem;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.cm-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cm-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: 0.65rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.cm-product-main {
  flex: 1;
  min-width: 0;
}

.cm-product-name {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.cm-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: #666;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cm-product-tags {
  margin-top: 0.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.cm-tag {
  font-size: 0.65rem;
  border-radius: 999px;
  padding: 0.05rem 0.4rem;
  background-color: #ffecb3;
  color: #7c2d12;
}

.cm-tag-muted {
  background-color: #e5e7eb;
  color: #374151;
}

.cm-product-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 0;
}

.cm-add-cart {
  margin-top: 0.4rem;
}

.cm-add-cart-add .cm-btn {
  width: 100%;
}

.cm-qty-stepper {
  display: grid;
  grid-template-columns: 44px auto 44px;
  grid-template-rows: auto auto;
  column-gap: 0.35rem;
  row-gap: 0.25rem;
  align-items: center;
}

.cm-qty-stepper .cm-btn:not(.cm-qty-btn) {
  width: auto;
}

.cm-qty-form {
  margin: 0;
}

.cm-qty-form-input {
  grid-column: 2;
  grid-row: 1;
}

.cm-qty-form-minus {
  grid-column: 1;
  grid-row: 1;
}

.cm-qty-form-plus {
  grid-column: 3;
  grid-row: 1;
}

.cm-qty-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cm-qty-stepper .cm-qty-btn {
  background-color: #f57c00;
  border-color: #f57c00;
  color: #fff;
  border-radius: 50%;
}

.cm-qty-stepper .cm-qty-btn:hover {
  filter: brightness(0.95);
}

.cm-qty-input {
  width: 6ch;
  max-width: 6ch;
  min-width: 6ch;
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.45rem 0.5rem;
  font-size: 0.95rem;
  text-align: center;
}

.cm-qty-input::-webkit-outer-spin-button,
.cm-qty-input::-webkit-inner-spin-button,
.cm-cart-qty::-webkit-outer-spin-button,
.cm-cart-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cm-qty-input[type=number],
.cm-cart-qty[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.cm-qty-unit {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.72rem;
  color: #6b7280;
  text-align: center;
}

/* Carrito */

.cm-cart {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cm-cart-item {
  background: #fff;
  border-radius: 0.65rem;
  padding: 0.6rem 0.75rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cm-cart-actions {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.cm-cart-qty-label {
  font-size: 0.78rem;
  color: #6b7280;
  white-space: nowrap;
}

.cm-cart-qty {
  width: 80px;
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.35rem 0.6rem;
}

.cm-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  margin: 0 0 0.75rem 0;
}

/* Pedidos */

.cm-orders {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cm-order {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.cm-order-compact {
  padding: 0.6rem 0.75rem;
}

.cm-order-title {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cm-order-total-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}

.cm-order-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #6b7280;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.cm-order-toolbar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.cm-order-details {
  margin-top: 0.5rem;
}

.cm-order-details-total {
  margin-top: 0.5rem;
  display: flex;
  justify-content: flex-end;
  font-size: 0.85rem;
}

.cm-order-items-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.5rem;
  border-radius: 0.65rem;
  border: 1px solid #eef2f7;
}

.cm-order-items-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.cm-order-items-table th,
.cm-order-items-table td {
  padding: 0.55rem 0.6rem;
  border-bottom: 1px solid #eef2f7;
  font-size: 0.82rem;
  color: #111;
}

.cm-order-items-table th {
  position: sticky;
  top: 0;
  background: #fff;
  text-align: left;
  font-weight: 800;
  font-size: 0.78rem;
  color: #111827;
}

.cm-order-items-table tbody tr:nth-child(odd) td {
  background: #ffffff;
}

.cm-order-items-table tbody tr:nth-child(even) td {
  background: #f3f4f6;
}

.cm-order-items-table tbody tr:hover td {
  background: #e5e7eb;
}

.cm-order-col-center {
  text-align: center;
  white-space: nowrap;
}

.cm-order-col-price {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.cm-order-col-code {
  white-space: nowrap;
  color: #6b7280;
}

.cm-order-col-product {
  font-weight: 700;
}

.cm-order-total-label {
  text-align: right;
  font-weight: 800;
}

.cm-order-total-value {
  font-weight: 900;
}

.cm-order-details summary {
  cursor: pointer;
  user-select: none;
  color: #1e40af;
  font-weight: 700;
  font-size: 0.85rem;
}

.cm-order-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.cm-order-items {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cm-table-wrap {
  width: 100%;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cm-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.cm-table th,
.cm-table td {
  padding: 0.6rem 0.65rem;
  border-bottom: 1px solid #eef2f7;
  font-size: 0.82rem;
  vertical-align: top;
  color: #111;
}

.cm-table th {
  position: sticky;
  top: 0;
  background: #fff3e0;
  color: #7c2d12;
  text-align: left;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.cm-table tbody tr:nth-child(even) td {
  background: #fafafa;
}

.cm-table-price {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.cm-order-item {
  padding: 0.35rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.cm-order-item:last-child {
  border-bottom: none;
}

.cm-order-item-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.cm-order-item-meta {
  font-size: 0.78rem;
  color: #6b7280;
}

.cm-order-actions {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cm-order-actions select {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.35rem 0.6rem;
}

/* Admin usuarios */

.cm-users {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cm-user {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cm-user-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.cm-user-reset {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.cm-user-reset input {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.35rem 0.6rem;
}

.cm-price-normal {
  font-size: 0.95rem;
  font-weight: 700;
}

.cm-price-offer {
  font-size: 0.95rem;
  font-weight: 800;
  color: #b91c1c;
}

.cm-price-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
}

.cm-price-list-strike {
  font-size: 0.7rem;
  color: #6b7280;
  text-decoration: line-through;
}

.cm-badge-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.02rem 0.35rem;
  border-radius: 999px;
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.cm-price-bulto {
  font-size: 0.68rem;
  color: #166534;
  background-color: #dcfce7;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  margin-top: 0.15rem;
}

.cm-empty {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 1.2rem 0.5rem;
}

/* Pagination */

.cm-pagination {
  display: flex;
  justify-content: center;
}

.cm-pagination-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.cm-page-btn {
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #374151;
  cursor: pointer;
}

.cm-page-btn:hover {
  background-color: #f3f4f6;
}

.cm-page-btn-disabled {
  opacity: 0.55;
  cursor: default;
}

.cm-page-info {
  font-size: 0.8rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.cm-page-jump-form {
  display: inline-block;
}

.cm-page-input {
  width: 4.5rem;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.25rem 0.4rem;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  color: #374151;
  background-color: #fff;
}

/* Ocultar spinners en Chrome, Safari, Edge */
.cm-page-input::-webkit-outer-spin-button,
.cm-page-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Ocultar spinners en Firefox */
.cm-page-input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.cm-page-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Footer */

.cm-footer {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  padding: 0.5rem 1rem 0.9rem;
}

/* Modal de bienvenida */

.cm-modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  touch-action: none;
}

.cm-modal {
  width: 100%;
  max-width: 380px;
  margin: 0 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff7ec 60%, #ffe0b2 100%);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem 1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.45);
  border-top: 4px solid #f57c00;
}

.cm-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #c05621;
}

.cm-modal-text {
  font-size: 0.87rem;
  color: #4b5563;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.cm-modal-actions {
  display: flex;
  justify-content: flex-end;
}

.cm-modal-hidden {
  display: none;
}

.cm-hidden {
  display: none;
}

/* Evita scroll del fondo cuando el modal está abierto */
.cm-modal-open {
  overflow: hidden;
}

/* Modal Consultor de Precios */
.cm-consultor-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
  touch-action: manipulation;
}

.cm-consultor-modal-content {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.45);
  box-sizing: border-box;
  margin: auto;
}

/* Ajustes del modal para tablets */
@media (max-width: 768px) {
  .cm-consultor-modal {
    padding: 0.75rem;
  }
  
  .cm-consultor-modal-content {
    max-width: 100%;
    width: 100%;
    padding: 1.25rem;
  }
}

/* Prevenir scroll horizontal globalmente */
section {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.cm-chip {
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Asegurar que los elementos flex no desborden */
.cm-filters-actions {
  width: 100%;
  box-sizing: border-box;
}

.cm-btn {
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
}

/* Ajustes adicionales para móviles */
@media (max-width: 480px) {
  .cm-main {
    padding: 0.5rem 0.75rem 1rem;
  }
  
  .cm-filters {
    padding: 0.6rem 0.75rem 0.8rem;
  }
  
  .cm-header {
    padding: 0.6rem 0.75rem;
  }
  
  .cm-summary-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cm-summary-text {
    width: 100%;
  }
  
  .cm-offers-toggle-form {
    width: 100%;
  }
  
  .cm-offers-toggle-form .cm-btn {
    width: 100%;
  }

  .cm-filters-actions .cm-btn {
    width: 100%;
  }

  .cm-cart-item {
    flex-direction: column;
    align-items: stretch;
  }

  .cm-cart-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cm-cart-actions .cm-btn {
    width: 100%;
  }

  .cm-cart-qty {
    width: 100%;
  }

  .cm-order-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cm-order-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .cm-order-toolbar .cm-btn {
    width: 100%;
  }

  .cm-order-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cm-order-actions select {
    width: 100%;
  }
}
