/* style.css - Complete Responsive Stylesheet for Wintique Fitness */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* CSS Variables */
:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-color: #dee2e6;
    --border-radius: 8px;
    --box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --box-shadow-lg: 0 4px 8px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --container-max-width: 1200px;
    --header-height: 70px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

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

p {
    margin-bottom: 1rem;
    color: #555;
}

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

a:hover, a:focus {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Layout Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    min-height: calc(100vh - var(--header-height) - 200px);
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.brand-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
}

.brand-text {
    color: var(--dark-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
}

.nav-toggle-icon::before { top: -8px; }
.nav-toggle-icon::after { bottom: -8px; }

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

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
    text-decoration: none;
}

.cta-icon {
    width: 20px;
    height: 20px;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.product-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.product-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
}

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

.product-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.product-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.product-form {
    margin-top: 1rem;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.add-to-cart-btn:hover,
.add-to-cart-btn:focus {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

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

.feature-title {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-description {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--dark-color);
    color: white;
    text-align: center;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Thank You Page Styles */
.thankyou-section {
    padding: 4rem 0;
    background: var(--light-color);
    min-height: 70vh;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--success-color);
}

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

.thankyou-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thankyou-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.order-summary {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.order-summary-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.order-details {
    display: grid;
    gap: 1rem;
}

.order-number {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    font-weight: 600;
}

.product-info {
    display: grid;
    gap: 0.5rem;
}

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

.product-item:last-child {
    border-bottom: none;
}

.product-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.product-value {
    color: var(--dark-color);
}

.info-message {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.info-title {
    color: #856404;
    margin-bottom: 0.5rem;
}

.info-text {
    color: #856404;
    margin-bottom: 0;
}

.next-steps {
    margin-bottom: 3rem;
}

.steps-title {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.steps-list {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.step-content {
    flex: 1;
}

.step-title {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-description {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.contact-info {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.contact-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-description {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

.contact-method:hover {
    background: #e9ecef;
    text-decoration: none;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

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

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

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    text-decoration: none;
}

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

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
    background: white;
}

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

.policy-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.policy-updated {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-intro {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.policy-section-content {
    margin-bottom: 3rem;
}

.policy-subtitle {
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.policy-subheading {
    color: var(--dark-color);
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
}

.policy-list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-list li {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-details {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.policy-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 3rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-section-title {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.contact-details {
    flex: 1;
}

.contact-method-title {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-address {
    color: var(--secondary-color);
    font-style: normal;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.contact-hours {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hours-schedule {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.hours-day:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: var(--dark-color);
}

.day-hours {
    color: var(--secondary-color);
}

.hours-note {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-departments {
    margin-bottom: 4rem;
}

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

.department {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.department-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.department-info {
    flex: 1;
}

.department-title {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.department-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-faq {
    margin-bottom: 4rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-question {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-answer {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-disclaimer {
    margin-top: 3rem;
}

.disclaimer-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.disclaimer-title {
    color: #856404;
    margin-bottom: 1rem;
}

.disclaimer-text {
    color: #856404;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-subtitle {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-address {
    color: #ccc;
    font-style: normal;
    line-height: 1.6;
}

.footer-hours {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright,
.footer-disclaimer {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
    max-width: 350px;
}

.toast {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.toast-body {
    padding: 1rem;
    color: var(--dark-color);
}

.toast-success .toast-header {
    background: #d4edda;
    color: #155724;
}

.toast-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    /* Navigation */
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--box-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: 0;
        width: 100%;
    }
    
    /* Layout adjustments */
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .products-section,
    .features-section {
        padding: 2rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact page adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    /* Thank you page adjustments */
    .thankyou-title {
        font-size: 2rem;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer adjustments */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    /* Toast adjustments */
    .toast-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .product-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .thankyou-content {
        padding: 0 0.5rem;
    }
    
    .order-summary,
    .contact-info {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .hero-cta,
    .cta-section,
    .add-to-cart-btn,
    .action-buttons,
    .toast-container {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .product-card,
    .feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0056b3;
        --primary-hover: #003d82;
        --border-color: #666;
    }
    
    .product-card,
    .feature-card {
        border: 2px solid var(--border-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-cta:hover,
    .add-to-cart-btn:hover,
    .product-card:hover {
        transform: none;
    }
}