/* NewManic — base styles */
@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700,800|plus-jakarta-sans:600,700,800&display=swap');

:root {
  --navy:        #0d1117;
  --navy2:       #161b22;
  --navy-mid:    #21262d;
  --blue:        #2563eb;
  --blue-light:  #eff6ff;
  --blue-dark:   #1d4ed8;
  --orange:      #f97316;
  --orange-light:#fff7ed;
  --orange-dark: #ea580c;
  --green:       #16a34a;
  --green-light: #dcfce7;
  --red:         #dc2626;
  --red-light:   #fee2e2;
  --bg:          #f8f9fb;
  --white:       #ffffff;
  --text:        #111827;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 1px 8px rgba(0,0,0,.08);
  --shadow-lg:   0 4px 24px rgba(0,0,0,.12);
  --font-base:   'Inter', system-ui, sans-serif;
  --font-head:   'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-base); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 100; }
.header-top { background: var(--navy2); padding: .35rem 1.25rem; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: rgba(255,255,255,.55); }
.header-top a { color: rgba(255,255,255,.55); }
.header-top a:hover { color: #fff; }
.header-top .ht-right { display: flex; gap: 1.25rem; align-items: center; }
.header-main { max-width: 1280px; margin: 0 auto; padding: .85rem 1.25rem; display: flex; align-items: center; gap: 2rem; }
.site-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; flex-shrink: 0; }
.site-logo span { color: var(--orange); }
.header-search { flex: 1; max-width: 500px; position: relative; }
.header-search input { width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 6px; padding: .55rem 1rem .55rem 2.5rem; color: #fff; font-size: .88rem; font-family: var(--font-base); }
.header-search input::placeholder { color: rgba(255,255,255,.4); }
.header-search svg { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.4); }
.header-actions { display: flex; gap: 1rem; align-items: center; margin-left: auto; }
.header-actions a { color: rgba(255,255,255,.75); font-size: .8rem; display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.header-actions a:hover { color: #fff; }
.header-actions a svg { color: rgba(255,255,255,.7); }
.btn-basket { background: var(--orange); color: #fff !important; border-radius: 6px; padding: .45rem .9rem; font-weight: 700; display: flex; align-items: center; gap: .4rem; font-size: .82rem; }
.btn-basket:hover { background: var(--orange-dark) !important; }

.site-nav { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.06); }
.site-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; display: flex; gap: 0; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: .3rem; padding: .7rem .95rem; color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 600; transition: color .15s, background .15s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.active { border-bottom: 2px solid var(--orange); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--blue); color: #fff; text-align: center; padding: .55rem 1rem; font-size: .78rem; font-weight: 600; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-bar span { display: flex; align-items: center; gap: .4rem; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%); color: #fff; padding: 4rem 1.25rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.18) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
.hero-tag { display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.3); border-radius: 50px; padding: .3rem .75rem; margin-bottom: 1.25rem; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 2rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--blue); color: #fff; padding: .85rem 2rem; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: background .15s, transform .15s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.4); color: #fff; padding: .85rem 2rem; border-radius: 8px; font-weight: 700; font-size: .95rem; transition: border-color .15s, background .15s; display: inline-flex; align-items: center; gap: .5rem; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── SECTION ── */
.section { padding: 3.5rem 1.25rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.75rem; gap: 1rem; flex-wrap: wrap; }
.section-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--text); }
.section-link { font-size: .82rem; color: var(--blue); font-weight: 600; }
.section-link:hover { color: var(--blue-dark); text-decoration: underline; }
.section-alt { background: #fff; }

/* ── CATEGORY TILES ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.cat-tile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: .6rem; transition: box-shadow .2s, transform .2s; }
.cat-tile:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.cat-tile-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.cat-tile-name { font-size: .82rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.cat-tile-count { font-size: .7rem; color: var(--muted); }

/* ── PRODUCT CARD ── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.prod-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.prod-card-img { background: #f1f5f9; height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.prod-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.prod-badge { position: absolute; top: .6rem; left: .6rem; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: .22rem .55rem; border-radius: 4px; }
.badge-sale { background: var(--red); color: #fff; }
.badge-new { background: var(--blue); color: #fff; }
.badge-top { background: var(--orange); color: #fff; }
.prod-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.prod-brand { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.prod-name { font-weight: 700; font-size: .92rem; color: var(--text); line-height: 1.35; margin-bottom: .4rem; flex: 1; }
.prod-spec { font-size: .72rem; color: var(--muted); margin-bottom: .75rem; line-height: 1.5; }
.prod-price-row { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .75rem; }
.prod-price { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.prod-price-old { font-size: .82rem; color: var(--muted); text-decoration: line-through; }
.prod-price-save { font-size: .7rem; font-weight: 700; color: var(--red); }
.prod-delivery { font-size: .7rem; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: .3rem; margin-bottom: .75rem; }
.btn-add { display: block; width: 100%; background: var(--blue); color: #fff; text-align: center; padding: .65rem; border-radius: 6px; font-weight: 700; font-size: .85rem; transition: background .15s; border: none; cursor: pointer; font-family: var(--font-base); }
.btn-add:hover { background: var(--blue-dark); }

/* ── SIZE FILTER ── */
.size-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.size-btn { background: #fff; border: 1.5px solid var(--border); border-radius: 6px; padding: .4rem .85rem; font-size: .8rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .15s; }
.size-btn:hover, .size-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── BRAND BAR ── */
.brand-grid { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.brand-logo { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: .85rem 1.5rem; display: flex; align-items: center; justify-content: center; min-width: 110px; height: 56px; transition: box-shadow .2s; }
.brand-logo:hover { box-shadow: var(--shadow-lg); }
.brand-logo img { max-height: 28px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .6; transition: filter .2s, opacity .2s; }
.brand-logo:hover img { filter: grayscale(0); opacity: 1; }
.brand-logo-text { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--muted); transition: color .2s; }
.brand-logo:hover .brand-logo-text { color: var(--text); }

/* ── BLOG / GUIDE CARD ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.bc-thumb { height: 170px; overflow: hidden; background: #f1f5f9; }
.bc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .bc-thumb img { transform: scale(1.03); }
.bc-thumb-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; }
.bc-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.bc-tag { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: .4rem; }
.bc-title { font-weight: 700; font-size: .95rem; color: var(--text); line-height: 1.35; flex: 1; margin-bottom: .6rem; }
.bc-meta { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; padding-top: .65rem; border-top: 1px solid var(--border); }
.bc-read { margin-left: auto; font-weight: 700; color: var(--blue); font-size: .72rem; }

/* ── ARTICLE PAGE ── */
.art-hero { background: var(--navy); padding: 2.5rem 1.25rem 2rem; }
.art-hero-inner { max-width: 820px; margin: 0 auto; }
.art-tag { display: inline-block; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); border: 1px solid var(--orange); border-radius: .35rem; padding: .2rem .55rem; margin-bottom: .75rem; }
.art-h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: .6rem; }
.art-meta { font-size: .78rem; color: rgba(255,255,255,.5); display: flex; gap: .75rem; flex-wrap: wrap; }
.art-body { max-width: 820px; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }
.breadcrumb { font-size: .75rem; color: rgba(255,255,255,.45); margin-bottom: 1rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }

