/**
 * Hlavní CSS soubor pro Pedikúra Relax
 * Responsivní design s rose/pink tématikou
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Rose color palette */
    --rose-primary: #e11d48;
    --rose-secondary: #fda4af;
    --rose-accent: #fb7185;
    --rose-light: #fce7f3;
    --rose-cream: #fdf2f8;
    --rose-text: #374151;
    --rose-text-light: #6b7280;
    
    /* Gray colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* White */
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border radius */
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--rose-text);
    background-color: var(--white);
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-rose-primary {
    color: var(--rose-primary);
}

.bg-rose-gradient {
    background: linear-gradient(135deg, var(--rose-cream) 0%, var(--rose-light) 100%);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--rose-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--rose-text-light);
}

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

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--rose-primary);
    border: 2px solid var(--rose-primary);
}

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

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

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

.btn svg {
    width: 1rem;
    height: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(253, 242, 248, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(253, 164, 175, 0.3);
    padding: var(--spacing-md) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    margin: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--rose-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--rose-primary);
}

.reservation-btn {
    border-radius: var(--border-radius-full);
    padding: 0.5rem 1rem;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--rose-text);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--rose-secondary);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--rose-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.reservation-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rose-primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: var(--rose-accent);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-lg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--rose-text-light);
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--rose-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(253, 242, 248, 0.3);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 164, 175, 0.2);
}

.card-content {
    padding: var(--spacing-2xl);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Services Section */
.services-section {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(253, 242, 248, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 164, 175, 0.2);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: var(--transition);
}

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

.service-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto var(--spacing-md);
    color: var(--rose-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    margin-bottom: var(--spacing-md);
}

.service-description {
    color: var(--rose-text-light);
}

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-3xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 164, 175, 0.2);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border: 2px solid var(--rose-primary);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background-color: var(--rose-primary);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    padding: var(--spacing-xl);
    text-align: center;
}

.pricing-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-subtitle {
    font-size: 0.875rem;
    color: var(--rose-text-light);
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    margin-bottom: var(--spacing-md);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-primary);
}

.pricing-features {
    padding: 0 var(--spacing-xl);
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.feature-icon {
    color: var(--rose-primary);
    font-weight: 600;
}

.feature.special .feature-icon {
    color: var(--rose-accent);
}

.pricing-footer {
    padding: var(--spacing-xl);
    padding-top: 0;
}

.pricing-footer .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-primary) 0%, #be185d 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
    background: linear-gradient(135deg, #be185d 0%, #9f1239 100%);
}

.pricing-footer .btn:active {
    transform: translateY(0);
}

.pricing-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-footer .btn:hover::before {
    left: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    font-size: 1.125rem;
    color: var(--rose-text);
}

/* Gallery Section */
.gallery-section {
    padding: var(--spacing-3xl) 0;
    background-color: rgba(253, 242, 248, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-item {
    aspect-ratio: 1;
    background-color: var(--rose-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.gallery-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    font-size: 0.875rem;
    color: var(--rose-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 164, 175, 0.2);
    padding: var(--spacing-xl);
}

.contact-card.opening-hours {
    grid-column: 1 / -1;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--rose-primary);
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: top;
}

.contact-card h3 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.contact-card p {
    color: var(--rose-text-light);
    margin-bottom: 0;
}

.contact-card small {
    font-size: 0.75rem;
    color: var(--rose-text-light);
}

.opening-note {
    margin-bottom: var(--spacing-md);
}

.opening-times {
    font-size: 0.875rem;
}

.time-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.map-container {
    margin-top: var(--spacing-xl);
}

.map-container h3 {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

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

/* Reservation Form */
.reservation-form {
    max-width: 500px;
}

.form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(253, 164, 175, 0.2);
    padding: var(--spacing-xl);
}

.form-container h3 {
    margin-bottom: var(--spacing-sm);
}

.form-description {
    font-size: 0.875rem;
    color: var(--rose-text-light);
    margin-bottom: var(--spacing-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--rose-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-primary);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

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

.form-submit {
    margin-top: var(--spacing-md);
}

/* Contact Footer */
.contact-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

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

.instagram-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--rose-text-light);
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.instagram-link a:hover {
    opacity: 0.8;
    color: var(--rose-text);
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 0.25rem;
    border-radius: var(--border-radius);
    color: var(--white);
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-icon svg {
    width: 1rem;
    height: 1rem;
}

.logo-container {
    width: 8rem;
    height: 8rem;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.contact-actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.contact-actions p {
    margin-bottom: var(--spacing-lg);
    color: var(--rose-text-light);
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: var(--gray-800);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h4,
.footer-section h5 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-title {
    font-size: 1.25rem;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.footer-motto {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-motto svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--rose-primary);
}

.footer-motto p {
    margin: 0;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-item svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
}

.opening-hours p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.opening-notice {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(225, 29, 72, 0.2);
    color: var(--rose-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    margin-top: var(--spacing-md);
}

.opening-notice svg {
    width: 0.75rem;
    height: 0.75rem;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: var(--spacing-2xl) 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
    font-size: 0.95rem;
    animation: fadeInDown 0.4s ease-out;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert p {
    margin: 0;
    line-height: 1.4;
}

.alert ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
    line-height: 1.4;
}

.alert li {
    margin-bottom: 0.25rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-container {
        width: 6rem;
        height: 6rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }
    
    .btn-secondary,
    .btn-outline {
        border-width: 2px;
    }
}
