/* ===== Základní nastavení ===== */
:root {
    --color-bg: #020617;
    --color-bg-elevated: #020617;
    --color-border: #1f2937;
    --color-text: #e5e7eb;
    --color-text-muted: #9ca3af;
    --color-primary: #3b82f6;
    --color-primary-soft: #1d4ed8;
    --color-primary-dark: #60a5fa;
    --color-accent: #22c55e;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.6);
    --transition-fast: 0.18s ease-out;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #0b1120, #020617 55%, #000000);
    color: var(--color-text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

main {
    padding-bottom: 3rem;
}

.section {
    padding: 3rem 0;
}

.section--muted {
    background: radial-gradient(circle at top left, #020617, #020617 60%, #020617);
    backdrop-filter: blur(10px);
}

.section h2 {
    margin-top: 0;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.link-inline {
    font-size: 0.95rem;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.link-inline::after {
    content: "→";
    font-size: 0.9em;
    transition: transform var(--transition-fast);
}

.link-inline:hover::after {
    transform: translateX(2px);
}

/* ===== Hlavička & navigace ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #f9fafb;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.main-nav > ul > li > a:hover {
    background: rgba(31, 41, 55, 0.9);
    color: var(--color-text);
}

.main-nav > ul > li > a.active {
    background: radial-gradient(circle at top left, #1d4ed8, #0369a1);
    color: #e5e7eb;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

/* Dropdown submenu */
.has-submenu {
    position: relative;
}

.has-submenu > a::after {
    content: "▾";
    font-size: 0.7rem;
    margin-left: 0.35rem;
}

.submenu {
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0.35rem 0;
    border-radius: 0;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
}

.submenu li a {
    display: block;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    border-radius: 0;
    white-space: nowrap;
}

.submenu li a:hover {
    background: rgba(30, 64, 175, 0.9);
    color: #e5e7eb;
}

/* Hamburger menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    position: relative;
    transition: transform var(--transition-fast), opacity var(--transition-fast), top var(--transition-fast), bottom var(--transition-fast);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
}

.nav-toggle-label span::before {
    top: -5px;
}

.nav-toggle-label span::after {
    bottom: -5px;
}

.main-nav {
    position: absolute;
    inset-inline: 0.75rem;
    top: calc(100% + 0.35rem);
    background: rgba(15, 23, 42, 0.98);
    border-radius: 1rem;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(31, 41, 55, 1);
    display: none;
}

.nav-toggle:checked ~ .main-nav {
    display: block;
}

.nav-toggle:checked + .nav-toggle-label span {
    transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::before {
    top: 0;
    transform: rotate(90deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
    bottom: 0;
    opacity: 0;
}

/* ===== Hero sekce ===== */
.hero {
    padding: 2.25rem 0 2.75rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text h1 {
    margin: 0.4rem 0 0.6rem;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    margin: 0;
    color: var(--color-text-muted);
    max-width: 32rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    background: rgba(219, 234, 254, 0.9);
    color: #1d4ed8;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.35);
}

.hero-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-visual {
    max-width: 22rem;
    margin-left: auto;
}

.hero-card {
    border-radius: 1.4rem;
    background: radial-gradient(circle at top left, #020617, #020617 60%, #020617);
    box-shadow: var(--shadow-soft);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-product-image {
    height: 140px;
    border-radius: 1.1rem;
    background: radial-gradient(circle at 20% 0%, #0f172a, #1d4ed8 55%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.hero-product-image::before,
.hero-product-image::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 24px;
    border: 1px solid rgba(248, 250, 252, 0.45);
}

.hero-product-image::after {
    inset: 8%;
    opacity: 0.5;
}

.hero-product-text {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.hero-product-name {
    font-weight: 600;
}

.hero-product-price {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.hero-note {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.hero-product-price {
    font-weight: 700;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

/* ===== Karty ===== */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(31, 41, 55, 1);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.card--news {
    position: relative;
}

.card--product {
    padding: 0;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
    border-color: rgba(191, 219, 254, 0.9);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    color: var(--color-text-muted);
}

.card-image {
    width: 100%;
    height: 170px;
}

/* Pro vybrané produkty používáme výchozí velikost obrázků (100 % boxu) */

.card-image img,
.hero-product-image img,
.product-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hero náhled lampy na úvodní stránce – lehce „oddálený“ obrázek */
.hero-product-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    margin: auto;
}

/* Stojící lampa v seznamu produktů – mírně oddálená (přebije .card-image img) */
.card-image img.product-img--zoomed-out {
    width: 80%;
    height: 80%;
    object-fit: contain;
    object-position: center;
    margin: auto;
}

.placeholder-image {
    background: radial-gradient(circle at top left, #020617, #1d4ed8 55%, #020617);
    position: relative;
}

.placeholder-image::before,
.placeholder-image::after {
    content: "";
    position: absolute;
    inset-inline: 10%;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.35);
}

.placeholder-image::before {
    bottom: 24%;
}

.placeholder-image::after {
    bottom: 8%;
}

.card-body {
    padding: 1.15rem 1.25rem 1.2rem;
}

.card-price {
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.3rem;
}

.card-actions {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.6rem;
}

.cards-grid--news .card {
    min-height: 160px;
}

/* Pills */
.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.6rem;
}

.pill-info {
    background: #dbeafe;
    color: #1d4ed8;
}

.pill-success {
    background: #dcfce7;
    color: #15803d;
}

.pill-neutral {
    background: #e5e7eb;
    color: #374151;
}

/* ===== Tlačítka ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #f9fafb;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #111827;
    color: #f9fafb;
}

.btn-secondary:hover {
    background: #020617;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.85);
    color: #111827;
    border-color: rgba(209, 213, 219, 0.9);
}

.btn-ghost:hover {
    background: #e5e7eb;
}

.btn-full {
    width: 100%;
}

/* ===== Rozdělené rozložení ===== */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-panel {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(31, 41, 55, 1);
}

.info-panel h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.info-panel ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ===== Produkty stránka ===== */
.page-header {
    padding: 2.2rem 0 1.4rem;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
}

.breadcrumbs a {
    color: var(--color-primary);
}

.breadcrumbs span {
    margin: 0 0.2rem;
}

.page-header h1 {
    margin: 0.2rem 0 0.5rem;
    font-size: 1.7rem;
}

.page-header p {
    margin: 0;
    color: var(--color-text-muted);
}

.category-badges {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.9);
    background: rgba(239, 246, 255, 0.9);
    font-size: 0.85rem;
}

/* Detail produktu */
.product-detail {
    padding: 2.2rem 0 2.4rem;
}

.product-detail-inner {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.product-detail-gallery {
    border-radius: 1.5rem;
    padding: 1.2rem;
    background: radial-gradient(circle at top left, #020617, #020617 60%, #020617);
    box-shadow: var(--shadow-soft);
}

.product-detail-main-image {
    border-radius: 1.2rem;
    background: radial-gradient(circle at 10% 0%, #e0f2fe, #1d4ed8 45%, #020617);
    height: 220px;
    position: relative;
    overflow: hidden;
}

.lightbox-main {
    display: block;
    border-radius: 1.5rem;
    overflow: hidden;
}

.product-detail-thumbs {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.product-detail-thumbs a {
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(37, 99, 235, 0.6);
}

.product-detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.component-note {
    margin-top: 0.9rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Lightbox2 – úpravy vzhledu */
.lb-overlay {
    background: rgba(15, 23, 42, 0.9);
}

.lb-outerContainer {
    border-radius: 1.25rem;
    border: 1px solid rgba(37, 99, 235, 0.75);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.lb-data .lb-close {
    border-radius: 999px;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.9);
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.product-detail-main-image::before {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.35);
}

.product-detail-info h1 {
    margin-top: 0;
    margin-bottom: 0.2rem;
    font-size: 1.6rem;
}

.product-detail-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.7rem;
}

.product-detail-meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.product-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-detail-meta span::before {
    content: "●";
    font-size: 0.5rem;
}

.product-detail-description {
    margin-bottom: 1.3rem;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-detail-secondary-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

/* Košík */
.cart {
    padding: 2.2rem 0 2.4rem;
}

.cart-layout {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.cart-items {
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 1);
    box-shadow: var(--shadow-card);
    padding: 1.2rem 1.3rem;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
    column-gap: 0.75rem;
    row-gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
}

.cart-row + .cart-row {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(209, 213, 219, 0.9);
}

.cart-row.header {
    font-weight: 600;
    color: #374151;
}

.cart-summary {
    border-radius: 1.2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(37, 99, 235, 0.7);
    box-shadow: var(--shadow-card);
    padding: 1.25rem 1.4rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cart-summary-row.total {
    margin-top: 0.35rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.cart-summary-note {
    margin: 0.7rem 0 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Objednávkový formulář */
.order-page {
    padding: 2.2rem 0 2.8rem;
}

.order-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.order-form {
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 1);
    box-shadow: var(--shadow-card);
    padding: 1.5rem 1.6rem;
}

.order-form h2 {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.order-form p {
    margin-top: 0;
    margin-bottom: 1.3rem;
    color: var(--color-text-muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.form-field label {
    font-weight: 500;
}

.form-field span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.form-field input,
.form-field textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(55, 65, 81, 1);
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    background: rgba(15, 23, 42, 0.9);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7);
    background: #020617;
}

.form-field textarea {
    min-height: 90px;
    resize: vertical;
}

.order-side-panel {
    border-radius: 1.2rem;
    padding: 1.2rem 1.3rem;
    background: linear-gradient(135deg, #1d4ed8, #4f46e5);
    color: #e5e7eb;
    box-shadow: var(--shadow-soft);
}

.order-side-panel h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.order-side-panel ul {
    margin: 0 0 0.7rem;
    padding-left: 1.1rem;
    font-size: 0.9rem;
}

.order-side-panel p {
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
    color: #e5e7eb;
}

/* TinyMCE – úpravy vzhledu, aby zapadl do dark motivu */
.tox.tox-tinymce {
    border-radius: 0.9rem;
    border-color: rgba(31, 41, 55, 1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
}

.tox .tox-toolbar__primary {
    background: #020617;
    border-bottom: 1px solid #1f2937;
}

.tox .tox-tbtn {
    color: #e5e7eb;
}

.tox .tox-tbtn--enabled,
.tox .tox-tbtn:active {
    background: #1d4ed8;
    color: #f9fafb;
}

/* ===== Paticka ===== */
.site-footer {
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    padding: 1.4rem 0 1.8rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== Responzivita ===== */
@media (min-width: 600px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-grid--news {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .form-field--full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .nav-container {
        padding-block: 0.6rem;
    }

    .nav-toggle-label {
        display: none;
    }

    .main-nav {
        position: static;
        display: block !important;
        background: transparent;
        box-shadow: none;
        border-radius: 999px;
        border: none;
    }

    .main-nav > ul {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        padding: 0;
    }

    .has-submenu .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 180px;
        padding: 0.4rem 0;
        border-radius: 0;
        display: none;
    }

    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
        display: block;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
    }

    .hero-visual {
        max-width: 260px;
    }

    .split-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .split-layout > *:first-child {
        flex: 3;
    }

    .split-layout > *:last-child {
        flex: 2;
    }

    .product-detail-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .product-detail-gallery {
        flex: 3;
    }

    .product-detail-info {
        flex: 4;
    }

    .cart-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .cart-items {
        flex: 3;
    }

    .cart-summary {
        flex: 2;
    }

    .order-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .order-form {
        flex: 3;
    }

    .order-side-panel {
        flex: 2;
    }
}

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