/* ── PROSE ── */
.prose h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 2rem 0 .75rem; }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 .5rem; }
.prose p { font-size: .95rem; color: #374151; line-height: 1.75; margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { font-size: .95rem; color: #374151; line-height: 1.6; margin-bottom: .35rem; }
.prose strong { font-weight: 700; color: #111827; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose a:hover { color: var(--blue-dark); }

/* ── TOC ── */
.toc { background: var(--blue-light); border: 1px solid #bfdbfe; border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.toc h4 { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .65rem; }
.toc ol { padding-left: 1.25rem; margin: 0; }
.toc li { font-size: .82rem; margin-bottom: .3rem; }
.toc a { color: var(--blue-dark); }
.toc a:hover { text-decoration: underline; }

/* ── TIP BOX ── */
.tip-box { background: #fff7ed; border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.tip-box strong { color: #9a3412; display: block; margin-bottom: .25rem; font-size: .85rem; }
.tip-box p { font-size: .85rem; color: #7c2d12; margin: 0; line-height: 1.55; }

/* ── SPEC TABLE ── */
.spec-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin: 1.25rem 0 2rem; }
.spec-table th { background: var(--navy); color: #fff; padding: .6rem .85rem; text-align: left; font-weight: 600; font-size: .78rem; }
.spec-table td { padding: .55rem .85rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.spec-table tr:nth-child(even) td { background: #f9fafb; }
.spec-table td:first-child { font-weight: 600; }

/* ── PROD MINI (article inline) ── */
.prod-mini { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem; margin: 1.25rem 0; }
.prod-mini img { width: 80px; height: 80px; object-fit: contain; border-radius: var(--radius); flex-shrink: 0; background: #f1f5f9; padding: .3rem; }
.prod-mini-body { flex: 1; min-width: 0; }
.prod-mini-brand { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.prod-mini-name { font-weight: 700; font-size: 1rem; color: var(--text); margin: .1rem 0 .2rem; }
.prod-mini-price { color: var(--blue-dark); font-weight: 800; font-size: 1.05rem; }
.prod-mini a.prod-mini-btn { display: inline-flex; align-items: center; gap: .3rem; margin-top: .45rem; padding: .35rem .85rem; background: var(--blue); color: #fff; font-size: .75rem; font-weight: 700; border-radius: 6px; text-decoration: none; transition: background .15s; }
.prod-mini a.prod-mini-btn:hover { background: var(--blue-dark); }

/* ── CTA CARD ── */
.cta-card { background: linear-gradient(135deg, var(--navy), #1a2744); border-radius: var(--radius-lg); padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.cta-card strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; margin-bottom: .35rem; }
.cta-card p { color: rgba(255,255,255,.65); font-size: .85rem; margin: 0; }
.btn-cta { background: var(--orange); color: #fff; padding: .85rem 1.75rem; border-radius: 8px; font-weight: 700; font-size: .9rem; white-space: nowrap; transition: background .15s; flex-shrink: 0; }
.btn-cta:hover { background: var(--orange-dark); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.6); }
.footer-main { max-width: 1280px; margin: 0 auto; padding: 3rem 1.25rem 2rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { font-size: .82rem; line-height: 1.6; margin: .75rem 0 1.25rem; }
.footer-col h4 { font-family: var(--font-head); color: #fff; font-size: .85rem; font-weight: 800; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: .07em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom-inner { max-width: 1280px; margin: 0 auto; padding: 1.25rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; font-size: .72rem; }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }
.footer-legal { font-size: .68rem; color: rgba(255,255,255,.3); max-width: 1280px; margin: 0 auto; padding: 0 1.25rem 1.5rem; line-height: 1.6; }

/* ── PRODUCT PAGE ── */
.product-page { max-width: 1280px; margin: 0 auto; padding: 2rem 1.25rem 4rem; display: grid; grid-template-columns: 1fr 420px; gap: 2.5rem; align-items: start; }
.prod-gallery { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.prod-gallery img { max-height: 320px; object-fit: contain; }
.prod-info-panel { position: sticky; top: 80px; }
.prod-info-panel .prod-brand { font-size: .75rem; margin-bottom: .3rem; }
.prod-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin-bottom: .75rem; }
.prod-rating { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.prod-stars { color: #f59e0b; letter-spacing: -.05em; }
.price-block { background: #f8f9fb; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem; }
.price-block .main-price { font-size: 2rem; font-weight: 800; color: var(--text); }
.price-block .was-price { font-size: .9rem; color: var(--muted); text-decoration: line-through; margin-left: .5rem; }
.price-block .save-label { display: inline-block; background: var(--red-light); color: var(--red); font-size: .75rem; font-weight: 700; padding: .15rem .5rem; border-radius: 4px; margin-top: .3rem; }
.delivery-block { margin-bottom: 1rem; }
.delivery-row { display: flex; align-items: flex-start; gap: .6rem; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .83rem; }
.delivery-row:last-child { border: none; }
.delivery-row svg { flex-shrink: 0; margin-top: 1px; }
.btn-buy { display: block; width: 100%; background: var(--blue); color: #fff; border: none; border-radius: 8px; padding: 1rem; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: var(--font-base); margin-bottom: .6rem; transition: background .15s; }
.btn-buy:hover { background: var(--blue-dark); }
.btn-buy-orange { background: var(--orange); }
.btn-buy-orange:hover { background: var(--orange-dark); }
.trust-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.trust-item { display: flex; align-items: center; gap: .35rem; font-size: .72rem; color: var(--muted); }
.trust-item svg { color: var(--green); }

/* ── SHOP PAGE ── */
.shop-layout { max-width: 1280px; margin: 0 auto; padding: 2rem 1.25rem 4rem; display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; }
.shop-sidebar { position: sticky; top: 80px; }
.filter-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem; }
.filter-box h4 { font-weight: 700; font-size: .85rem; margin-bottom: .75rem; }
.filter-option { display: flex; align-items: center; gap: .5rem; padding: .3rem 0; cursor: pointer; font-size: .82rem; color: var(--text); }
.filter-option input { accent-color: var(--blue); }
.shop-results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.results-count { font-size: .85rem; color: var(--muted); }

/* ── UTILITIES ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .product-page { grid-template-columns: 1fr; }
  .prod-info-panel { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 2.5rem 1rem; }
  .header-search { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .site-nav-inner { overflow-x: auto; gap: 0; }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .header-top .ht-left { display: none; }
}
