/* ====================================
   CSS Variables
   ==================================== */
:root {
  /* Colors - Fast Food/Kebab Theme */
  --primary-color: #d32f2f;
  --primary-dark: #b71c1c;
  --primary-light: #ef5350;
  --secondary-color: #ffa000;
  --secondary-dark: #f57c00;
  --secondary-light: #ffb333;
  --accent-color: #388e3c;

  --text-color: #212121;
  --text-light: #757575;
  --text-white: #ffffff;

  --bg-color: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-gray: #f5f5f5;
  --bg-overlay: rgba(0, 0, 0, 0.6);

  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 20px;
  --container-max: 1140px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ====================================
   Reset & Base Styles
   ==================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  background: var(--bg-color);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ====================================
   Utility Classes
   ==================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 20px;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn--secondary:hover {
  background: var(--text-white);
  color: var(--primary-color);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.badge--halal {
  background: var(--accent-color);
  color: var(--text-white);
}

.badge--casual {
  background: var(--secondary-color);
  color: var(--text-white);
}

.badge--quick {
  background: var(--primary-light);
  color: var(--text-white);
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.tag--halal {
  background: var(--accent-color);
}

.tag--popular {
  background: var(--secondary-color);
}

.tag--spicy {
  background: var(--primary-color);
}

.tag--review {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ====================================
   Navigation
   ==================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 25px;
}

.nav__link--cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.nav__link--cta::after {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-white);
  padding: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
}

.hero__subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__rating {
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.rating__stars {
  color: var(--secondary-color);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating__score {
  font-size: 1.3rem;
  font-weight: 700;
}

.rating__count {
  opacity: 0.9;
}

.hero__badges {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s backwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-down span {
  display: block;
  width: 2px;
  height: 15px;
  background: var(--text-white);
  opacity: 0.7;
  animation: scrollAnimation 1.5s ease-in-out infinite;
}

.scroll-down span:nth-child(2) {
  animation-delay: 0.3s;
}

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

@keyframes scrollAnimation {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: translateY(10px);
  }
}

/* ====================================
   About Section
   ==================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__description {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.about__features {
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.feature {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-gray);
  border-radius: 10px;
  transition: var(--transition);
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.feature__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.feature__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.about__image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.about__image:hover img {
  transform: scale(1.05);
}

/* ====================================
   Menu Section
   ==================================== */
.menu__categories {
  display: grid;
  gap: 50px;
  margin-bottom: 50px;
}

.menu__category-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}

.menu__items {
  display: grid;
  gap: 25px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.menu-item__info {
  flex: 1;
}

.menu-item__name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-white);
}

.menu-item__description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  line-height: 1.6;
}

.menu-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.menu-item__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  white-space: nowrap;
}

.menu__info {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.menu__note {
  font-size: 1.1rem;
  margin: 10px 0;
  opacity: 0.9;
}

.menu__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================
   Gallery Section
   ==================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery__item::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ====================================
   Reviews Section
   ==================================== */
.reviews__summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}

.reviews__score {
  text-align: center;
}

.reviews__score-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
}

.reviews__score-stars {
  font-size: 1.8rem;
  color: var(--secondary-color);
  letter-spacing: 3px;
  margin: 15px 0;
}

.reviews__score-count {
  color: rgba(255, 255, 255, 0.7);
}

.reviews__distribution {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-bar__label {
  width: 60px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--secondary-color);
  border-radius: 10px;
  transition: width 1s ease;
}

.rating-bar__count {
  width: 40px;
  text-align: right;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.reviews__tags {
  text-align: center;
  margin-bottom: 50px;
}

.reviews__list {
  display: grid;
  gap: 25px;
}

.review {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review__stars {
  color: var(--secondary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review__score {
  font-weight: 700;
  font-size: 1.1rem;
}

.review__date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.review__text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 15px;
  font-style: italic;
}

.review__details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.review__detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.review__ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review__category {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   Contact Section
   ==================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__item {
  display: flex;
  gap: 20px;
}

.contact__icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact__label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact__text {
  color: var(--text-light);
  line-height: 1.8;
}

.contact__text a {
  color: var(--primary-color);
  font-weight: 600;
}

.contact__text a:hover {
  text-decoration: underline;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-hours__day {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
}

.opening-hours__day--special {
  color: var(--primary-color);
  font-weight: 600;
}

.opening-hours__label {
  font-weight: 500;
}

.opening-hours__time {
  color: var(--text-light);
}

.contact__map {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

/* ====================================
   Footer
   ==================================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer__text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.footer__heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--text-white);
  padding-left: 5px;
}

.footer__links li {
  color: rgba(255, 255, 255, 0.7);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ====================================
   Lightbox Modal
   ==================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: none;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 5px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
  top: 20px;
  right: 20px;
}

.lightbox__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  :root {
    --section-padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.2rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .reviews__summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .rating-bar {
    max-width: 400px;
    margin: 0 auto;
  }

  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-color);
    flex-direction: column;
    padding: 40px 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    gap: 20px;
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
  :root {
    --section-padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .about__features {
    gap: 15px;
  }

  .feature {
    flex-direction: column;
    text-align: center;
  }

  .menu__category-title {
    font-size: 1.5rem;
  }

  .menu-item {
    flex-direction: column;
    text-align: center;
  }

  .menu-item__price {
    font-size: 1.5rem;
  }

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

  .reviews__summary {
    padding: 25px;
  }

  .reviews__score-number {
    font-size: 3.5rem;
  }

  .review {
    padding: 20px;
  }

  .review__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .review__details {
    flex-direction: column;
    gap: 8px;
  }

  .contact__map {
    height: 350px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    font-size: 1.5rem;
    padding: 10px 15px;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
  }

  .rating {
    flex-direction: column;
    gap: 5px;
  }

  .menu__actions {
    flex-direction: column;
  }

  .menu__actions .btn {
    width: 100%;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus states */
a:focus,
button:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
