/* ==========================================================================
   קל-כלי — מערכת עיצוב משותפת
   פלטת פסטל חמים: אפרסק / מנטה / שמנת
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800&family=Fredoka:wght@400;500;600;700&display=swap');

:root {
  /* צבעים */
  --peach:        #FFB4A2;
  --peach-soft:   #FFD6C9;
  --peach-deep:   #F58C7B;
  --mint:         #A8E6CF;
  --mint-soft:    #D3F3E4;
  --mint-deep:    #6FCF97;
  --cream:        #FFF7F0;
  --cream-2:      #FFEFE4;
  --butter:       #FFE29A;
  --lav:          #C8B6FF;
  --ink:          #4A4039;
  --ink-soft:     #7A6E64;
  --white:        #FFFFFF;

  /* צללים רכים */
  --shadow-sm: 0 4px 14px rgba(245, 140, 123, 0.12);
  --shadow-md: 0 10px 30px rgba(245, 140, 123, 0.16);
  --shadow-lg: 0 20px 50px rgba(245, 140, 123, 0.20);

  /* עיגולים */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --maxw: 1140px;
  --font: 'Heebo', system-ui, sans-serif;
  --display: 'Fredoka', 'Heebo', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: var(--display); font-weight: 600; line-height: 1.25; }

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

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

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: 90px; position: relative; }

.center { text-align: center; }

/* ---------- כותרות מקטע ---------- */
.eyebrow {
  display: inline-block;
  background: var(--mint-soft);
  color: var(--mint-deep);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--ink); }
.section-sub { color: var(--ink-soft); max-width: 560px; margin: 14px auto 0; font-size: 1.08rem; }

/* ==========================================================================
   כפתורים
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, filter .25s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); }
.btn-mint {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
  color: #235c43;
  box-shadow: var(--shadow-sm);
}
.btn-mint:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); filter: brightness(1.02); }
.btn-lg { padding: 17px 40px; font-size: 1.15rem; }

/* ==========================================================================
   ניווט
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 247, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,140,123,0.10);
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.brand .logo-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px; border-radius: var(--r-pill); font-weight: 500; color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--peach-soft); color: var(--ink); }
.nav-links a.active { background: var(--peach-soft); color: var(--ink); font-weight: 700; }
.nav-cta { margin-inline-start: 8px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .3s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%); opacity: 0; pointer-events: none;
    transition: transform .35s ease, opacity .35s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { margin: 8px 0 0; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding: 70px 0 100px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.7rem); color: var(--ink); }
.hero h1 .hl { color: var(--peach-deep); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ''; position: absolute; inset-inline: -4px; bottom: 6px; height: 14px;
  background: var(--butter); border-radius: var(--r-pill); z-index: -1; opacity: .7;
}
.hero p.lead { font-size: 1.2rem; color: var(--ink-soft); margin: 20px 0 30px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; color: var(--ink-soft); font-size: .95rem; }
.hero-trust .dots { display: flex; }
.hero-trust .dots span { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--cream); margin-inline-start: -10px; }

.hero-art { position: relative; }

/* בועות רקע */
.blob { position: absolute; z-index: -1; filter: blur(2px); opacity: .55; }
.blob-1 { top: -40px; inset-inline-start: -60px; width: 260px; }
.blob-2 { bottom: -60px; inset-inline-end: -40px; width: 220px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero p.lead { margin-inline: auto; }
  .hero-art { order: -1; max-width: 360px; margin-inline: auto; }
}

/* ==========================================================================
   רצועת "איך זה עובד" / צעדים
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--white); border-radius: var(--r-lg); padding: 34px 28px; text-align: center;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num {
  position: absolute; top: -18px; inset-inline-start: 50%; transform: translateX(50%);
  width: 40px; height: 40px; border-radius: 50%; background: var(--peach);
  color: #fff; font-family: var(--display); font-weight: 700; display: grid; place-items: center;
}
.step .ico { width: 76px; height: 76px; margin: 8px auto 16px; }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* ==========================================================================
   שירותים / כרטיסים
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--peach-soft); }
.card .badge {
  width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 18px;
}
.badge.b-peach { background: var(--peach-soft); }
.badge.b-mint  { background: var(--mint-soft); }
.badge.b-butter{ background: #FFF0C2; }
.badge.b-lav   { background: #E7DEFF; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--peach-deep); font-weight: 700; }
.card .card-link:hover { gap: 12px; transition: gap .2s; }

/* ==========================================================================
   רקעים מקטעיים
   ========================================================================== */
