:root {
  --bg: #f8f4f5;
  --surface: #ffffff;
  --surface-soft: #f7eef1;
  --text: #24191c;
  --muted: #74656a;
  --line: #eadde1;
  --primary: #8f1d35;
  --primary-dark: #651126;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --success: #087443;
  --success-soft: #eaf8f0;
  --shadow: 0 10px 30px rgba(83, 24, 39, 0.10);
  --radius: 18px;
  --radius-small: 11px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 29, 53, 0.08), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.8rem clamp(1rem, 4vw, 3.2rem);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(234, 221, 225, 0.92);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-mark, .login-icon {
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 900;
  border-radius: 12px;
}
.brand-mark { width: 38px; height: 38px; }
.brand span:last-child { display: grid; line-height: 1.15; }
.brand strong { font-size: 1.08rem; }
.brand small { color: var(--muted); font-size: 0.74rem; margin-top: 0.25rem; }
.top-actions { display: flex; align-items: center; gap: 0.55rem; }
.top-actions form { margin: 0; }

.page { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; padding: 2.5rem 0 4rem; }
.page-centered { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem 0; }
.footer { padding: 1rem 1rem 2.5rem; color: var(--muted); text-align: center; font-size: 0.86rem; }

h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0.55rem; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: -0.045em; }
h2 { letter-spacing: -0.025em; }
.eyebrow { margin-bottom: 0.45rem; color: var(--primary); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.back-link { display: inline-flex; margin-bottom: 1.3rem; color: var(--primary-dark); font-weight: 750; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--text);
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .upload-box:focus-within, .photo-source:focus-within {
  outline: 3px solid rgba(143, 29, 53, 0.20);
  outline-offset: 2px;
}
.button-primary { background: var(--primary); color: white; box-shadow: 0 8px 18px rgba(143, 29, 53, 0.20); }
.button-primary:hover { background: var(--primary-dark); }
.button-secondary { background: var(--surface-soft); color: var(--primary-dark); border-color: #e2c6ce; }
.button-ghost { background: var(--surface); border-color: var(--line); }
.button-danger { background: var(--danger-soft); color: var(--danger); border-color: #f7cbc5; }
.button-wide { width: 100%; }
.button-compact { min-height: 38px; padding: 0.55rem 0.8rem; font-size: 0.9rem; }

.flash-stack { display: grid; gap: 0.65rem; margin-bottom: 1.2rem; }
.flash { padding: 0.85rem 1rem; border: 1px solid; border-radius: var(--radius-small); font-weight: 650; }
.flash-success { color: var(--success); background: var(--success-soft); border-color: #b9e5cc; }
.flash-error { color: var(--danger); background: var(--danger-soft); border-color: #f2c7c1; }

.login-card {
  width: min(440px, 100%);
  padding: clamp(1.5rem, 6vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}
.login-icon { width: 52px; height: 52px; margin-bottom: 1.3rem; font-size: 1.35rem; }
.login-card h1 { font-size: 2rem; }
.form-stack { display: grid; gap: 1rem; margin-top: 1.5rem; }

label { display: grid; gap: 0.45rem; font-weight: 720; }
label > span { font-size: 0.92rem; }
label b { color: var(--danger); }
label small { color: var(--muted); font-weight: 500; }
input, textarea, select {
  width: 100%;
  border: 1px solid #d9c5cb;
  border-radius: var(--radius-small);
  background: white;
  color: var(--text);
  padding: 0.8rem 0.9rem;
  outline: none;
}
input, select { min-height: 48px; }
textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: #929d9a; }
select { appearance: auto; }

.hero-row, .form-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.8rem; }
.hero-row .muted, .form-header .muted { max-width: 650px; margin-bottom: 0; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-bottom: 1.2rem; }
.stats article { padding: 1.05rem 1.2rem; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); box-shadow: 0 5px 18px rgba(83, 24, 39, 0.05); }
.stats strong { display: block; font-size: 1.6rem; letter-spacing: -0.03em; }
.stats span { color: var(--muted); font-size: 0.86rem; }

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}
.search-form { display: flex; flex: 1; gap: 0.55rem; }
.search-form input { min-width: 0; max-width: 540px; }

.inventory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.inventory-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 8px 24px rgba(83, 24, 39, 0.055); }
.photo-box { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 10; overflow: hidden; background: #f1e6e9; text-decoration: none; }
.photo-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 200ms ease; }
.inventory-card:hover .photo-box img { transform: scale(1.025); }
.photo-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: #8b747b; background: linear-gradient(135deg, #f7eff1, #eadade); font-weight: 750; }
.photo-placeholder.large { min-height: 420px; border-radius: var(--radius); }
.card-body { padding: 1rem; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.8rem; }
.card-heading h2 { margin-bottom: 0.7rem; font-size: 1.25rem; overflow-wrap: anywhere; }
.card-heading h2 a { text-decoration: none; }
.record-label { margin-bottom: 0.12rem; color: var(--muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }
.record-id { flex: 0 0 auto; padding: 0.25rem 0.45rem; border-radius: 8px; background: var(--surface-soft); color: var(--muted); font-size: 0.75rem; font-weight: 750; }
.compact-data { margin: 0; }
.compact-data div { display: grid; grid-template-columns: 66px 1fr; gap: 0.5rem; padding: 0.42rem 0; border-top: 1px solid #f1e7ea; }
dt { color: var(--muted); font-size: 0.79rem; font-weight: 700; }
dd { margin: 0; overflow-wrap: anywhere; }
.compact-data dd { font-size: 0.84rem; }
.description-preview { display: -webkit-box; min-height: 3em; margin: 0.75rem 0; overflow: hidden; color: #5d484e; font-size: 0.9rem; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.card-actions, .detail-actions, .form-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.card-actions .button { flex: 1; }

.empty-state { padding: 4rem 1rem; border: 1px dashed #d5b8c0; border-radius: var(--radius); background: rgba(255,255,255,0.68); text-align: center; }
.empty-state h2, .empty-state h1 { margin-bottom: 0.45rem; }
.empty-state p { color: var(--muted); }
.empty-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 18px; background: var(--surface-soft); color: var(--primary); font-size: 1.6rem; font-weight: 850; }
.error-page { width: min(620px, 100%); margin: 4rem auto; }
.floating-action { display: none; }

.capture-form { display: grid; gap: 1rem; }
.form-card { padding: clamp(1.1rem, 3vw, 1.7rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 7px 22px rgba(83, 24, 39, 0.05); }
.section-title { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1.25rem; }
.section-title > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 10px; background: var(--primary); color: white; font-weight: 850; }
.section-title h2 { margin: 0; font-size: 1.15rem; }
.section-title p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.86rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field-grid label:last-child { grid-column: 1 / -1; }
.upload-box { position: relative; place-items: center; min-height: 180px; padding: 1.5rem; border: 2px dashed #d8b4be; border-radius: 15px; background: #f7faf9; text-align: center; cursor: pointer; }
.upload-box:hover { border-color: var(--primary); background: var(--surface-soft); }
.upload-box input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-box > span:last-of-type { color: var(--muted); font-size: 0.82rem; font-weight: 500; }
.upload-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: white; color: var(--primary); font-size: 1.5rem; box-shadow: 0 5px 16px rgba(83, 24, 39, 0.09); }
.current-photo { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 1rem; margin-bottom: 1rem; padding: 0.8rem; border-radius: 14px; background: var(--surface-soft); }
.current-photo img { width: 130px; height: 92px; border-radius: 10px; object-fit: cover; }
.current-photo p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.photo-preview { margin-top: 1rem; }
.photo-preview img { width: min(100%, 460px); max-height: 360px; margin-bottom: 0.7rem; border-radius: 14px; object-fit: contain; background: #f1e6e9; }
.sticky-actions { justify-content: flex-end; padding: 0.85rem; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,0.95); box-shadow: var(--shadow); }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); gap: 1.2rem; align-items: start; }
.detail-photo { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #f1e6e9; }
.detail-photo > img { width: 100%; max-height: 720px; object-fit: contain; }
.detail-card { padding: clamp(1.2rem, 3vw, 1.8rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.detail-heading { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.detail-heading h1 { margin-bottom: 0; font-size: clamp(1.8rem, 4vw, 2.7rem); overflow-wrap: anywhere; }
.detail-data { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 1.2rem; }
.detail-data div { padding: 0.9rem 0; border-top: 1px solid #eee2e5; }
.detail-data div:nth-child(odd):not(.full) { padding-right: 1rem; }
.detail-data div:nth-child(even):not(.full) { padding-left: 1rem; border-left: 1px solid #eee2e5; }
.detail-data .full { grid-column: 1 / -1; }
.detail-data dt { margin-bottom: 0.25rem; }
.detail-data dd { font-weight: 620; }
.preserve-lines { white-space: pre-wrap; }
.detail-actions { padding-top: 0.3rem; }
.detail-actions form { margin: 0; }

@media (max-width: 920px) {
  .inventory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-photo > img { max-height: 560px; }
}

@media (max-width: 650px) {
  .topbar { min-height: 64px; padding: 0.65rem 0.8rem; }
  .brand small { display: none; }
  .top-actions .button-primary { display: none; }
  .page { width: min(100% - 1rem, 1180px); padding-top: 1.25rem; }
  .page-centered { width: min(100% - 1.5rem, 440px); }
  h1 { font-size: 2.1rem; }
  .hero-row, .form-header { align-items: flex-start; margin-bottom: 1.25rem; }
  .desktop-action { display: none; }
  .stats { gap: 0.45rem; }
  .stats article { padding: 0.75rem; }
  .stats strong { font-size: 1.25rem; }
  .stats span { font-size: 0.72rem; }
  .toolbar { align-items: stretch; flex-direction: column; }
  .search-form { display: grid; grid-template-columns: 1fr auto; }
  .search-form input { grid-column: 1 / -1; max-width: none; }
  .inventory-grid { grid-template-columns: 1fr; }
  .inventory-card { display: grid; grid-template-columns: 128px 1fr; }
  .photo-box { aspect-ratio: auto; min-height: 100%; }
  .card-body { min-width: 0; padding: 0.85rem; }
  .description-preview { display: none; }
  .compact-data div:nth-child(3) { display: none; }
  .card-actions .button:first-child { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  .current-photo { grid-template-columns: 92px 1fr; }
  .current-photo img { width: 92px; height: 76px; }
  .sticky-actions { position: sticky; bottom: 0.45rem; z-index: 10; }
  .sticky-actions .button { flex: 1; }
  .detail-heading { align-items: flex-start; }
  .detail-heading > .button { display: none; }
  .detail-data { grid-template-columns: 1fr; }
  .detail-data div, .detail-data div:nth-child(odd):not(.full), .detail-data div:nth-child(even):not(.full) { grid-column: 1; padding: 0.8rem 0; border-left: 0; }
  .detail-actions .button, .detail-actions form, .detail-actions form button { width: 100%; }
  .floating-action { position: fixed; right: 1rem; bottom: 1rem; z-index: 25; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--primary); color: white; box-shadow: 0 12px 28px rgba(143, 29, 53, 0.36); font-size: 2rem; line-height: 1; text-decoration: none; }
}


.photo-count {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(70, 10, 27, 0.84);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.existing-photos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}
.existing-photo {
  overflow: hidden;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}
.existing-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f1e6e9;
}
.remove-photo-control {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 750;
}
.remove-photo-control input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--danger);
}
.photo-help {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.preview-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}
.preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.preview-grid figcaption {
  overflow: hidden;
  padding: 0.45rem 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.validation-message {
  min-height: 1.4rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}
.validation-error { color: var(--danger); }

.detail-gallery {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f1e6e9;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
.gallery-grid.gallery-single { grid-template-columns: 1fr; }
.gallery-item {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: #eadade;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 500px;
  object-fit: cover;
  transition: transform 180ms ease;
}
.gallery-single .gallery-item img {
  max-height: 720px;
  object-fit: contain;
}
.gallery-item:hover img { transform: scale(1.018); }
.gallery-item span {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  padding: 0.25rem 0.48rem;
  border-radius: 999px;
  background: rgba(70, 10, 27, 0.82);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .existing-photos, .preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .field-grid label:last-child { grid-column: auto; }
  .gallery-item, .gallery-item img { min-height: 180px; }
}


.photo-source-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.photo-source {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 165px;
  padding: 1.2rem;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.photo-source:hover { transform: translateY(-2px); }
.photo-source-camera {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 24px rgba(143, 29, 53, 0.20);
}
.photo-source-camera:hover { background: var(--primary-dark); }
.photo-source-gallery { background: var(--surface-soft); }
.photo-source-gallery:hover { border-color: var(--primary); }
.photo-source > span:last-of-type {
  max-width: 270px;
  font-size: 0.81rem;
  font-weight: 550;
  opacity: 0.82;
}
.photo-source-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.45rem;
  font-weight: 900;
}
.photo-source-gallery .photo-source-icon {
  background: white;
  color: var(--primary);
  box-shadow: 0 5px 16px rgba(83, 24, 39, 0.09);
}
.photo-source input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.camera-note { margin-top: 0.7rem; }

@media (max-width: 650px) {
  .photo-source-grid { grid-template-columns: 1fr; }
  .photo-source { min-height: 132px; }
}

.signed-user {
  display: grid;
  max-width: 210px;
  line-height: 1.15;
  text-align: right;
}
.signed-user strong {
  overflow: hidden;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.signed-user small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.7rem;
}
.creator-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.75rem;
  padding: 0.65rem;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.78rem;
}
.creator-line > span:last-child {
  display: grid;
  min-width: 0;
}
.creator-line strong {
  color: var(--text);
}
.creator-line small {
  margin-top: 0.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.creator-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--primary);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}
.creator-panel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}
.creator-panel > div {
  display: grid;
}
.creator-panel > div > span,
.creator-panel small {
  color: var(--muted);
  font-size: 0.78rem;
}
.creator-panel strong {
  margin: 0.08rem 0;
}
.large-avatar {
  flex-basis: 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.08rem;
}

@media (max-width: 650px) {
  .signed-user { display: none; }
  .creator-line { padding: 0.55rem; }
}

.audit-line {
  margin: -0.35rem 0 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}
.status-bueno { background: #eaf7ef; color: #137044; }
.status-malo { background: #fff0ee; color: #a12820; }
.status-incompleto { background: #fff6df; color: #8a5a00; }
.status-desconocido { background: #eee9eb; color: #65565b; }
.status-obsoleto { background: #e8e3ea; color: #4f3b56; }
.readonly-photo { cursor: default; }
.readonly-photo-label {
  display: block;
  padding: 0.6rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  text-align: center;
}
