/* Admin panel — minimal utility styles, neutral colors */
:root {
  --p: #0F3A8A;
  --p-dark: #0A2B66;
  --a: #06B6D4;
  --bg: #F3F4F6;
  --surface: #fff;
  --border: #E5E7EB;
  --text: #111827;
  --text-2: #4B5563;
  --text-3: #9CA3AF;
  --danger: #DC2626;
  --success: #059669;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Heebo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
h1, h2, h3 { margin: 0; }
input, textarea, button, select { font-family: inherit; }

/* -- Login -- */
.admin-login { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
.login-wrap { width: 100%; max-width: 420px; }
.login-card { background: var(--surface); padding: 40px 32px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; }
.login-logo { margin: 0 auto 16px; display: block; max-width: 260px; height: auto; }
.login-card h1 { font-size: 1.5rem; margin-bottom: 4px; }
.login-subtitle { color: var(--text-2); margin-bottom: 24px; font-size: 14px; }
.form-row { text-align: right; margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-2); }
.form-row input {
  width: 100%; padding: 12px;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 15px; background: #FAFBFC;
  transition: border-color 150ms, box-shadow 150ms;
}
.form-row input:focus { outline: 0; border-color: var(--p); background: #fff; box-shadow: 0 0 0 3px rgba(15,58,138,0.12); }
.login-submit {
  width: 100%; padding: 14px; border-radius: 10px;
  background: var(--p); color: #fff; font-weight: 700; font-size: 15px;
  border: 0; cursor: pointer; transition: background 150ms;
}
.login-submit:hover { background: var(--p-dark); }
.login-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.login-error { margin-top: 12px; color: var(--danger); font-size: 14px; min-height: 20px; }
.login-back { display: inline-block; margin-top: 16px; color: var(--text-3); font-size: 13px; text-decoration: none; }
.login-back:hover { color: var(--p); }

/* -- Header -- */
.admin-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 20px; }
.admin-header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.admin-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font-weight: 700; }
.admin-actions { display: flex; gap: 8px; }
.admin-link, .admin-logout {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; text-decoration: none; font-weight: 600;
  background: var(--bg); color: var(--text-2); border: 0; cursor: pointer; transition: background 150ms;
}
.admin-link:hover { background: var(--border); color: var(--text); }
.admin-logout { background: #FEE2E2; color: #991B1B; }
.admin-logout:hover { background: #FCA5A5; }

/* change password modal */
.pw-modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.pw-modal[hidden] { display: none; }
.pw-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); }
.pw-modal-content {
  position: relative;
  background: #fff;
  max-width: 420px; width: 100%;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: pw-in 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes pw-in { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.pw-modal-close {
  position: absolute; top: 12px; left: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg); color: var(--text-2);
  border: 0; cursor: pointer; font-size: 16px;
  transition: background 150ms;
}
.pw-modal-close:hover { background: var(--border); color: var(--text); }
.pw-modal-content h2 { margin-bottom: 4px; font-size: 1.25rem; }
.pw-modal-subtitle { color: var(--text-2); font-size: 13px; margin-bottom: 20px; }
.pw-modal-content .field { margin-bottom: 14px; }
.pw-modal-content .field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: #FAFBFC;
}
.pw-modal-content .field input:focus {
  outline: 0; border-color: var(--p); background: #fff;
  box-shadow: 0 0 0 3px rgba(15,58,138,0.12);
}
.pw-modal-actions { display: flex; gap: 8px; justify-content: flex-start; margin-top: 8px; }
.pw-modal-actions button { flex: 1; }