.bg-cream2 { background: var(--cream-2); }
.bg-mint   { background: linear-gradient(180deg, var(--mint-soft) 0%, var(--cream) 100%); }
.bg-wave { position: relative; }
.wave-top, .wave-bottom { position: absolute; inset-inline: 0; line-height: 0; }
.wave-top { top: -1px; transform: rotate(180deg); }
.wave-bottom { bottom: -1px; }

/* ==========================================================================
   המלצות
   ========================================================================== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--white); border-radius: var(--r-md); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative;
}
.quote .mark { font-family: var(--display); font-size: 3rem; color: var(--peach-soft); line-height: .6; }
.quote p { color: var(--ink); margin: 6px 0 18px; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; }
.quote .who b { display: block; }
.quote .who small { color: var(--ink-soft); }

/* ==========================================================================
   CTA רצועה
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  border-radius: var(--r-lg); padding: 56px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.cta-band p { opacity: .95; margin: 12px auto 26px; max-width: 480px; }
.cta-band .btn-ghost { color: var(--peach-deep); }
.cta-band .float-emoji { position: absolute; opacity: .35; }

/* ==========================================================================
   בלוג
   ========================================================================== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post .thumb { height: 170px; display: grid; place-items: center; }
.post .body { padding: 24px; }
.post .tag { font-size: .8rem; font-weight: 700; color: var(--mint-deep); background: var(--mint-soft); padding: 4px 12px; border-radius: var(--r-pill); }
.post h3 { font-size: 1.25rem; margin: 14px 0 8px; }
.post p { color: var(--ink-soft); font-size: .96rem; }
.post .meta { margin-top: 16px; color: var(--ink-soft); font-size: .85rem; display: flex; gap: 12px; align-items: center; }

.blog-featured {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0; background: var(--white);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 48px;
}
.blog-featured .art { min-height: 300px; display: grid; place-items: center; background: var(--mint-soft); }
.blog-featured .txt { padding: 44px; }
@media (max-width: 760px){ .blog-featured { grid-template-columns: 1fr; } }

/* ==========================================================================
   מחשבונים
   ========================================================================== */
.calc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.calc {
  background: var(--white); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm);
  display: flex; gap: 22px; align-items: flex-start; transition: transform .3s, box-shadow .3s;
}
.calc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.calc .ico { width: 70px; height: 70px; flex: 0 0 70px; }
.calc h3 { font-size: 1.3rem; margin-bottom: 6px; }
.calc p { color: var(--ink-soft); margin-bottom: 14px; }
.calc .soon { display: inline-block; background: var(--butter); color: #8a6b00; font-weight: 700; font-size: .8rem; padding: 4px 12px; border-radius: var(--r-pill); }

.calc-demo {
  background: var(--white); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm);
  max-width: 520px; margin-inline: auto;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm); border: 2px solid var(--cream-2);
  background: var(--cream); font-family: var(--font); font-size: 1rem; color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--peach); }
.calc-result {
  background: var(--mint-soft); border-radius: var(--r-md); padding: 22px; text-align: center; margin-top: 18px;
}
.calc-result .big { font-family: var(--display); font-size: 2rem; color: var(--mint-deep); }

@media (max-width: 700px){ .calc-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   אודות
   ========================================================================== */
.about-hero { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; }
.about-hero .art { position: relative; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { background: var(--white); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); text-align: center; }
.value .ico { width: 64px; height: 64px; margin: 0 auto 14px; }
.value h3 { margin-bottom: 8px; }
.value p { color: var(--ink-soft); font-size: .96rem; }
@media (max-width: 760px){ .about-hero { grid-template-columns: 1fr; text-align: center; } }

/* ==========================================================================
   טופס יצירת קשר / קביעת שיחה
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-form {
  background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-side .info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-side .info-item .ic { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 16px; display: grid; place-items: center; }
.contact-side .info-item h4 { font-family: var(--display); }
.contact-side .info-item p { color: var(--ink-soft); }
.slots { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.slot {
  padding: 9px 16px; border-radius: var(--r-pill); border: 2px solid var(--mint-soft);
  background: var(--white); cursor: pointer; font-family: var(--font); font-weight: 500; transition: .2s;
}
.slot:hover, .slot.sel { background: var(--mint-soft); border-color: var(--mint-deep); }
.form-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 14px; }
.form-success {
  background: var(--mint-soft); color: #235c43; border-radius: var(--r-md); padding: 18px; text-align: center;
  font-weight: 600; margin-top: 16px; display: none;
}

/* ---- ווידג'ט קביעת שיחה (Wix Bookings) ---- */
.booking-widget {
  background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-md);
}
.booking-loading { color: var(--ink-soft); text-align: center; padding: 30px 10px; font-size: 1.05rem; }
.booking-dates { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 20px; }
.booking-date {
  flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 14px; line-height: 1.2; min-width: 74px;
}
.booking-date b { font-family: var(--display); font-size: .95rem; }
.booking-date span { font-size: .8rem; color: var(--ink-soft); }
.booking-date.sel span { color: #235c43; }
.booking-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.booking-slots .slot { min-width: 78px; text-align: center; }
@media (max-width: 800px){ .contact-grid { grid-template-columns: 1fr; } .contact-form .row { grid-template-columns: 1fr; } }

/* ==========================================================================
   שאלות נפוצות
   ========================================================================== */
.faq details {
  background: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-sm);
  margin-bottom: 14px; overflow: hidden; border: 2px solid transparent; transition: border-color .2s;
}
.faq details[open] { border-color: var(--peach-soft); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--display);
  font-weight: 600; font-size: 1.12rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.6rem; color: var(--peach-deep); flex: 0 0 auto; transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }

