:root {
    --bg: #f5efe6;
    --panel: #fffdf9;
    --ink: #1f2730;
    --muted: #5e6872;
    --line: #dccfbd;
    --accent: #0e8f74;
    --accent-dark: #0a6a56;
    --accent-soft: #dff5ef;
    --alert: #9f3d2c;
    --shadow: 0 18px 50px rgba(31, 39, 48, 0.08);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14, 143, 116, 0.14), transparent 26%),
        linear-gradient(180deg, #f7f2e9 0%, #f2ece2 100%);
    color: var(--ink);
}

.shell {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 24px 16px 56px;
}

.shell.narrow {
    width: min(100%, 620px);
}

.hero,
.panel,
.support-strip {
    background: var(--panel);
    border: 1px solid rgba(220, 207, 189, 0.85);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.language-strip {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(220, 207, 189, 0.85);
    box-shadow: var(--shadow);
}

.language-strip-label {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.language-chip {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.language-chip.is-active {
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-color: rgba(14, 143, 116, 0.35);
}

.hero {
    padding: 24px;
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.support-strip {
    padding: 18px 20px;
    margin-top: 18px;
}

.support-strip p {
    margin: 0;
    color: var(--muted);
}

.support-strip {
    display: grid;
    gap: 8px;
}

.support-strip a {
    color: var(--accent-dark);
    font-weight: 700;
}

.support-strip-standalone {
    margin-bottom: 18px;
}

.hero h1,
.panel h1,
.panel h2 {
    margin: 0;
    font-family: "Fraunces", serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
}

.eyebrow,
.step-label {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.lede,
.supporting {
    color: var(--muted);
    line-height: 1.55;
}

.field-wrap {
    display: flex;
    flex-direction: column;
}

.char-counter {
    display: block;
    font-size: 0.72rem;
    text-align: right;
    margin-top: 5px;
    color: #bbb;
    transition: color 0.2s;
}
.char-counter[data-state="warn"] {
    color: #e67e22;
}
.char-counter[data-state="critical"] {
    color: #c0392b;
    font-weight: 600;
}

.char-error {
    display: block;
    font-size: 0.75rem;
    color: #c0392b;
    font-weight: 600;
    margin-top: 4px;
}

.brand-lockup {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.brand-lockup.compact {
    margin-bottom: 10px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 6px;
}

.brand-name,
.brand-motto {
    margin: 0;
}

.brand-name {
    font-weight: 700;
}

.brand-motto {
    color: var(--muted);
    line-height: 1.4;
}

.price-badge {
    justify-self: start;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
}

.panel {
    padding: 24px 18px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.choice-grid,
.download-grid {
    display: grid;
    gap: 12px;
}

.voice-intent-row {
    margin-top: 16px;
}

.voice-step1-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.voice-step1-wrap .field-input {
    padding-right: 48px;
    cursor: default;
}

.voice-inline-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--accent);
    border-radius: 50%;
}

.voice-inline-btn:hover {
    background: var(--accent-soft);
}

.choice-card,
.primary-button,
.secondary-button,
.ghost-button,
.button-link {
    border: 0;
    border-radius: 18px;
    padding: 15px 18px;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.choice-card {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    min-height: 60px;
}

.choice-card.selected {
    outline: 2px solid var(--accent);
    background: var(--accent-soft);
}

.primary-button {
    background: var(--accent);
    color: #fff;
    font-weight: 700;
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--accent-dark);
}

.secondary-button,
.button-link.secondary-button {
    background: #efe5d8;
    color: var(--ink);
}

.ghost-button,
.button-link.ghost-button {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
}

.stack {
    display: grid;
    gap: 12px;
}

.field-label {
    font-weight: 700;
}

.field-input {
    width: 100%;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
}

textarea.field-input {
    resize: vertical;
}

select.field-input {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 48px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23555' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px 20px;
    cursor: pointer;
}

.nav-row,
.action-row,
.inline-field,
.admin-top {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-row {
    margin-top: 20px;
}

.action-row {
    margin-top: 14px;
}

.admin-top {
    margin-top: 16px;
}

/* Step headings need breathing room below */
.step h2 {
    margin-bottom: 14px;
}

/* Step 4: discount stack and save-later toggle need top spacing */
.review-card + .stack,
.stack + .toggle {
    margin-top: 16px;
}

.step > .toggle {
    margin-top: 14px;
}

.step .toggle + .supporting {
    margin-top: 4px;
    margin-bottom: 0;
}

.wallet-checkout {
    margin-top: 18px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(14, 143, 116, 0.18);
    background: linear-gradient(180deg, rgba(223, 245, 239, 0.65) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.wallet-checkout-copy {
    margin: 0 0 12px;
}

.wallet-checkout-element {
    min-height: 44px;
}

.wallet-checkout .notice {
    margin-top: 12px;
    margin-bottom: 0;
}

.preview-box {
    display: grid;
    place-items: center;
    min-height: 280px;
    background: linear-gradient(180deg, #fcfaf6 0%, #f5efe6 100%);
    border: 1px dashed var(--line);
    border-radius: 24px;
    padding: 18px;
}

.qr-preview canvas,
.qr-preview svg {
    width: min(100%, 280px);
    height: auto;
    display: block;
}

.customize,
.review-card,
.receipt-card,
.results-table {
    margin-top: 16px;
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
}

.home-retrieve-card {
    display: grid;
    gap: 14px;
}

.home-retrieve-card .step-label,
.home-retrieve-card .field-label,
.home-retrieve-card .supporting {
    margin-bottom: 0;
}

.home-retrieve-copy {
    display: grid;
    gap: 8px;
}

.home-retrieve-link {
    justify-self: start;
}

.toggle,
.file-drop {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
}

.line-items {
    display: grid;
    gap: 10px;
}

.line-item,
.total-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.total-row {
    border-top: 1px solid var(--line);
    margin-top: 14px;
    padding-top: 14px;
    font-size: 1.06rem;
}

.notice {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fce9e5;
    color: var(--alert);
    display: none;
}

.notice.notice-visible,
.notice:not(.hidden) {
    display: block;
}

.voice-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(31, 39, 48, 0.58);
    padding: 20px;
    display: grid;
    place-items: center;
}

.voice-overlay-card {
    width: min(100%, 520px);
    background: var(--panel);
    border: 1px solid rgba(220, 207, 189, 0.85);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 24px 18px;
}

.voice-orb {
    width: 112px;
    height: 112px;
    margin: 18px auto 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 35% 30%, #40c2a5, #0e8f74 70%);
    display: grid;
    place-items: center;
    box-shadow: 0 16px 36px rgba(14, 143, 116, 0.28);
}

.voice-orb.listening {
    animation: pulse-orb 1.2s infinite ease-in-out;
}

.voice-orb-inner {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #fff;
    position: relative;
}

.voice-orb-inner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    width: 12px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
}

.voice-overlay-status {
    text-align: center;
    color: var(--muted);
    min-height: 1.5em;
}

.voice-transcript {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
}

.voice-transcript p:last-child {
    margin-bottom: 0;
}

@keyframes pulse-orb {
    0% { transform: scale(1); box-shadow: 0 16px 36px rgba(14, 143, 116, 0.28); }
    50% { transform: scale(1.05); box-shadow: 0 22px 44px rgba(14, 143, 116, 0.35); }
    100% { transform: scale(1); box-shadow: 0 16px 36px rgba(14, 143, 116, 0.28); }
}

.cooldown-note {
    color: var(--muted);
    font-size: 0.95rem;
}

.voice-field {
    display: grid;
    gap: 8px;
}

.voice-input-wrap {
    position: relative;
}

.voice-input-wrap .field-input {
    padding-right: 60px;
}

textarea.field-input.voice-enabled {
    min-height: 160px;
}

.voice-trigger {
    position: absolute;
    top: 26px;
    right: 12px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    line-height: 1;
}

.voice-trigger:hover,
.voice-trigger:focus-visible {
    background: var(--accent-soft);
}

.voice-trigger svg {
    width: 18px;
    height: 18px;
}

.voice-input-wrap:has(textarea) .voice-trigger {
    top: 12px;
    transform: none;
}

.voice-field-status {
    color: var(--muted);
    font-size: 0.92rem;
    min-height: 1.3em;
}

.success-discount {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(14, 143, 116, 0.22);
    background: linear-gradient(180deg, rgba(223, 245, 239, 0.78) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.success-discount h2,
.success-discount h3 {
    margin: 0 0 8px;
}

.success-discount-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.success-discount-code {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(14, 143, 116, 0.22);
    color: var(--ink);
    font: 700 1rem/1 "DM Sans", sans-serif;
    letter-spacing: 0.08em;
}

.honeypot,
.hidden {
    display: none !important;
}

.results-table {
    overflow-x: auto;
}

.legal-panel h2 {
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.legal-copy p {
    color: var(--muted);
    line-height: 1.65;
    margin-top: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

th,
td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
    .hero {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ================================================
   CUSTOMIZATION STUDIO
   ================================================ */

.customize-toggle-btn {
    border: 0;
    border-radius: 18px;
    padding: 15px 20px;
    font: inherit;
    cursor: pointer;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: background 0.15s;
}

.customize-toggle-btn:hover,
.customize-toggle-btn:focus-visible {
    background: #2d3a46;
}

/* Scan confidence bar */
.scan-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
}

.scan-confidence--good {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.scan-confidence--warn {
    background: #fef9e7;
    color: #9a6600;
}

.confidence-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: currentColor;
}

/* Customization panel sections */
.customize {
    display: grid;
    gap: 0;
    padding: 0;
}

.customize-section {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.customize-section:last-child {
    border-bottom: none;
}

.customize-section-label {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cs-header .customize-section-label {
    margin: 0;
}

.cs-hint {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.price-pill {
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.optional-tag {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Quick preset cards */
.preset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.preset-card {
    border: 2px solid var(--line);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font: inherit;
    position: relative;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.preset-card:hover {
    border-color: var(--accent);
    box-shadow: 0 2px 10px rgba(14, 143, 116, 0.15);
}

.preset-card--active {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.preset-thumb {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    gap: 2px;
}

.pt-qr {
    width: 30px;
    height: 30px;
    border: 3px solid #111;
    border-radius: 3px;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0.15) 0px,
            rgba(0,0,0,0.15) 3px,
            transparent 3px,
            transparent 7px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.15) 0px,
            rgba(0,0,0,0.15) 3px,
            transparent 3px,
            transparent 7px
        );
}

.pt-frame--simple {
    border: 2px solid #888;
    border-radius: 3px;
    padding: 3px;
}

.pt-frame--rounded {
    border: 2px solid #888;
    border-radius: 10px;
    padding: 4px;
}

.pt-frame--business {
    border: 2px solid #1a3a6b;
    border-radius: 5px;
    padding: 3px 3px 12px;
    position: relative;
}

.pt-frame--business::after {
    content: "SCAN";
    position: absolute;
    bottom: 1px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 5.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a3a6b;
}

.preset-name {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--ink);
}

.preset-badge {
    position: absolute;
    top: -8px;
    right: -4px;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
}

/* Color swatches */
.swatch-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.swatch:hover {
    transform: scale(1.12);
}

.swatch--active {
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--ink);
}

/* Frame picker */
.frame-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.frame-card {
    border: 2px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--ink);
    transition: border-color 0.15s;
}

.frame-card:hover {
    border-color: var(--accent);
}

.frame-card--active {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.frame-thumb {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
    gap: 2px;
}

.frame-qr-mock {
    width: 26px;
    height: 26px;
    border-radius: 2px;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0.12) 0px,
            rgba(0,0,0,0.12) 2px,
            transparent 2px,
            transparent 6px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0,0,0,0.12) 0px,
            rgba(0,0,0,0.12) 2px,
            transparent 2px,
            transparent 6px
        ),
        #e0e0e0;
}

.frame-thumb--simple {
    border: 2px solid #888;
    border-radius: 3px;
    padding: 3px;
}

.frame-thumb--rounded {
    border: 2px solid #888;
    border-radius: 10px;
    padding: 4px;
}

.frame-thumb--business {
    border: 2px solid #1a3a6b;
    border-radius: 5px;
    padding: 3px 3px 0;
    height: 50px;
    justify-content: flex-start;
    padding-top: 4px;
}

.frame-label-mock {
    font-size: 5px;
    font-weight: 700;
    color: #1a3a6b;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1;
    padding-bottom: 2px;
}

/* Logo upload */
.logo-drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 90px;
    border: 2px dashed var(--line);
    border-radius: 16px;
    background: #fafafa;
    cursor: pointer;
    text-align: center;
    padding: 16px;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
}

.logo-drop-zone:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.logo-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.logo-drop-icon {
    font-size: 1.5rem;
    color: var(--accent);
    line-height: 1;
}

.logo-drop-text {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.9rem;
    margin: 0;
}

.logo-drop-hint {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

.logo-preview-area {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-preview-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 4px;
}

.shape-row {
    display: flex;
    gap: 8px;
}

.shape-btn {
    border: 2px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    cursor: pointer;
    transition: border-color 0.15s;
}

.shape-btn:hover {
    border-color: var(--accent);
}

.shape-btn--active {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.remove-logo-btn {
    background: none;
    border: none;
    color: var(--alert);
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
}

.remove-logo-btn:hover {
    background: #fce9e5;
}

/* QR frame wrappers (live preview) */
.qr-frame {
    display: inline-block;
    position: relative;
    transition: padding 0.2s, border-radius 0.2s;
}

.qr-frame--none {
    border: none;
    padding: 0;
    background: none;
}

.qr-frame--simple {
    border: 4px solid #111;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
}

.qr-frame--rounded {
    border: 4px solid #111;
    padding: 12px;
    background: #fff;
    border-radius: 22px;
}

.qr-frame--business {
    border: 3px solid #1a3a6b;
    padding: 12px 12px 42px;
    background: #fff;
    border-radius: 14px;
}

.qr-frame-label {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1a3a6b;
}

.qr-frame--business .qr-frame-label {
    display: block;
}

/* Responsive tweaks */
@media (max-width: 400px) {
    .preset-grid,
    .frame-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .swatch {
        width: 38px;
        height: 38px;
    }
}
