/* ============================================================
   SHOPIFY CONVERSION FIX KIT — SALES PAGE STYLES
   Brand: Product Page Warehouse / Jill Winter
   Colors: Purple #6B3FA0, Green #4CAF50 / #5CB85C, Orange #F7941D,
           Navy #1a1a2e, Lavender bg #f3eeff
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: #1a1a2e;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-white { color: #fff; }

/* ── EYEBROW LABELS ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B3FA0;
  margin-bottom: 0.6rem;
}
.eyebrow--dark { color: #1a1a2e; }
.eyebrow--light { color: #c9aaef; }
.eyebrow.text-center { display: block; }

/* ── HIGHLIGHT COLORS ── */
.highlight-green  { color: #5CB85C; }
.highlight-purple { color: #6B3FA0; }
.highlight-orange { color: #F7941D; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  line-height: 1.3;
}

.btn--primary {
  background: linear-gradient(135deg, #6B3FA0 0%, #8B5CB8 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(107, 63, 160, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 63, 160, 0.45);
  background: linear-gradient(135deg, #5a339a 0%, #7a4faa 100%);
}

.btn--cta {
  background: linear-gradient(135deg, #F7941D 0%, #f5b942 100%);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(247, 148, 29, 0.4);
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247, 148, 29, 0.5);
  background: linear-gradient(135deg, #e07d0a 0%, #f0aa2a 100%);
}

.btn--large { font-size: 1.15rem; padding: 17px 40px; }
.btn--block { display: block; width: 100%; text-align: center; }

/* ── SECTION INTRO TEXT ── */
.section-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #6B3FA0, #8B5CB8);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
}
.announcement-bar a {
  color: #f5d76e;
  font-weight: 700;
  margin-left: 6px;
}
.announcement-bar a:hover { text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #f9f6ff 0%, #f3eeff 60%, #ede4ff 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__text .eyebrow { margin-bottom: 12px; }

.hero__headline {
  margin-bottom: 1.2rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.6rem;
  max-width: 520px;
}

.hero__bullets {
  margin-bottom: 2rem;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.6rem;
}
.hero__bullets li i {
  color: #5CB85C;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero__cta { }
.cta-sub-note {
  font-size: 0.82rem;
  color: #888;
  margin-top: 10px;
  margin-bottom: 0;
}

.hero__mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(107,63,160,0.18));
  transition: transform 0.3s ease;
}
.mockup-img:hover { transform: scale(1.02); }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: #fff;
  padding: 80px 0;
}

.problem__box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.problem__box h2 { margin-bottom: 1rem; }

.problem__intro {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}

.problem__item {
  background: #f9f6ff;
  border: 1.5px solid #e8dcf8;
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107,63,160,0.1);
}
.problem__icon { font-size: 1.8rem; }
.problem__item p { font-size: 0.9rem; font-weight: 500; color: #444; margin: 0; }

.problem__truth {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b5e 100%);
  color: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.problem__truth::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 120px;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.truth-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F7941D;
  margin-bottom: 0.6rem;
}
.truth-text {
  font-size: 1.05rem;
  color: #e8e0f0;
  margin-bottom: 0.8rem;
}
.truth-text strong { color: #fff; }
.truth-text:last-child { margin-bottom: 0; }

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product-intro {
  background: linear-gradient(160deg, #f3eeff 0%, #fff 100%);
  padding: 80px 0;
}

.product-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-intro__img img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(107,63,160,0.18);
  transition: transform 0.3s ease;
}
.product-intro__img img:hover { transform: scale(1.02); }

.product-intro__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.4rem;
}
.tagline-italic {
  font-style: italic;
  color: #6B3FA0;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.product-intro__text p { color: #444; }

.product-intro__text .btn { margin-top: 1rem; }

/* ============================================================
   WHAT'S INSIDE — FEATURES
   ============================================================ */
.whats-inside {
  background: #fff;
  padding: 80px 0;
}
.whats-inside h2 { margin-bottom: 1rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 4px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.feature-card:hover::after { opacity: 1; }

.feature-card--purple { border-top-color: #6B3FA0; }
.feature-card--purple .feature-card__icon { color: #6B3FA0; }
.feature-card--purple::after { background: #6B3FA0; }

.feature-card--green { border-top-color: #5CB85C; }
.feature-card--green .feature-card__icon { color: #5CB85C; }
.feature-card--green::after { background: #5CB85C; }

.feature-card--orange { border-top-color: #F7941D; }
.feature-card--orange .feature-card__icon { color: #F7941D; }
.feature-card--orange::after { background: #F7941D; }

.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.feature-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; color: #1a1a2e; }
.feature-card p { font-size: 0.94rem; color: #555; margin: 0; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-for {
  background: linear-gradient(160deg, #f9f6ff 0%, #f3eeff 100%);
  padding: 80px 0;
}

.who-for__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.who-for__col h2 { margin-bottom: 1.4rem; font-size: 1.6rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.check-list li i { flex-shrink: 0; margin-top: 3px; font-size: 1.05rem; }
.check-list--green li i { color: #5CB85C; }
.check-list--red li i { color: #e74c3c; }

/* ============================================================
   ABOUT JILL
   ============================================================ */
.about {
  background: #fff;
  padding: 80px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

.about__photo img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(107,63,160,0.2);
  width: 100%;
}

.about__text h2 { margin-bottom: 0.3rem; }
.about__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6B3FA0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.4rem;
}
.about__text p { color: #444; font-size: 1rem; }

.as-seen-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  padding: 16px 20px;
  background: #f9f6ff;
  border-radius: 10px;
  border: 1.5px solid #e5d9f8;
}

.as-seen-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  white-space: nowrap;
}

.as-seen-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
}
.logo-apple { color: #1a1a2e; }
.logo-forbes { color: #cc0000; }
.logo-msn { color: #0072c6; font-size: 1.1rem; font-style: italic; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(160deg, #f3eeff 0%, #ede4ff 100%);
  padding: 80px 0;
}
.testimonials h2 { margin-bottom: 1rem; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(107,63,160,0.1);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(107,63,160,0.18);
}
.testimonial-card--featured {
  border: 2px solid #6B3FA0;
  transform: scale(1.02);
}
.testimonial-card--featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.testimonial-card__stars {
  color: #F7941D;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 3px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 18px;
}
.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 2rem;
  color: #6B3FA0;
  line-height: 1;
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.author-avatar--1 { background: linear-gradient(135deg, #6B3FA0, #9B6BC8); }
.author-avatar--2 { background: linear-gradient(135deg, #5CB85C, #7dd87d); }
.author-avatar--3 { background: linear-gradient(135deg, #F7941D, #f5b942); }

.author-name { font-weight: 700; font-size: 0.95rem; color: #1a1a2e; margin: 0; }
.author-title { font-size: 0.82rem; color: #888; margin: 0; }

/* ============================================================
   PRICING / BUY SECTION
   ============================================================ */
.buy {
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1b5e 60%, #1a1a2e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.buy::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,160,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.buy::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.buy h2 { margin-bottom: 2.5rem; }

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.pricing-card__header {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b5e 100%);
  padding: 32px;
  text-align: center;
}
.pricing-card__mockup {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
}

.pricing-card__body {
  padding: 40px 48px 48px;
}
.pricing-card__body h3 {
  font-size: 1.6rem;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}
.pricing-card__tagline {
  font-style: italic;
  color: #6B3FA0;
  font-size: 1rem;
  margin-bottom: 1.8rem;
}

.pricing-includes {
  margin-bottom: 2rem;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 500;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #f0e8ff;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li i { color: #5CB85C; font-size: 1rem; flex-shrink: 0; }

.pricing-card__price {
  text-align: center;
  margin-bottom: 1.6rem;
  padding: 20px;
  background: #f9f6ff;
  border-radius: 12px;
}
.price-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  display: block;
  margin-bottom: 4px;
}
.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.price-dollar {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
  color: #6B3FA0;
}
.price-note {
  font-size: 0.8rem;
  color: #aaa;
  display: block;
  margin-top: 6px;
}

.guarantee-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 1.8rem 0 1.2rem;
  padding: 20px;
  background: #fffbf0;
  border-radius: 12px;
  border: 1.5px solid #f5e0aa;
}
.guarantee-badge {
  width: 90px;
  flex-shrink: 0;
}
.guarantee-text strong {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.guarantee-text p {
  font-size: 0.84rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.secure-note {
  text-align: center;
  font-size: 0.82rem;
  color: #999;
  margin-top: 1rem;
  margin-bottom: 0;
}
.secure-note i { color: #5CB85C; margin-right: 4px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #fff;
  padding: 80px 0;
}
.faq h2 { margin-bottom: 2.5rem; }

.faq__list {
  max-width: 780px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1.5px solid #f0e8ff;
  padding: 6px 0;
}
.faq__item:first-child { border-top: 1.5px solid #f0e8ff; }

.faq__item summary {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  padding: 18px 40px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
  outline: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #6B3FA0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__item summary:hover { color: #6B3FA0; }

.faq__item p {
  font-size: 0.97rem;
  color: #555;
  padding: 0 0 20px 0;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(160deg, #f3eeff 0%, #ede4ff 100%);
  padding: 80px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.final-cta__note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a2e;
  color: #c0b8d4;
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.footer__brand p {
  font-size: 0.9rem;
  color: #9988bb;
  margin-bottom: 1.2rem;
}

.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0b8d4;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover {
  background: #6B3FA0;
  color: #fff;
}

.footer__links h4 {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links ul li {
  margin-bottom: 0.5rem;
}
.footer__links ul li a {
  font-size: 0.88rem;
  color: #9988bb;
  transition: color 0.2s;
}
.footer__links ul li a:hover { color: #c9aaef; }

.footer__bottom {
  text-align: center;
  padding: 18px 0;
  font-size: 0.8rem;
  color: #665577;
}

/* ============================================================
   RESPONSIVE — TABLET (< 900px)
   ============================================================ */
@media (max-width: 900px) {
  .hero__inner,
  .product-intro__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__mockup { order: -1; }
  .hero__text .btn { display: block; text-align: center; }
  .mockup-img { max-width: 400px; margin: 0 auto; }

  .about__inner { grid-template-columns: 1fr; }
  .about__photo img { max-width: 320px; margin: 0 auto; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonial-card--featured { transform: none; }
  .testimonial-card--featured:hover { transform: translateY(-5px); }

  .who-for__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card__body { padding: 28px 28px 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 600px)
   ============================================================ */
@media (max-width: 600px) {
  .features__grid { grid-template-columns: 1fr; }
  .problem__grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-card__body { padding: 24px 20px 32px; }
  .guarantee-row { flex-direction: column; text-align: center; }

  .as-seen-bar { flex-direction: column; align-items: flex-start; gap: 10px; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }

  .btn--large { font-size: 1rem; padding: 15px 28px; }
  .announcement-bar p { font-size: 0.78rem; }

  .hero { padding: 40px 0 60px; }
  .problem, .product-intro, .whats-inside, .who-for, .about, .testimonials, .buy, .faq, .final-cta {
    padding: 56px 0;
  }
}