/* -- Tabs -- */
.admin-tabs { display: flex; gap: 4px; padding: 0 20px; background: var(--surface); border-bottom: 1px solid var(--border); overflow-x: auto; }
.admin-tab {
  padding: 14px 18px; background: transparent; border: 0; border-bottom: 3px solid transparent;
  font-size: 14px; font-weight: 600; color: var(--text-2); cursor: pointer; white-space: nowrap;
  transition: all 150ms;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.is-active { color: var(--p); border-bottom-color: var(--p); }

/* -- Main -- */
.admin-main { max-width: 1280px; margin: 0 auto; padding: 24px 20px; }
.admin-panel { display: none; }
.admin-panel.is-active { display: block; }

.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.panel-header h2 { font-size: 1.25rem; font-weight: 700; }
.panel-actions { display: flex; gap: 8px; }
.hint { color: var(--text-2); font-size: 13px; margin-bottom: 16px; background: #FFFBEB; padding: 12px; border-radius: 8px; border-right: 3px solid var(--a); }
.btn-save, .btn-secondary {
  padding: 10px 18px; border-radius: 8px; font-weight: 600; font-size: 14px;
  border: 0; cursor: pointer; transition: background 150ms;
}
.btn-save { background: var(--p); color: #fff; }
.btn-save:hover { background: var(--p-dark); }
.btn-secondary { background: var(--bg); color: var(--text-2); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); }
.btn-danger { background: #FEE2E2; color: #991B1B; padding: 8px 12px; border-radius: 6px; font-size: 13px; font-weight: 600; border: 0; cursor: pointer; }
.btn-danger:hover { background: #FCA5A5; }

.save-status { padding: 10px 14px; border-radius: 8px; font-size: 14px; margin-top: 16px; min-height: 0; transition: all 150ms; }
.save-status:empty { padding: 0; }
.save-status.success { background: #DCFCE7; color: #065F46; }
.save-status.error { background: #FEE2E2; color: #991B1B; }

/* -- Content fields -- */
.content-fields { display: flex; flex-direction: column; gap: 8px; }
.content-section {
  background: var(--surface); border-radius: 10px; border: 1px solid var(--border);
  margin-bottom: 8px; overflow: hidden;
}
.content-section-header {
  padding: 12px 16px; background: #FAFBFC; cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; color: var(--text);
}
.content-section-header:hover { background: var(--bg); }
.content-section-header svg { transition: transform 200ms; }
.content-section[data-open="true"] .content-section-header svg { transform: rotate(180deg); }
.content-section-body { padding: 16px; border-top: 1px solid var(--border); display: none; }
.content-section[data-open="true"] .content-section-body { display: flex; flex-direction: column; gap: 12px; }

.field { display: flex; flex-direction: column; gap: 4px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.field input, .field textarea {
  padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; background: #FAFBFC; font-family: inherit; line-height: 1.5;
  transition: all 150ms;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--p); background: #fff; box-shadow: 0 0 0 3px rgba(15,58,138,0.12); }
.field textarea { resize: vertical; min-height: 80px; }
.field .field-path { font-size: 11px; color: var(--text-3); font-family: ui-monospace, Menlo, monospace; }
.field-inline { flex-direction: row; align-items: center; }
.checkbox-label { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-1); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--p); cursor: pointer; padding: 0; }
.color-row { display: flex; gap: 8px; align-items: center; }
.color-row input[type="color"] { width: 48px; height: 40px; padding: 2px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; }
.color-row input[type="text"] { flex: 1; max-width: 140px; font-family: ui-monospace, Menlo, monospace; }

/* -- Rich text editor -- */
.rich-field { display: flex; flex-direction: column; gap: 6px; }
.rich-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
  padding: 6px;
  background: #F3F4F6;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
.rt-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 9px;
  background: #fff; color: var(--text);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  transition: all 150ms;
}
.rt-btn:hover { background: var(--bg); border-color: var(--p); }
.rt-btn.rt-clear { color: var(--danger); }
.rt-sep { width: 1px; height: 18px; background: var(--border); margin: 0 2px; }
.rt-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.rt-swatch-cyan { background: #67E8F9; }
.rt-swatch-blue { background: #0F3A8A; }
.rt-swatch-bluedeep { background: #1E40AF; }

.rich-editor {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #FAFBFC;
  font-family: 'Heebo', system-ui, sans-serif;
  font-size: 14px; line-height: 1.5;
  outline: none;
  transition: background 150ms;
}
.rich-editor:focus { background: #fff; border-color: var(--p); box-shadow: 0 0 0 3px rgba(15,58,138,0.12); }
.rich-editor em { font-style: normal; color: #06B6D4; font-weight: inherit; }
.rich-editor .highlight { color: #0F3A8A; font-weight: 700; }
.rich-editor .highlight-blue { color: #1E40AF; font-weight: 700; }
.rich-editor .highlight-accent { color: #06B6D4; font-weight: 700; }
.rich-editor .text-big { font-size: 1.2em; font-weight: 700; }
.rich-editor .text-small { font-size: 0.85em; }
.rich-hint { font-size: 11px; color: var(--text-3); margin: 4px 0 0; }

/* -- Lists -- */
.lists-fields { display: flex; flex-direction: column; gap: 16px; }
.list-block { background: var(--surface); border-radius: 10px; border: 1px solid var(--border); padding: 16px; }
.list-block h3 { font-size: 1rem; margin-bottom: 12px; }
.list-items { display: flex; flex-direction: column; gap: 12px; }
.list-item {
  position: relative;
  background: #FAFBFC; padding: 12px; border-radius: 8px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.list-item-controls { display: flex; gap: 4px; justify-content: flex-end; }
.list-item .btn-mini { padding: 4px 8px; font-size: 12px; border-radius: 4px; background: #fff; border: 1px solid var(--border); cursor: pointer; }
.list-item .btn-mini:hover { background: var(--bg); }
.list-add { margin-top: 8px; }

/* -- Uploads -- */
.upload-dropzone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 12px;
  background: var(--surface);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 200ms;
  margin-bottom: 20px;
  overflow: hidden;
}
.upload-dropzone:hover, .upload-dropzone:focus-visible {
  border-color: var(--p);
  background: #F8FAFF;
  outline: 0;
}
.upload-dropzone.is-dragover {
  border-color: var(--a);
  background: #ECFEFF;
  transform: scale(1.01);
}
.upload-dropzone.is-uploading { pointer-events: none; opacity: 0.7; }
.dropzone-content { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-2); pointer-events: none; }
.dropzone-content strong { font-size: 1rem; color: var(--text); }
.dropzone-content span { font-size: 12px; color: var(--text-3); }
.dropzone-content svg { color: var(--p); }
.dropzone-progress {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: absolute; inset: 0; background: rgba(255,255,255,0.95);
  align-items: center; justify-content: center;
}
.dropzone-progress[hidden] { display: none; }
.dropzone-progress-bar {
  width: 60%; height: 6px;
  background: var(--border); border-radius: 999px; overflow: hidden;
  position: relative;
}
.dropzone-progress-bar::after {
  content: ''; position: absolute; inset: 0; width: 40%;
  background: var(--p); border-radius: 999px;
  animation: progress-slide 1.2s ease-in-out infinite;
}
@keyframes progress-slide {
  0% { transform: translateX(-100%); } 100% { transform: translateX(250%); }
}
.dropzone-progress-label { font-size: 14px; font-weight: 600; color: var(--p); }

.uploads-gallery-title { font-size: 0.875rem; font-weight: 700; color: var(--text-2); margin: 16px 0 12px; }
.uploads-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }

/* Image slots — visual editor per site location */
.image-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.image-slot {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 200ms;
  position: relative;
}
.image-slot:hover { border-color: var(--p); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.image-slot.is-uploading { opacity: 0.6; pointer-events: none; }
.image-slot-preview {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.image-slot-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-slot-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 13px;
  background: linear-gradient(45deg, #F3F4F6 25%, transparent 25%, transparent 75%, #F3F4F6 75%),
              linear-gradient(45deg, #F3F4F6 25%, transparent 25%, transparent 75%, #F3F4F6 75%);
  background-size: 20px 20px; background-position: 0 0, 10px 10px;
}
.image-slot-body { padding: 12px 14px; }
.image-slot-label { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.image-slot-actions { display: flex; gap: 6px; }
.image-slot-replace {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 6px;
  background: var(--p); color: #fff;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 150ms;
  width: 100%; justify-content: center;
}
.image-slot-replace:hover { background: var(--p-dark); }

/* Advanced uploads — collapsible */
.uploads-advanced {
  margin-top: 24px;
  padding: 16px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.uploads-advanced summary {
  cursor: pointer; font-weight: 600; color: var(--text-2);
  font-size: 14px; padding: 4px; user-select: none;
}
.uploads-advanced summary:hover { color: var(--text); }
.uploads-advanced[open] summary { margin-bottom: 12px; }
.upload-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.upload-thumb { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; background: var(--bg); }
.upload-meta { padding: 10px; }
.upload-name { font-size: 12px; color: var(--text-2); margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-actions { display: flex; gap: 4px; }
.upload-actions button {
  flex: 1; padding: 6px; font-size: 11px; border-radius: 4px;
  background: var(--bg); border: 1px solid var(--border); cursor: pointer;
}
.upload-actions button:hover { background: var(--border); }
.upload-actions .btn-delete { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }

/* -- Promos -- */
.promos-list { display: flex; flex-direction: column; gap: 16px; }
.promo-card {
  background: var(--surface); border-radius: 12px; border: 1px solid var(--border);
  padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.promo-card .field-row-full { grid-column: 1 / -1; }
.promo-card .promo-card-header {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light, #F3F4F6);
}
.promo-card .promo-enabled { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.promo-card .field input[type="date"] {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: #FAFBFC;
  font-family: inherit;
}
.promo-card .field input[type="date"]:focus {
  outline: 0;
  border-color: var(--p);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,58,138,0.12);
}
.promo-card .promo-cta-type {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: #FAFBFC;
  font-family: inherit;
}

/* on/off toggle */
.promo-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none; font-weight: 700;
}
.promo-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.promo-toggle-slider {
  position: relative;
  width: 44px; height: 24px;
  background: #D1D5DB;
  border-radius: 999px;
  transition: background 200ms;
  flex-shrink: 0;
}
.promo-toggle-slider::before {
  content: ''; position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform 200ms;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.promo-toggle input:checked + .promo-toggle-slider { background: var(--success); }
.promo-toggle input:checked + .promo-toggle-slider::before { transform: translateX(-20px); }
.promo-toggle input:focus-visible + .promo-toggle-slider { box-shadow: 0 0 0 3px rgba(15,58,138,0.2); }
.promo-toggle-label { font-size: 14px; }

/* promo image inside card */
.promo-image-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--bg);
}
.promo-image-preview {
  width: 100px; height: 70px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.promo-image-empty {
  width: 100px; height: 70px;
  background: linear-gradient(45deg, #E5E7EB 25%, transparent 25%, transparent 75%, #E5E7EB 75%),
              linear-gradient(45deg, #E5E7EB 25%, transparent 25%, transparent 75%, #E5E7EB 75%);
  background-size: 12px 12px; background-position: 0 0, 6px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}
.promo-image-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.promo-image-upload {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 6px;
  background: var(--p); color: #fff;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 150ms;
}
.promo-image-upload:hover { background: var(--p-dark); }
.promo-image-remove {
  padding: 8px 14px; border-radius: 6px;
  background: var(--bg); color: var(--danger);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); cursor: pointer;
  transition: background 150ms;
}
.promo-image-remove:hover { background: #FEE2E2; }

/* -- Toast notifications -- */
.toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  width: 100%;
  max-width: 480px;
  padding: 0 16px;
}
.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 8px 16px rgba(0,0,0,0.1);
  font-size: 15px;
  font-weight: 700;
  animation: toast-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 6px solid var(--p);
  border-block: 1px solid #E5E7EB;
  border-inline-start: 1px solid #E5E7EB;
}
.toast.is-leaving { animation: toast-out 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.toast.success { border-right-color: var(--success); color: #065F46; background: linear-gradient(90deg, #ECFDF5 0%, #fff 80%); }
.toast.error { border-right-color: var(--danger); color: #991B1B; background: linear-gradient(90deg, #FEF2F2 0%, #fff 80%); }
.toast.info { border-right-color: var(--p); color: #1E3A8A; background: linear-gradient(90deg, #EFF6FF 0%, #fff 80%); }
.toast-icon { flex-shrink: 0; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.info .toast-icon { color: var(--p); }
.toast-text { flex: 1; line-height: 1.4; }
.toast-close {
  flex-shrink: 0; width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px; background: transparent; color: currentColor;
  opacity: 0.6; cursor: pointer; transition: opacity 150ms;
}
.toast-close:hover { opacity: 1; }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(-20px) scale(0.95); }
}

/* button loading state */
.btn-save.is-loading,
.btn-secondary.is-loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
  padding-inline-start: 36px;
}
.btn-save.is-loading::before,
.btn-secondary.is-loading::before {
  content: '';
  position: absolute;
  inset-inline-start: 12px;
  top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* responsive */
@media (max-width: 768px) {
  .promo-card { grid-template-columns: 1fr; }
}