/* ==========================================================================
   פוטר
   ========================================================================== */
.footer { background: var(--ink); color: #EFE7DF; padding: 60px 0 30px; }
.footer a { color: #EFE7DF; opacity: .8; }
.footer a:hover { opacity: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer h4 { font-family: var(--display); margin-bottom: 14px; color: #fff; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer .about-txt { opacity: .75; font-size: .95rem; max-width: 280px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; text-align: center; opacity: .7; font-size: .9rem; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   פייג' הדר (עמודים פנימיים)
   ========================================================================== */
.page-head { padding: 70px 0 40px; text-align: center; position: relative; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-head p { color: var(--ink-soft); max-width: 560px; margin: 14px auto 0; font-size: 1.1rem; }

/* ==========================================================================
   עמוד מאמר (בלוג)
   ========================================================================== */
.article-head { padding: 60px 0 30px; text-align: center; position: relative; }
.article-head .tag { font-size: .85rem; font-weight: 700; color: var(--mint-deep); background: var(--mint-soft); padding: 5px 16px; border-radius: var(--r-pill); }
.article-head h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); max-width: 780px; margin: 20px auto 0; line-height: 1.2; }
.article-head .meta { margin-top: 18px; color: var(--ink-soft); display: flex; gap: 12px; justify-content: center; align-items: center; flex-wrap: wrap; font-size: .95rem; }
.article-hero-art { max-width: 240px; margin: 30px auto 0; }

.article { max-width: 720px; margin-inline: auto; padding-inline: 24px; }
.article p { font-size: 1.14rem; line-height: 1.85; color: #423a33; margin-bottom: 22px; }
.article h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--ink); }
.article h3 { font-size: 1.25rem; margin: 30px 0 12px; color: var(--ink); }
.article ul, .article ol { margin: 0 0 24px; padding-inline-start: 26px; }
.article li { font-size: 1.12rem; line-height: 1.8; margin-bottom: 12px; color: #423a33; }
.article strong { color: var(--ink); }
.article a.inline { color: var(--peach-deep); font-weight: 600; border-bottom: 2px solid var(--peach-soft); }
.article .lead-in {
  font-size: 1.3rem; line-height: 1.7; color: var(--ink); font-family: var(--display);
  font-weight: 500; margin-bottom: 30px;
}
.pullquote {
  border: none; background: var(--mint-soft); border-radius: var(--r-md);
  padding: 26px 30px; margin: 34px 0; font-family: var(--display); font-weight: 500;
  font-size: 1.3rem; line-height: 1.5; color: #235c43; position: relative;
}
.pullquote::before { content: '”'; font-size: 3rem; line-height: 0; position: absolute; top: 30px; inset-inline-start: 16px; opacity: .3; }
.callout {
  background: var(--cream-2); border-radius: var(--r-md); padding: 24px 28px; margin: 30px 0;
}
.callout .k { display: inline-block; background: var(--butter); color: #8a6b00; font-weight: 700; font-size: .8rem; padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 10px; }
.callout p { font-size: 1.05rem; margin: 0; color: var(--ink-soft); }
.article-cta {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: #fff; border-radius: var(--r-lg); padding: 40px; text-align: center; margin: 50px 0 20px;
}
.article-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: #fff; opacity: .95; margin-bottom: 20px; }
.article-cta .btn-ghost { color: var(--peach-deep); }
.article-source { font-size: .9rem; color: var(--ink-soft); border-top: 1px solid var(--cream-2); margin-top: 40px; padding-top: 20px; }
.article-source a { color: var(--ink-soft); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--peach-deep); font-weight: 700; margin-top: 30px; }

/* ==========================================================================
   אנימציות
   ========================================================================== */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floaty2 { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(4deg); } }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.float { animation: floaty 6s ease-in-out infinite; }
.float-slow { animation: floaty2 8s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .float, .float-slow { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
