/* ========================================================================
   ReDomain - design system
   ======================================================================== */
:root {
    --primary: #4f46e5;
    --primary-600: #4338ca;
    --primary-700: #3730a3;
    --accent: #7c3aed;
    --success: #059669;
    --warning: #f59e0b;
    --danger: #dc2626;
    --hot: #ef4444;
    --growth: #10b981;

    --bg: #f6f7fb;
    --bg-soft: #ffffff;
    --surface: #ffffff;
    --border: #e5e7eb;
    --border-strong: #cbd5e1;

    --ink: #0f172a;
    --ink-2: #334155;
    --muted: #64748b;
    --muted-2: #94a3b8;

    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
    --shadow: 0 4px 14px rgba(15,23,42,0.06);
    --shadow-lg: 0 24px 48px -12px rgba(15,23,42,0.18);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --container: 1180px;

    --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-ui);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-600); }
img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 56px 0;
}
.section-tight {
    padding: 32px 0;
}
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}
.section-sub {
    color: var(--muted);
    margin: 0 0 28px 0;
}

/* ===== Top bar (utilités) ===== */
.topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.78rem;
    padding: 6px 0;
}
.topbar .row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #cbd5e1; }
.topbar .pill {
    background: rgba(255,255,255,0.08);
    padding: 2px 10px;
    border-radius: 999px;
    color: #fff;
}

