/* ============================================================
   PIZZERIA PALAZZO — Family Pizza & Kebab
   Theme: Bright, fun, family-friendly neighborhood pizzeria
   Font: Nunito (friendly, rounded)
   ============================================================ */

/* ---- THEME: Sunny Red (Default) ---- */
[data-theme="sunny-red"] {
  --color-primary: #E53E3E;
  --color-primary-hover: #C53030;
  --color-primary-light: #FFF5F5;
  --color-primary-rgb: 229, 62, 62;
  --color-accent: #F6E05E;
  --color-accent-dark: #D69E2E;
  --color-bg: #FFFFFF;
  --color-bg-alt: #FFFAF0;
  --color-text: #2D3748;
  --color-text-muted: #718096;
  --color-heading: #1A202C;
  --color-border: #FED7D7;
  --color-card-bg: #FFFFFF;
  --color-hero-overlay: rgba(229, 62, 62, 0.85);
  --color-footer-bg: #1A202C;
  --color-footer-text: #E2E8F0;
  --color-banner-bg: linear-gradient(135deg, #E53E3E, #ED8936, #F6E05E);
  --color-banner-text: #FFFFFF;
  --shadow-card: 0 4px 20px rgba(229, 62, 62, 0.10);
}

/* ---- THEME: Blue Fresh ---- */
[data-theme="blue-fresh"] {
  --color-primary: #3182CE;
  --color-primary-hover: #2B6CB0;
  --color-primary-light: #EBF8FF;
  --color-primary-rgb: 49, 130, 206;
  --color-accent: #63B3ED;
  --color-accent-dark: #2B6CB0;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F0F9FF;
  --color-text: #2D3748;
  --color-text-muted: #718096;
  --color-heading: #1A202C;
  --color-border: #BEE3F8;
  --color-card-bg: #FFFFFF;
  --color-hero-overlay: rgba(49, 130, 206, 0.85);
  --color-footer-bg: #1A365D;
  --color-footer-text: #E2E8F0;
  --color-banner-bg: linear-gradient(135deg, #3182CE, #63B3ED, #90CDF4);
  --color-banner-text: #FFFFFF;
  --shadow-card: 0 4px 20px rgba(49, 130, 206, 0.10);
}

/* ---- THEME: Green Lime ---- */
[data-theme="green-lime"] {
  --color-primary: #38A169;
  --color-primary-hover: #2F855A;
  --color-primary-light: #F0FFF4;
  --color-primary-rgb: 56, 161, 105;
  --color-accent: #9AE6B4;
  --color-accent-dark: #276749;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F0FFF4;
  --color-text: #2D3748;
  --color-text-muted: #718096;
  --color-heading: #1A202C;
  --color-border: #C6F6D5;
  --color-card-bg: #FFFFFF;
  --color-hero-overlay: rgba(56, 161, 105, 0.85);
  --color-footer-bg: #1C4532;
  --color-footer-text: #E2E8F0;
  --color-banner-bg: linear-gradient(135deg, #38A169, #68D391, #9AE6B4);
  --color-banner-text: #FFFFFF;
  --shadow-card: 0 4px 20px rgba(56, 161, 105, 0.10);
}

/* ============================================================
   BASE & TYPOGRAPHY
   ============================================================ */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  color: var(--color-heading);
  font-weight: 800;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar-logo span {
  color: var(--color-accent-dark);
}

.navbar-links a {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.navbar-links a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* ============================================================
   HERO — Split layout: text + image
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background: var(--color-bg);
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.hero-text h1 .highlight {
  color: var(--color-primary);
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(var(--color-primary-rgb), 0.2);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image .hero-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--color-accent);
  color: #1A202C;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: rotate(6deg);
  z-index: 3;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(var(--color-primary-rgb), 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-accent {
  background: var(--color-accent);
  color: #1A202C;
  border-color: var(--color-accent);
  font-weight: 800;
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  color: #fff;
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ============================================================
   MENU — Categorized cards with emoji
   ============================================================ */
.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-border);
  border-radius: 50px;
  background: var(--color-card-bg);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.25);
  transform: translateY(-2px);
}

.menu-cat-btn .emoji {
  font-size: 1.3rem;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.menu-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-card);
}

.menu-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.15);
}

.menu-card-info {
  flex: 1;
}

.menu-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.menu-card-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
  padding-top: 0.15rem;
}

.menu-card .badge-popular {
  display: inline-block;
  background: var(--color-accent);
  color: #1A202C;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  vertical-align: middle;
  text-transform: uppercase;
}

/* ============================================================
   LUNCH DEAL BANNER
   ============================================================ */
.lunch-banner {
  background: var(--color-banner-bg);
  color: var(--color-banner-text);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lunch-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.lunch-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.lunch-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.lunch-banner .lunch-desc {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.lunch-banner .lunch-price {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.lunch-banner .lunch-includes {
  font-size: 1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.lunch-banner .lunch-time {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   DELIVERY / TAKEAWAY
   ============================================================ */
.delivery-section {
  background: var(--color-bg);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.delivery-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-card);
}

.delivery-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--color-primary-rgb), 0.15);
}

.delivery-card .delivery-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.delivery-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.delivery-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.about-feature .feature-icon {
  font-size: 1.5rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.12);
}

.review-stars {
  color: #F6AD55;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  color: var(--color-heading);
  font-weight: 600;
}

.form-group {
  margin-bottom: 1rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-card-bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
}

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

.map-container {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--color-footer-text);
  opacity: 0.8;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-footer-text);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  opacity: 0.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ============================================================
   FLOATING ACTION BUTTONS
   ============================================================ */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.fab-call {
  background: var(--color-primary);
}

.fab-whatsapp {
  background: #25D366;
}

.fab-order {
  background: var(--color-accent-dark);
}

/* ============================================================
   THEME TOGGLE & LANG TOGGLE
   ============================================================ */
.theme-toggle {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.theme-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.theme-dot:hover {
  transform: scale(1.15);
}

.theme-dot.active {
  border-color: var(--color-heading);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.lang-toggle {
  display: flex;
  gap: 0.25rem;
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 0.15rem;
}

.lang-toggle button {
  padding: 0.35rem 0.7rem;
  border: none;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--color-primary);
  color: #fff;
}

/* ============================================================
   HAMBURGER MENU (Mobile)
   ============================================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-heading);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
    transform: rotate(0deg);
  }

  .hero-actions {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: flex;
  }

  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }

  .navbar-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .lunch-banner {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-sm {
  font-size: 0.875rem;
}

.form-message {
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  display: none;
}

.form-message.success {
  display: block;
  background: #F0FFF4;
  color: #276749;
  border: 1px solid #C6F6D5;
}

.form-message.error {
  display: block;
  background: #FFF5F5;
  color: #C53030;
  border: 1px solid #FED7D7;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-children > *.visible {
  opacity: 1;
  transform: translateY(0);
}
