/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

nav ul li a:hover {
    color: #fff43a;
}

/* Ürün Detay Container */
.product-detail-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sol Tarafta Ürün Galerisi */
.product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.product-gallery .thumbnails {
    display: flex;
    gap: 10px;
}

.product-gallery .thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: border 0.3s ease;
}

.product-gallery .thumbnails img:hover {
    border: 2px solid #fff43a;
}

/* Sağ Tarafta Ürün Özellikleri */
.product-info {
    flex: 1;
    padding-left: 50px;
}

.product-info h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.product-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Accordion */
.product-info .accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-item h3 {
    font-size: 18px;
    font-weight: 600;
    background-color: #f4f4f4;
    padding: 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.accordion-item h3:hover {
    background-color: #fff43a;
}

.accordion-item .accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Tablo için Stil */
.accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.accordion-content table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.accordion-content table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.accordion-content table tr:nth-child(even) {
    background-color: #fff;
}

.accordion-content table td:first-child {
    font-weight: bold;
    color: #333;
    width: 50%;
}

/* Benzer Ürünler Bölümü */
.related-products {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 50px 0;
}

.related-products h2 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.related-products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-product-box {
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.related-product-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-product-box a {
    background-color: #fff43a;
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.related-product-box a:hover {
    background-color: #e6b800;
}

.related-product-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Footer Section */
.footer {
    width: 100%;
    padding: 50px 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo img {
    width: 150px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-column a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

/* Mobil Optimizasyon için Medya Sorguları */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid #ddd;
        padding: 10px 0;
        display: none; /* Default olarak gizle */
    }

    nav ul.show {
        display: flex; /* Göster */
    }

    nav ul li {
        margin: 10px 0;
    }

    .logo img {
        width: 120px;
    }

    .product-detail-container {
        flex-direction: column; /* Elemanları sütun düzenine al */
        gap: 20px; /* Aralarına boşluk ekle */
    }

    .product-gallery {
        order: 1; /* Galeriyi en üste al */
    }

    .product-info {
        order: 2; /* Metinleri alta al */
        padding-left: 0; /* Mobilde soldan boşluk kaldır */
    }

    .product-gallery .main-image img {
        height: auto;
        width: 100%; /* Genişliği tamamen doldur */
        max-height: 300px;
    }

    .product-gallery .thumbnails {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-gallery .thumbnails img {
        width: 70px;
        height: 70px;
    }

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

    .footer-column {
        margin-bottom: 20px;
    }
}






/* Submenü */
.mobil-menu-container .submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Varsayılan olarak gizle */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 2000; /* Menü görünürken üstte kalması için */
    backdrop-filter: blur(8px);
}

.mobil-menu-container .submenu.show {
    display: flex; /* Submenüyü görünür yap */
}

.mobil-menu-container .submenu a {
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.mobil-menu-container .submenu a:hover {
    color: #fff43a;
    border-color: #fff43a;
}

/* Çıkış Butonu */
.mobil-menu-container .submenu .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobil-menu-container .submenu .close-button:hover {
    color: #fff43a;
}

/* İzole Menüyü Mobilde Göster */
@media (max-width: 768px) {
    .mobil-menu-container .mobile-menu {
        display: flex; /* Mobilde göster */
    }

    .mobil-menu-container .submenu {
        display: none; /* Varsayılan olarak gizli */
    }
}

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

    body {
        font-family: 'Open Sans', sans-serif;
    }

    header {
        background-color: #fff;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

@media (max-width: 768px) {
    .header-container {
        justify-content: center; /* Mobilde logoyu ortalamak için */
    }

    .logo {
        margin: 0 auto; /* Ekstra güvenlik için logoyu tam ortala */
    }
}

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin: 0 15px;
    }

    nav ul li a {
        text-decoration: none;
        color: #000;
        font-size: 16px;
        font-weight: 600;
        position: relative;
        padding-bottom: 5px;
    }

    nav ul li a.active {
        color: #000;
    }

    nav ul li a.active::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background-color: #fff43a;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    nav ul li a:hover {
        color: #fff43a;
    }

    /* Banner Section */
    .banner {
        position: relative;
        width: 100%;
        height: 500px;
        background: linear-gradient(90deg, rgba(7, 20, 20, 0.00) 0%, #171717 100%), url('https://heimatestate.com/figma/banner.jpg') no-repeat center center/cover;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0 50px;
    }

    .banner-text {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 85px;
        font-style: normal;
        font-weight: 800;
        line-height: 100px;
        text-transform: uppercase;
        text-align: right;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: #FFF;
    }

    /* Hakkımızda Alt Bölüm */
    .about-section {
        position: relative;
        width: 100%;
        height: 500px;
        background: linear-gradient(270deg, rgba(7, 20, 20, 0.00) 0%, #171717 100%), url('https://heimatestate.com/figma/hakkimizda.jpg') no-repeat center center/cover;
        background-size: 125%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 50px;
    }

    .about-content {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .about-left {
        max-width: 50%;
        position: relative;
    }

    .about-text {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        position: relative;
    }

    .about-text i {
        font-size: 139px;
        color: #FFF;
        position: absolute;
        right: -150px;
        top: 175%;
        font-weight: 501;
    }

    .about-description {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        line-height: 1.6;
        max-width: 400px;
        word-wrap: break-word;
    }

    /* Şema Section */
    .process-section {
        width: 100%;
        padding: 50px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .process-step {
        text-align: center;
        position: relative;
        flex-grow: 1;
    }

    .process-icon {
        width: 100px;
        height: 100px;
        border: 4px solid #FFC300;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 15px;
        position: relative;
    }

    .process-icon i {
        font-size: 40px;
        color: #FFC300;
    }

    .process-text {
        font-weight: bold;
        font-size: 18px;
        color: #FFC300;
    }

    /* Üürünlerimiz Alt Bölüm (Şeffaf Solda, Koyu Sağda) */
    .products-section {
        position: relative;
        width: 100%;
        height: 500px;
        background: linear-gradient(90deg, rgba(7, 20, 20, 0.00) 0%, #171717 100%), url('https://heimatestate.com/figma/track.jpg') no-repeat center center/cover;
        background-size: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 50px;
    }

    .products-content {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .products-right {
        max-width: 50%;
        position: relative;
    }

    .products-text {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        position: relative;
    }

    .products-text i {
        font-size: 139px;
        color: #FFF;
        position: absolute;
        left: -150px;
        top: 175%;
        font-weight: 501;
    }

    .products-description {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        line-height: 1.6;
        max-width: 400px;
        word-wrap: break-word;
    }

    /* Kendi Dorseni Tasarla Bölümü */
    .design-section {
        position: relative;
        width: 100%;
        height: 500px;
        background: linear-gradient(270deg, rgba(7, 20, 20, 0.00) 0%, #171717 100%), url('https://heimatestate.com/figma/dorse.png') no-repeat center center/cover;
        background-size: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 0 50px;
    }

    .design-content {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .design-left {
        max-width: 50%;
        position: relative;
    }

    .design-text {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        position: relative;
    }

    .design-text i {
        font-size: 139px;
        color: #FFF;
        position: absolute;
        right: -150px;
        top: 175%;
        font-weight: 501;
    }

    .design-description {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
        line-height: 1.6;
        max-width: 400px;
        word-wrap: break-word;
    }

    /* Sipariş Takip Butonu Section */
    .order-button-section {
        position: relative;
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .order-button {
        background-color: #fff43a;
        color: #000;
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        padding: 15px 40px;
        border-radius: 10px;
        display: inline-block;
    }

    .order-button i {
        margin-left: 10px;
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin: 0 15px;
        position: relative;
    }

    nav ul li a {
        text-decoration: none;
        color: #333;
        font-size: 16px;
        font-weight: 600;
        position: relative;
    }

    nav ul li a.active {
        color: #333;
    }

    nav ul li a:hover {
        color: #fff43a;
    }

    /* Submenu Styling */
    nav ul li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        list-style: none;
        padding: 10px 0;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        overflow: hidden;
    }

    nav ul li ul li {
        margin: 0;
    }

    nav ul li ul li a {
        color: #333;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 20px;
        display: block;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        white-space: nowrap;
    }

    nav ul li ul li a:hover {
        background-color: #f0f0f0;
        color: #000;
    }

    nav ul li:hover > ul {
        display: block;
        animation: fadeIn 0.3s ease;
    }

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

    .banner {
        position: relative;
        width: 100%;
        height: 500px;
        background: linear-gradient(90deg, rgba(7, 20, 20, 0.00) 0%, #171717 100%), url('https://heimatestate.com/figma/banner.jpg') no-repeat center center/cover;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 0 50px;
    }

    .banner-text {
        color: #FFF;
        font-family: "Open Sans", sans-serif;
        font-size: 85px;
        font-weight: 800;
        line-height: 100px;
        text-transform: uppercase;
        text-align: right;
        -webkit-text-stroke-width: 2px;
        -webkit-text-stroke-color: #FFF;
    }

    .footer {
        width: 100%;
        padding: 40px 20px;
        background-color: #171717;
        color: #fff;
    }

    .footer-container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-logo img {
        width: 180px;
        margin-bottom: 20px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-column h4 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #fff43a;
    }

    .footer-column a {
        color: #ddd;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-column a:hover {
        color: #fff43a;
    }

    .footer-column p {
        font-size: 14px;
        margin-bottom: 10px;
        color: #ccc;
    }

    .footer-icons a {
        color: #ddd;
        font-size: 20px;
        margin-right: 15px;
        text-decoration: none;
    }

    .footer-icons a:hover {
        color: #fff43a;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        font-size: 14px;
        border-top: 1px solid #444;
        margin-top: 30px;
        color: #ccc;
    }

    .footer-bottom p {
        margin: 0;
    }

    /* Responsive Styles */
    @media screen and (max-width: 768px) {
        .header-container {
            flex-direction: column;
            align-items: flex-start;
        }

        nav ul {
            flex-direction: column;
            width: 100%;
            align-items: flex-start;
        }

        nav ul li {
            margin: 10px 0;
        }

        .banner {
            height: 300px;
            padding: 0 20px;
        }

        .banner-text {
            font-size: 50px;
            line-height: 60px;
        }

        .about-section,
        .products-section,
        .design-section {
            height: auto;
            padding: 20px;
            background-size: cover;
        }

        .about-text,
        .products-text,
        .design-text {
            font-size: 30px;
        }

        .about-description,
        .products-description,
        .design-description {
            font-size: 14px;
        }

        .process-section {
            flex-direction: column;
            padding: 20px;
        }

        .process-step {
            margin-bottom: 20px;
        }

        .order-button-section {
            height: auto;
            padding: 20px;
        }

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

    @media screen and (max-width: 480px) {
        .banner {
            height: 250px;
        }

        .banner-text {
            font-size: 40px;
            line-height: 50px;
        }

        .about-text,
        .products-text,
        .design-text {
            font-size: 24px;
        }

        .process-icon {
            width: 80px;
            height: 80px;
        }

        .process-icon i {
            font-size: 30px;
        }

        .order-button {
            font-size: 18px;
            padding: 10px 30px;
        }
    }
    /* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger div {
    background-color: #000;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}



/* Hamburger ve Mobil Menü için Ekran Boyutu */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
}

    /* Eklenen Menü Toggle ve Mobil Menü İçin CSS */
    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .menu-toggle div {
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 4px;
    }

    @media screen and (max-width: 768px) {
        .menu-toggle {
            display: flex;
        }

        nav {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #fff;
            position: absolute;
            top: 100%;
            left: 0;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        nav ul {
            flex-direction: column;
            width: 100%;
            align-items: flex-start;
            padding: 10px 0;
        }

        nav ul li {
            margin: 10px 0;
            width: 100%;
        }

        nav ul li a {
            padding: 10px 20px;
            width: 100%;
            display: block;
        }

        .menu-toggle.active + nav {
            display: flex;
        }
    }
    
       /* Menü Açma/Kapama Butonu */
.menu-toggle {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1100;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.menu-toggle.open {
    display: none; /* Açıldığında gizlenir */
}

/* Menü İkonları */
.menu-icons {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-50%) scale(0.8);
    z-index: 1000;
}

.menu-icons.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Menü Kapatma Butonu */
.menu-icons .close-button {
    position: relative;
    top: 0;
    right: 0;
    background-color: rgb(254 244 55);
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    z-index: 1100;
}

.menu-icons .close-button:hover {
    background-color: rgba(255, 83, 88, 1);
    color: black;
}

/* Menü Linkleri */
.menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.menu-link:hover {
    background-color: #fff43a;
    color: black;
    transform: scale(1.1);
}

/* Submenü */
.submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.submenu.open {
    display: flex;
}

.submenu a {
    color: white;
    padding: 10px 20px;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.submenu a:hover {
    color: #fff43a;
    border-color: #fff43a;
}

.submenu .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.submenu .close-button:hover {
    color: #fff43a;
}

/* Mobil görünürlük */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    .menu-icons {
        display: none;
    }
}