/* ===== Header ===== */
.header {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    background: rgba(255,255,255,0.85);
}
.header-content {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.logo .dot {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: inline-block;
    box-shadow: 0 6px 16px -4px rgba(79,70,229,0.5);
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.nav a {
    padding: 8px 14px;
    color: var(--ink-2);
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav a:hover { background: var(--bg); color: var(--ink); }
.nav .nav-cta {
    background: var(--ink);
    color: #fff;
    padding: 9px 16px;
    border-radius: 10px;
    font-weight: 600;
}
.nav .nav-cta:hover { background: var(--primary); color: #fff; }
.nav .nav-cta.primary { background: var(--primary); }
.nav .nav-cta.primary:hover { background: var(--primary-600); }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    color: var(--ink);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(1200px 500px at 80% -10%, rgba(124,58,237,0.18), transparent 60%),
      radial-gradient(800px 400px at -10% 0%, rgba(79,70,229,0.18), transparent 60%),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    padding: 72px 0 48px;
    border-bottom: 1px solid var(--border);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(79,70,229,0.08);
    color: var(--primary);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 18px 0;
    font-weight: 800;
}
.hero h1 .grad {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero p.lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin: 0 0 28px 0;
    max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
    max-width: 540px;
}
.hero-stat .num {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.hero-stat .lab { color: var(--muted); font-size: 0.85rem; }

.hero-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 22px;
    transform: rotate(0.6deg);
    border: 1px solid var(--border);
}
.hero-card .img {
    height: 220px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
}
.hero-card .meta { display: flex; justify-content: space-between; margin-top: 14px; }
.hero-card .title { font-weight: 700; font-size: 1.15rem; }
.hero-card .price {
    background: rgba(5,150,105,0.1);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}
.hero-card .stats { display: flex; gap: 20px; margin-top: 14px; }
.hero-card .stats .it { font-size: 0.85rem; color: var(--muted); }
.hero-card .stats .it b { color: var(--ink); display: block; font-size: 1.05rem; }

/* ===== Boutons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 16px -8px rgba(79,70,229,0.5);
}
.btn-primary:hover { background: var(--primary-600); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1e293b; color: #fff; }
.btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-ghost {
    background: transparent;
    color: var(--ink-2);
}
.btn-ghost:hover { background: var(--bg); color: var(--ink); }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ===== Search bar ===== */
.searchbar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: var(--shadow);
    align-items: center;
}
.searchbar input, .searchbar select {
    border: 0;
    padding: 12px 14px;
    background: transparent;
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
    color: var(--ink);
    outline: none;
    font-family: inherit;
}
.searchbar input::placeholder { color: var(--muted-2); }
.searchbar select { flex: 0 0 auto; min-width: 130px; }
.searchbar .divider { width: 1px; height: 28px; background: var(--border); }
.searchbar .btn-primary { padding: 12px 22px; }

/* ===== Cartes business ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card-biz {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.card-biz:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: inherit;
}
.card-biz .cover {
    height: 180px;
    background: linear-gradient(135deg, #475569, #1e293b);
    background-size: cover;
    background-position: center;
    position: relative;
}
.card-biz .badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex; gap: 6px;
}
.badge {
    padding: 4px 10px;
    background: rgba(255,255,255,0.96);
    color: var(--ink);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}
.badge.hot   { background: var(--hot); color: #fff; }
.badge.growth { background: var(--growth); color: #fff; }
.badge.feat  { background: var(--ink); color: #fff; }
.badge.sold  { background: var(--danger); color: #fff; }
.badge.gold  { background: linear-gradient(135deg, #f59e0b, #b45309); color: #fff; }

.card-biz .body { padding: 18px 18px 14px; flex: 1; display: flex; flex-direction: column; }
.card-biz .sector {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.card-biz .name { font-weight: 700; font-size: 1.18rem; margin: 6px 0 4px; letter-spacing: -0.01em; }
.card-biz .desc { color: var(--muted); font-size: 0.92rem; margin: 0 0 14px; line-height: 1.5; flex: 1; }
.card-biz .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.card-biz .st { background: var(--bg); padding: 10px 12px; border-radius: 10px; }
.card-biz .st .lab { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.card-biz .st .val { font-weight: 700; font-size: 1rem; color: var(--ink); margin-top: 2px; }

.card-biz .foot {
    border-top: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-soft);
}
.card-biz .price-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}
.card-biz .price-tag.sold {
    color: var(--danger);
}
.card-biz .meta-stat {
    display: flex; gap: 12px; color: var(--muted);
    font-size: 0.8rem;
}
.card-biz .meta-stat .it { display: inline-flex; align-items: center; gap: 4px; }

/* ===== Filtres marketplace ===== */
.filters-bar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.chip {
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--ink-2);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
}
.chip:hover { background: rgba(79,70,229,0.08); color: var(--primary); }
.chip.active { background: var(--ink); color: #fff; }

/* ===== Sections "Comment ça marche" ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.step {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    position: relative;
}
.step .num {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ===== Page business ===== */
.biz-hero {
    padding: 32px 0 24px;
}
.crumbs {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary); }
.biz-hero .title-row {
    display: flex; gap: 24px; align-items: flex-start;
    flex-wrap: wrap;
}
.biz-hero h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin: 0;
    letter-spacing: -0.02em;
}
.biz-hero .tag { color: var(--muted); font-size: 1.05rem; margin-top: 4px; }
.biz-hero .price-block {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 16px 22px;
    border-radius: var(--radius);
    text-align: right;
    box-shadow: 0 12px 24px -10px rgba(79,70,229,0.45);
}
.biz-hero .price-block .lab { font-size: 0.78rem; text-transform: uppercase; opacity: 0.85; letter-spacing: 0.06em; }
.biz-hero .price-block .val { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
.biz-hero .price-block.sold { background: var(--danger); }

.biz-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-top: 32px;
}
.biz-cover {
    height: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #1e293b;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.kpi {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}
.kpi .lab { color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.kpi .val { font-size: 1.4rem; font-weight: 700; margin-top: 4px; letter-spacing: -0.01em; }

.biz-section {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 20px;
}
.biz-section h2 {
    font-size: 1.2rem;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 10px;
}
.biz-section h2::before {
    content: ""; display: inline-block;
    width: 4px; height: 18px; border-radius: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}
.biz-section .md p { margin: 0 0 10px; color: var(--ink-2); line-height: 1.65; }
.biz-section .md ul { margin: 0; padding-left: 22px; color: var(--ink-2); line-height: 1.7; }

.included-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.included-list .it {
    display: flex; align-items: center; gap: 10px;
    padding: 12px;
    background: var(--bg);
    border-radius: 10px;
    font-weight: 500;
}
.included-list .it .dot {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(79,70,229,0.12);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Sidebar */
.biz-side {
    position: sticky;
    top: 90px;
    align-self: start;
    display: grid;
    gap: 16px;
}
.side-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}
.side-card h3 { margin: 0 0 12px; font-size: 1.05rem; }
.side-card p { color: var(--muted); font-size: 0.9rem; margin: 0 0 14px; }

/* Bloc verrouillé */
.locked {
    position: relative;
    overflow: hidden;
}
.locked .blur {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
    color: var(--muted);
}
.locked .veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.95) 70%);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 28px;
}
.locked .veil .panel {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 22px;
    width: 100%;
    max-width: 460px;
    text-align: center;
}
.locked .veil h4 { margin: 0 0 6px; font-size: 1.05rem; }
.locked .veil p { color: var(--muted); margin: 0 0 14px; font-size: 0.9rem; }

