/**
 * Hizmet açıklaması – metin editörü içeriğinin front-end görünümü
 * Modüler: tüm ilgili stiller bu dosyada, kolayca düzenlenebilir.
 */

/* --- Tabs / panel alanı --- */
.service-content-tabs {
    margin-top: 24px;
}
.service-content-nav {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    gap: 8px;
}
.service-content-nav li {
    margin: 0;
}
.service-content-nav button {
    border: none;
    background: transparent;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #555555;
    cursor: pointer;
}
.service-content-nav li.active button {
    background: #2E90FF;
    color: #ffffff;
}
.service-content-panel[hidden] {
    display: none !important;
}
.service-content-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
}

/* --- İçerik gövdesi (editör çıktısı) --- */
.service-content-body {
    font-size: 14px;
    line-height: 1.6;
    color: #222;
}

/* Urun/hizmet detay sayfasi: masaustu arka plan rengi */
@media (min-width: 992px) {
    body.hizmet-page {
        background-color: #ffffff !important;
    }
}

/*
 * Varsayılan koyu metin. !important kullanılmaz — editördeki metin rengi (inline style) geçerli olsun.
 */
.services-single-section .service-content-body,
.services-single-section .service-content-body p,
.services-single-section .service-content-body li,
.services-single-section .service-content-body span,
.services-single-section .service-content-body div,
.services-single-section .service-content-body td,
.services-single-section .service-content-body th {
    color: #222;
}
.services-single-section .service-content-body a {
    color: #1a73e8;
}
.services-single-section .service-content-body blockquote {
    color: #444;
}

.services-single-section .service-content-body h1,
.services-single-section .service-content-body h2,
.services-single-section .service-content-body h3,
.services-single-section .service-content-body h4,
.services-single-section .service-content-body h5,
.services-single-section .service-content-body h6 {
    color: #222;
}

@media (max-width: 767px) {
    .service-content-tabs {
        margin-top: 16px;
    }
    .service-content-body {
        font-size: 13px;
    }
}

/* --- Hizmet içeriği wrapper (alternatif sınıf) --- */
.services-single-section .hizmet-icerik {
    position: relative;
    font-size: 15px;
    line-height: 1.52;
    color: #222;
}

/* Quill editör çıktısı – paragraf, başlık, liste, hizalama, blockquote, img, pre, code */
.services-single-section .hizmet-icerik .ql-editor {
    padding: 0;
    line-height: 1.52;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}
.services-single-section .hizmet-icerik .ql-editor p {
    margin: 0 0 0.45em;
}
.services-single-section .hizmet-icerik .ql-editor p:last-child {
    margin-bottom: 0;
}
.services-single-section .hizmet-icerik .ql-editor h1,
.services-single-section .hizmet-icerik .ql-editor h2,
.services-single-section .hizmet-icerik .ql-editor h3,
.services-single-section .hizmet-icerik .ql-editor h4,
.services-single-section .hizmet-icerik .ql-editor h5,
.services-single-section .hizmet-icerik .ql-editor h6 {
    margin: 0.65em 0 0.35em;
    line-height: 1.28;
    font-weight: 700;
    color: #222;
}
.services-single-section .hizmet-icerik .ql-editor ul,
.services-single-section .hizmet-icerik .ql-editor ol {
    margin: 0 0 0.5em;
    padding-left: 1.6em;
}
.services-single-section .hizmet-icerik .ql-editor li {
    margin: 0.1em 0;
}
.services-single-section .hizmet-icerik .ql-editor .ql-align-center { text-align: center; }
.services-single-section .hizmet-icerik .ql-editor .ql-align-right { text-align: right; }
.services-single-section .hizmet-icerik .ql-editor .ql-align-justify { text-align: justify; }
.services-single-section .hizmet-icerik .ql-editor blockquote {
    border-left: 4px solid #2E90FF;
    margin: 0.5em 0;
    padding-left: 1em;
    color: #555;
    line-height: 1.52;
}
.services-single-section .hizmet-icerik .ql-editor img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0.5em 0;
    border-radius: 6px;
}
.services-single-section .hizmet-icerik .ql-editor pre {
    background: #f4f4f4;
    padding: 10px 12px;
    border-radius: 6px;
    overflow: auto;
    margin: 0.5em 0;
}
.services-single-section .hizmet-icerik .ql-editor code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.95em;
}

