/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --text-light: #666;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e5e5e5;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --max-width: 1140px;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-color);
}

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

/* Base Styles */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section__subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Layout Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

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

.btn--primary:hover {
    background-color: #c19660;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn__icon {
    width: 20px;
    height: 20px;
}

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

.navigation.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
}

.nav__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    display: block;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link--cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.nav__link--cta:hover {
    background-color: #c19660;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 72px;
    overflow: hidden;
}

.hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 165, 116, 0.4) 100%);
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__rating-text {
    font-size: 1.125rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-control::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.slider-control--prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.slider-control--next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Quick Info Section */
.quick-info {
    padding: 2rem 0;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.quick-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-info__item {
    text-align: center;
    padding: 1rem;
}

.quick-info__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.quick-info__item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.quick-info__item p {
    color: var(--text-light);
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    padding-right: 2rem;
}

.about__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature__icon {
    width: 24px;
    height: 24px;
    stroke: var(--success-color);
    stroke-width: 3;
    flex-shrink: 0;
}

.about__popular-times {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.about__popular-times h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.popular-times__chart {
    height: 200px;
    margin-bottom: 1rem;
    position: relative;
}

.popular-times__legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.legend__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend__dot--low {
    background-color: #e3f2fd;
}

.legend__dot--medium {
    background-color: #90caf9;
}

.legend__dot--high {
    background-color: #1976d2;
}

/* Specialties Section */
.specialties {
    background-color: var(--background-light);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.specialty-card__image {
    height: 200px;
    overflow: hidden;
}

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

.specialty-card:hover .specialty-card__image img {
    transform: scale(1.1);
}

.specialty-card__content {
    padding: 1.5rem;
}

.specialty-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.specialty-card__tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--background-light);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
}

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

.specialty-card__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.service-card:hover {
    background-color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    background-color: var(--background-light);
}

.gallery__tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery__tab {
    padding: 0.75rem 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.gallery__tab:hover {
    background-color: var(--primary-color);
    color: white;
}

.gallery__tab.active {
    background-color: var(--primary-color);
    color: white;
}

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

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    height: 250px;
}

.gallery__item.hidden {
    display: none;
}

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

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    color: var(--primary-color);
}

.lightbox__image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

/* Reviews Section */
.reviews__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.reviews__summary {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.reviews__rating {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews__score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.reviews__stars {
    margin: 0.5rem 0;
}

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

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.distribution__row {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.distribution__bar {
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.distribution__fill {
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.reviews__tags {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.reviews__tags h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.reviews__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.reviews__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.review-card {
    min-width: 350px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-card__meta {
    flex: 1;
}

.review-card__date {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.review-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-card__text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-card__context {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.review-card__context-item {
    padding: 0.25rem 0.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.reviews__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.reviews__control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.reviews__control:hover {
    background-color: #c19660;
    transform: scale(1.1);
}

.reviews__control svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

/* Rating Stars */
.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-star {
    width: 20px;
    height: 20px;
    fill: #ddd;
}

.rating-star.filled {
    fill: #ffc107;
}

.rating-star.half-filled {
    position: relative;
    fill: #ddd;
}

.rating-star.half-filled::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: #ffc107;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.rating-stars--small .rating-star {
    width: 16px;
    height: 16px;
}

/* Order Section */
.order {
    background-color: var(--background-light);
}

.order__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.order-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.order-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.order-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.order-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.order-card__cta {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact__item address {
    font-style: normal;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact__item a {
    color: var(--primary-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item.today {
    font-weight: 600;
    color: var(--primary-color);
}

.contact__map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
}

.footer__section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    background-color: #c19660;
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

/* Utilities */
.hidden {
    display: none !important;
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Media Queries */
@media (max-width: 1023px) {
    .section {
        padding: 60px 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__text {
        padding-right: 0;
    }

    .reviews__header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 767px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
    }

    .nav__menu.active {
        transform: translateX(0);
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .hero__buttons .btn {
        width: 100%;
    }

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

    .specialties__grid,
    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery__item {
        height: 150px;
    }

    .reviews__carousel {
        padding: 0;
    }

    .review-card {
        min-width: 280px;
    }

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

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

@media (max-width: 479px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 40px 0;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .quick-info__grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .reviews__control {
        width: 35px;
        height: 35px;
    }
}