/* ===== Forms ===== */
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--ink-2); margin-bottom: 6px; }
.input, .textarea, .select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-strong);
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.18);
}
.textarea { min-height: 110px; resize: vertical; }

/* ===== Modale ===== */
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,23,42,0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
}
.modal-backdrop.show { display: flex; }
.modal {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 480px;
    padding: 26px;
    box-shadow: var(--shadow-lg);
    animation: pop 0.2s ease;
}
.modal h3 { margin: 0 0 14px; font-size: 1.2rem; }
.modal .close-x {
    float: right; cursor: pointer; border: 0; background: transparent; font-size: 1.4rem; color: var(--muted);
}
@keyframes pop { from { transform: translateY(8px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===== Toast ===== */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; display: grid; gap: 10px; z-index: 1200; }
.toast {
    background: var(--ink); color: #fff;
    padding: 12px 18px; border-radius: 10px;
    box-shadow: var(--shadow-lg);
    animation: slide-in 0.2s ease;
    max-width: 360px;
    font-size: 0.9rem;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
@keyframes slide-in { from { transform: translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ===== Footer ===== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 56px 0 24px;
    margin-top: 80px;
}
.footer h4 { color: #fff; margin: 0 0 12px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer a { color: #cbd5e1; display: block; padding: 4px 0; font-size: 0.92rem; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.footer .brand .dot {
    width: 22px; height: 22px; border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.footer .baseline { color: #94a3b8; font-size: 0.9rem; max-width: 320px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 32px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: #64748b; font-size: 0.85rem; }

/* ===== Etats vides ===== */
.empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    color: var(--muted);
}
.empty h3 { color: var(--ink); margin: 0 0 6px; }

/* ===== Tables admin ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.table th, .table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.table th {
    background: var(--bg);
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: var(--bg-soft); }
.tag {
    padding: 2px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
    background: var(--bg); color: var(--ink-2);
}
.tag.active { background: rgba(5,150,105,0.12); color: var(--success); }
.tag.pending { background: rgba(245,158,11,0.14); color: #92400e; }
.tag.sold { background: rgba(220,38,38,0.12); color: var(--danger); }
.tag.disabled { background: #e2e8f0; color: var(--muted); }
.tag.draft { background: #e2e8f0; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card { transform: none; max-width: 460px; margin: 0 auto; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .biz-grid { grid-template-columns: 1fr; }
    .biz-side { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .nav { display: none; gap: 0; flex-direction: column; align-items: stretch; padding: 12px 0; width: 100%; }
    .nav.open { display: flex; }
    .nav a { padding: 12px 0; }
    .menu-toggle { display: inline-flex; }
    .header-content { flex-wrap: wrap; }
    .cards { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 48px 0 24px; }
    .section { padding: 36px 0; }
    .searchbar { flex-direction: column; align-items: stretch; }
    .searchbar .divider { display: none; }
    .biz-hero .title-row { flex-direction: column; }
    .biz-hero .price-block { width: 100%; text-align: left; }
    .included-list { grid-template-columns: 1fr; }
    .kpi-grid { grid-template-columns: 1fr 1fr; }
}