/* Paragraflar – içerik sütununda */
.services-single-section .service-content-body p,
.services-single-section .hizmet-icerik p,
.services-single-section p {
    position: relative;
    color: #222;
    font-size: 16px;
    line-height: 1.4em;
    margin-bottom: 3px !important;
    margin-top: 0 !important;
    text-align: left;
}
.services-single-section .inner-column p:first-child {
    margin-top: 0 !important;
}
.services-single-section .inner-column p:last-child {
    margin-bottom: 0 !important;
}
.services-single-section .inner-column p + p {
    margin-top: 3px;
}

/*
 * Quill hizalama: panel kayıtta .ql-editor sarmalayıcısı olmadan innerHTML gelir;
 * .ql-align-* sınıfları doğrudan p/h başlık vb. üzerindedir. Aksi halde yukarıdaki
 * text-align: left tüm paragrafları sıfırlar.
 */
.services-single-section .service-content-body .ql-align-center {
    text-align: center !important;
}
.services-single-section .service-content-body .ql-align-right {
    text-align: right !important;
}
.services-single-section .service-content-body .ql-align-justify {
    text-align: justify !important;
}

/* Desktop-only professional layout tuning for product detail top section */
@media (min-width: 992px) {
    .services-single-section {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .services-single-section .content-column .inner-column {
        max-width: none;
        width: 100%;
        margin: 0;
    }

    .services-single-section .service-title-wrapper {
        margin-bottom: 8px;
        margin-top: 8px;
        padding: 0;
        border-bottom: none;
        border: none;
        border-radius: 14px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .services-single-section .service-title-text {
        font-size: 1.15rem;
        line-height: 1.3;
        font-weight: 600;
        letter-spacing: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
    }

    /* Paylaş: anasayfa "Tümünü Gör" (.section-title-row__btn) ile aynı temel stil — index-services.css */
    .services-single-section .service-title-wrapper .section-title-row__btn {
        cursor: pointer;
        font-family: inherit;
        color: rgba(34, 34, 34, 0.7);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        outline: none;
        box-shadow: none;
        appearance: none;
        -webkit-appearance: none;
        background-color: transparent;
        padding-left: 0;
        padding-right: 0;
    }

    .services-single-section .service-title-wrapper .section-title-row__btn i {
        font-size: 17px;
        line-height: 1;
        -webkit-text-stroke: 0.4px currentColor;
        paint-order: stroke fill;
    }

    /* Hover: sadece metin/ikon turuncu; arka plan değişmez (index-services genel hover griyi ezer) */
    .services-single-section .service-title-wrapper .section-title-row__btn:hover,
    .services-single-section .service-title-wrapper .section-title-row__btn:focus-visible,
    .services-single-section .service-title-wrapper .section-title-row__btn:active {
        color: #FA6101;
        background-color: transparent;
        text-decoration: none;
    }

    .services-single-section .services-carousel {
        width: 100%;
        max-width: none;
        margin: 0 0 26px;
    }

    .services-single-section .service-gallery-with-badges {
        border-radius: 14px;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
    }

    /* Split galeri: dış overflow + radius sol sütundaki thumbnail şeridini kırpıp köşede beyaz/artefakt bırakıyor */
    .services-single-section .service-gallery-with-badges--split {
        border-radius: 0;
        overflow: visible;
    }

    .services-single-section .service-content-tabs {
        max-width: none;
        margin: 0;
    }

    .services-single-section .service-content-panel {
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .services-single-section .service-content-body {
        padding: 0;
        font-size: 16px;
        line-height: 1.52;
        color: #1f2937;
    }

    .services-single-section .service-content-body p,
    .services-single-section .hizmet-icerik p,
    .services-single-section p {
        font-size: 16px;
        line-height: 1.52;
        margin: 0 0 8px !important;
    }

    .services-single-section .service-content-body h1,
    .services-single-section .service-content-body h2,
    .services-single-section .service-content-body h3,
    .services-single-section .service-content-body h4,
    .services-single-section .service-content-body h5,
    .services-single-section .service-content-body h6 {
        margin-top: 12px;
        margin-bottom: 5px;
        line-height: 1.28;
    }

    .services-single-section .service-content-body > h1:first-child,
    .services-single-section .service-content-body > h2:first-child,
    .services-single-section .service-content-body > h3:first-child,
    .services-single-section .service-content-body > h4:first-child,
    .services-single-section .service-content-body > h5:first-child,
    .services-single-section .service-content-body > h6:first-child,
    .services-single-section .service-content-body .ql-editor > h1:first-child,
    .services-single-section .service-content-body .ql-editor > h2:first-child,
    .services-single-section .service-content-body .ql-editor > h3:first-child,
    .services-single-section .service-content-body .ql-editor > h4:first-child,
    .services-single-section .service-content-body .ql-editor > h5:first-child,
    .services-single-section .service-content-body .ql-editor > h6:first-child {
        margin-top: 0;
    }

    .services-single-section .service-content-body ul,
    .services-single-section .service-content-body ol {
        margin: 0 0 8px;
        padding-left: 22px;
    }

    .services-single-section .service-content-body li {
        margin-bottom: 3px;
        line-height: 1.52;
    }

    .services-single-section .service-content-body img {
        margin: 8px auto;
        border-radius: 10px;
    }

    /* Ürün detay (masaüstü): genel 12px yerine biraz daha ferah üst boşluk */
    body.hizmet-page .services-single-section {
        padding-bottom: 18px;
        padding-top: 16px;
    }
}

/* Tablolar: tüm genişlikler (992px kuralı içinde kaldığı için mobilde görünmüyordu) */
.services-single-section .service-content-body table,
.services-single-section .service-content-body .ql-editor table,
.services-single-section .hizmet-icerik table,
.services-single-section .hizmet-icerik .ql-editor table {
    display: table;
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 8px 0 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    table-layout: auto;
}

.services-single-section .service-content-body table th,
.services-single-section .service-content-body table td,
.services-single-section .service-content-body .ql-editor table th,
.services-single-section .service-content-body .ql-editor table td,
.services-single-section .hizmet-icerik table th,
.services-single-section .hizmet-icerik table td,
.services-single-section .hizmet-icerik .ql-editor table th,
.services-single-section .hizmet-icerik .ql-editor table td {
    display: table-cell;
    padding: 8px 10px;
    border: none;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.services-single-section .service-content-body table th:last-child,
.services-single-section .service-content-body table td:last-child,
.services-single-section .service-content-body .ql-editor table th:last-child,
.services-single-section .service-content-body .ql-editor table td:last-child,
.services-single-section .hizmet-icerik table th:last-child,
.services-single-section .hizmet-icerik table td:last-child,
.services-single-section .hizmet-icerik .ql-editor table th:last-child,
.services-single-section .hizmet-icerik .ql-editor table td:last-child {
    border-right: none;
}

.services-single-section .service-content-body table tbody tr:last-child th,
.services-single-section .service-content-body table tbody tr:last-child td,
.services-single-section .service-content-body .ql-editor table tbody tr:last-child th,
.services-single-section .service-content-body .ql-editor table tbody tr:last-child td,
.services-single-section .hizmet-icerik table tbody tr:last-child th,
.services-single-section .hizmet-icerik table tbody tr:last-child td,
.services-single-section .hizmet-icerik .ql-editor table tbody tr:last-child th,
.services-single-section .hizmet-icerik .ql-editor table tbody tr:last-child td {
    border-bottom: none;
}

/* tbody yoksa (yalnız thead veya tek grup satırlar) son satırın alt çizgisi */
.services-single-section .service-content-body table:not(:has(tbody)) tr:last-child th,
.services-single-section .service-content-body table:not(:has(tbody)) tr:last-child td,
.services-single-section .service-content-body .ql-editor table:not(:has(tbody)) tr:last-child th,
.services-single-section .service-content-body .ql-editor table:not(:has(tbody)) tr:last-child td,
.services-single-section .hizmet-icerik table:not(:has(tbody)) tr:last-child th,
.services-single-section .hizmet-icerik table:not(:has(tbody)) tr:last-child td,
.services-single-section .hizmet-icerik .ql-editor table:not(:has(tbody)) tr:last-child th,
.services-single-section .hizmet-icerik .ql-editor table:not(:has(tbody)) tr:last-child td {
    border-bottom: none;
}

.services-single-section .service-content-body table thead th,
.services-single-section .hizmet-icerik table thead th {
    background: #f8fafc;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    body.hizmet-page .services-single-section .service-content-panel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .services-single-section .service-content-body table,
    .services-single-section .service-content-body .ql-editor table,
    .services-single-section .hizmet-icerik table,
    .services-single-section .hizmet-icerik .ql-editor table {
        width: max-content;
        min-width: 100%;
        font-size: 14px;
    }

    .services-single-section .service-content-body table th,
    .services-single-section .service-content-body table td,
    .services-single-section .service-content-body .ql-editor table th,
    .services-single-section .service-content-body .ql-editor table td,
    .services-single-section .hizmet-icerik table th,
    .services-single-section .hizmet-icerik table td,
    .services-single-section .hizmet-icerik .ql-editor table th,
    .services-single-section .hizmet-icerik .ql-editor table td {
        padding: 7px 8px;
    }
}

body.hizmet-page .services-single-section + .index-services-section--related {
    margin-top: 0 !important;
}

@media (max-width: 991px) {
    body.hizmet-page .services-single-section {
        padding-top: 16px;
    }
}

/* =========================================================
   Hizmet içerik sekmeleri + metin hiyerarşisi (proje uyumlu)
   ========================================================= */
.services-single-section .service-content-tabs {
    margin-top: 22px;
}

.services-single-section .service-content-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    border-bottom: none;
}

@media (min-width: 768px) {
    .services-single-section .service-content-nav {
        gap: 12px;
    }

    .services-single-section .service-content-nav li:not(:last-child) {
        border-right: none;
    }
}

.services-single-section .service-content-nav li {
    list-style: none;
    margin: 0;
}

.services-single-section .service-content-nav button {
    border: 1px solid transparent;
    border-radius: 10px;
    background: #f8fafc;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 11px 16px;
    cursor: pointer;
    transition: all .2s ease;
}

/* Aktif olmayan sekme: hover’da görünüm değişmez */
@media (min-width: 768px) {
    .services-single-section .service-content-nav li:not(.active) button:hover {
        color: #475467;
        background: #f8fafc;
        border-color: transparent;
    }
}

.services-single-section .service-content-nav li.active button,
.services-single-section .service-content-nav button.active {
    color: #FA6101;
    background: #fff7f2;
    border-color: #ffd7bf;
}

.services-single-section .service-content-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    margin-top: 10px;
    padding: 0;
}

/* Masaüstü: galeri altı (~26px) ile uyumlu boşluk; sekme satırı–açıklama arası dengeli */
@media (min-width: 992px) {
    .services-single-section .service-content-tabs {
        margin-top: 0;
        margin-bottom: 0;
    }

    .services-single-section .service-content-panel {
        margin-top: 26px;
    }
}

.services-single-section .service-content-body {
    padding: 0;
    color: #1f2937;
    font-size: 16px;
    line-height: 1.52;
}

.services-single-section .service-content-body h1,
.services-single-section .service-content-body h2,
.services-single-section .service-content-body h3,
.services-single-section .service-content-body h4 {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.28;
    margin: 0 0 6px;
}

.services-single-section .service-content-body h1 { font-size: 30px; }
.services-single-section .service-content-body h2 { font-size: 26px; }
.services-single-section .service-content-body h3 { font-size: 22px; }
.services-single-section .service-content-body h4 { font-size: 19px; }

.services-single-section .service-content-body h1 + p,
.services-single-section .service-content-body h2 + p,
.services-single-section .service-content-body h3 + p,
.services-single-section .service-content-body h4 + p {
    margin-top: 0;
}

.services-single-section .service-content-body p {
    margin: 0 0 8px !important;
    color: #334155;
    font-size: 16px;
    line-height: 1.52;
}

/*
 * Editör boş satırı: <p><br></p> — tam paragraf (8px + 1.52 lh) kadar şişirmeyelim.
 * br'ı display:none yapıp margin ile simüle etmek, ardışık boş paragraflarda margin-collapse
 * yüzünden çoklu Enter'ın tek/ sıfır boşluğa düşmesine yol açıyordu.
 */
.services-single-section .service-content-body p:empty,
.services-single-section .service-content-body p:has(> br:only-child) {
    margin: 0 0 4px !important;
    padding: 0 !important;
    line-height: 1.28 !important;
    min-height: 0;
    font-size: inherit !important;
}
.services-single-section .service-content-body p:empty {
    min-height: 1.28em;
}
.services-single-section .service-content-body p:has(> br:only-child) br {
    line-height: inherit;
}

/* Bazen editör yalnızca <br> ile boş başlık üretir */
.services-single-section .service-content-body h2:has(> br:only-child),
.services-single-section .service-content-body h3:has(> br:only-child),
.services-single-section .service-content-body h4:has(> br:only-child) {
    margin: 0 0 6px !important;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
    min-height: 0;
    overflow: hidden;
}
.services-single-section .service-content-body h2:has(> br:only-child) br,
.services-single-section .service-content-body h3:has(> br:only-child) br,
.services-single-section .service-content-body h4:has(> br:only-child) br {
    display: none;
}

.services-single-section .service-content-body ul,
.services-single-section .service-content-body ol {
    margin: 0 0 8px;
    padding-left: 22px;
}

/* style.css’teki ul,li sıfırlaması; ürün açıklaması listelerinde nokta/numara görünsün */
.services-single-section .service-content-body ul li {
    list-style-type: disc;
    list-style-position: outside;
}

.services-single-section .service-content-body ol li {
    list-style-type: decimal;
    list-style-position: outside;
}

.services-single-section .service-content-body li {
    margin-bottom: 3px;
    color: #334155;
    line-height: 1.52;
}

.services-single-section .service-content-body a {
    color: #2E90FF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.services-single-section .service-content-body blockquote {
    margin: 8px 0;
    padding: 8px 12px;
    border-left: 4px solid #2E90FF;
    background: #f8fbff;
    color: #334155;
    line-height: 1.52;
}

.services-single-section .service-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 8px 0;
}

@media (max-width: 991px) {
    .services-single-section .service-content-panel {
        border: none;
    }

    .services-single-section .service-content-body {
        padding: 8px 0 0;
        font-size: 15px;
        line-height: 1.52;
    }

    .services-single-section .service-content-body h1 { font-size: 24px; }
    .services-single-section .service-content-body h2 { font-size: 22px; }
    .services-single-section .service-content-body h3 { font-size: 19px; }
    .services-single-section .service-content-body h4 { font-size: 17px; }
    .services-single-section .service-content-body p { font-size: 15px; line-height: 1.52; }
}

@media (max-width: 767px) {
    /* Mobil: sekme bloğu üst boşluğu (ürün detayda ayrıca sıfırlanır — başlık şeridine yapışık) */
    .services-single-section .service-content-tabs {
        margin-top: 18px;
    }
    body.hizmet-page .services-single-section .service-content-tabs {
        margin-top: 0;
    }

    /* Mobil: sekmeler tek sıra, yan yana; taşanlar yatay kaydırma ile erişilir */
    .services-single-section .service-content-nav {
        gap: 8px;
        flex-wrap: nowrap;
        align-items: stretch;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 4px;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-single-section .service-content-nav::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .services-single-section .service-content-nav li {
        flex: 0 0 auto;
    }

    .services-single-section .service-content-nav li:not(:last-child) {
        border-right: none;
    }

    .services-single-section .service-content-nav button {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: auto;
        white-space: nowrap;
        min-height: 44px;
        padding: 11px 14px;
    }

    .services-single-section .service-content-nav li:not(.active) button:hover {
        color: #475467;
        background: #f8fafc;
        border-color: transparent;
    }

body.hizmet-page .services-single-section .service-content-nav {
    border-bottom: 1px solid rgba(224, 224, 224, 0.85);
    padding-top: 12px;
    padding-bottom: 12px;
    background: #fff;
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}
}

.services-single-section .service-title-wrapper .section-title-row__btn {
    display: none;
}

@media (min-width: 992px) {
    .services-single-section .service-title-wrapper .section-title-row__btn {
        display: inline-flex;
    }
}

/* Masaüstü/tablet: yapışkan sarmalayıcı + ölçüm elemanları devre dışı */
@media (min-width: 768px) {
    .product-detail-mobile-sticky-bar,
    .product-detail-mobile-sticky-sentinel,
    .product-detail-mobile-sticky-spacer {
        display: contents;
    }
}

/* Mobil ürün detay: galeri altı başlık şeridi kapalı; başlık üst navbar’da (.navbar-service-title) */
.product-mobile-subnav {
    display: none;
}

@media (max-width: 767px) {
    /*
     * Mobil ürün detay: style.css .services-single-section { padding-top: 8px } + modül kurallarını sıfırla;
     * yalnızca bu kırılımda — masaüstü/tablet yukarıdaki 992px / max-width 991px kurallarında kalır.
     */
    body.hizmet-page .services-single-section {
        padding-top: 0 !important;
        padding-bottom: 18px;
    }

    /* Ölçüm/spacer artık kullanılmıyor; DOM uyumluluğu için sıfır yükseklik */
    .product-detail-mobile-sticky-sentinel {
        height: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
        pointer-events: none;
        visibility: hidden;
    }

    .product-detail-mobile-sticky-spacer {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        overflow: hidden;
        pointer-events: none;
        transition: none;
    }

    body.hizmet-page .product-detail-mobile-sticky-bar {
        position: relative;
        z-index: 9990;
        background-color: #ffffff;
    }

    body.hizmet-page .product-mobile-subnav {
        display: none !important;
    }
}
