/* New version */

body {
    font-family: "Open Sans", sans-serif;
}
header {
    background: #ffffff;
}


/* Ana Konteyner */
/* Ana Konteyner */
.top-bar {
    background-color: #3e8a55;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0; /* Yatay padding'i kaldırıyoruz, çünkü .center yönetecek */
    min-height: 60px;
    display: flex; /* dikey ortalama için flex kalmalı */
    align-items: center; /* dikey ortalama için */
}

/* YENİ EKLENEN KURAL */
.top-bar .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* .center genişliğinin tamamını kullanması için */
}

/* Sağdaki İletişim Grubu */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Elemanlar arası boşluk */
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-title {
    font-size: 14px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8); /* Başlığı biraz daha sönük yapalım */
}

.contact-item {
    display: flex; /* İkon ve metni yanyana hizalamak için */
    align-items: center;
    gap: 8px; /* İkon ile metin arası boşluk */
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-item:hover {
    color: #e0e0e0;
    text-decoration: underline;
}

.contact-item i {
    font-size: 16px; /* İkon boyutu */
}


/* Teklif Al Butonu */
.btn-offer {
    background-color: #ffffff;
    color: #3e8a55 !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Hafif bir gölge */
}

.btn-offer:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px); /* Butonu hafif yukarı kaldırır */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}


/* Mobil Cihazlar için (Örnek: 768px altı) */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column; /* Elemanları alt alta dizer */
        justify-content: center;
        padding: 15px;
        gap: 15px; /* Dikey boşluk */
        min-height: auto;
    }

    .contact-info {
        flex-direction: column; /* İletişim bilgilerini de alt alta dizer */
        gap: 10px;
        text-align: center;
    }

    .contact-title {
        display: none; /* Mobilde "BİZE ULAŞIN" yazısını gizleyebiliriz, yer kazanmak için */
    }
}


/* -------------------------------------------- */
/* Dil değiştirici ana konteyneri */
.language-switcher ul {
    list-style: none; /* Liste noktalarını kaldır */
    margin: 0;
    padding: 0;
    display: flex; /* En önemli kısım: elemanları yan yana dizer */
    align-items: center;
    gap: 15px; /* Dil seçenekleri arasına boşluk koyar */
    flex-wrap: wrap; /* Mobilde sığmazsa alt satıra indirir */
}

/* Her bir dil linki */
.language-switcher li a {
    display: flex; /* Bayrak ve metni yan yana hizalar */
    align-items: center;
    gap: 8px; /* Bayrak ile metin arasına boşluk koyar */
    text-decoration: none;
    color: #333; /* Metin rengi (sitenize göre değiştirebilirsiniz) */
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out, color 0.2s;
}

/* Üzerine gelince (hover) efekti */
.language-switcher li a:hover {
    background-color: #f0f0f0; /* Hafif bir arka plan rengi */
    color: #000;
}

/* Dil Değiştirici Bayrak Stilleri */
.language-switcher .flag-icon {
    /* Boyutlandırma */
    width: 1.333em;
    height: 1em;
    line-height: 1em;
    
    /* Görsel Stiller */
    border-radius: 50%; /* Yuvarlak görünüm */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25); /* Mevcut gölge */
    
    /* YENİ EKLENECEK KISIM: KENAR ÇİZGİSİ */
    border: 1px solid rgba(62, 138, 85, 0.4); /* Ana yeşil renginin %40 şeffaflığı */
    /* Alternatif (Daha nötr gri): border: 1px solid rgba(0, 0, 0, 0.15); */
    
    /* Arka plan resminin doğru oturmasını garantiler */
    background-size: cover;
    background-position: center;
}

/* Aktif dilin stilini belirlemek için (isteğe bağlı) */
.language-switcher li.active a {
    font-weight: bold;
    color: #3e8a55; /* Sitenizin ana rengiyle uyumlu olabilir */
    cursor: default;
}

/* Mobil cihazlarda sadece bayrak göstermek için (İsteğe Bağlı Gelişmiş Özellik) */
@media (max-width: 768px) {
    .language-switcher .lang-text {
        display: none; /* Küçük ekranlarda dil yazılarını gizle */
    }
    .language-switcher ul {
        gap: 10px; /* Boşluğu azalt */
    }
    .language-switcher li a {
        padding: 5px; /* Sadece bayrak kalacağı için padding'i ayarla */
    }
}

/* Flag-icon-css boyut sorununu çözmek için */
.flag-icon {
    width: 1.333em;  /* Genişlik */
    height: 1em;     /* Yükseklik */
    line-height: 1em;
    border-radius: 2px; /* Kenarları hafif yuvarlatır (isteğe bağlı) */
    box-shadow: 0 1px 2px rgba(0,0,0,0.2); /* Hafif gölge (isteğe bağlı) */
}

/* -------------------------------------------- */
header .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo a {
    display: flex;
    max-width: 460px;
    align-items: center;
}
header .logo img {
    width: 50%;
    padding: 10px 30px 10px 0;
}
header .logo span {
    width: 80%;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    border-left: 1px solid #dddddd;
    padding: 20px 0 20px 30px;
}
header .header-right {
    display: flex;
    align-items: center;
}
header .header-right small {
    display: block;
    font-size: 12px;
    color: #4da266;
	font-weight: bold;
}
header .header-right > div {
    padding: 30px;
    border-right: 1px solid #dddddd;
}
header .header-right > div:last-child {
    border-right: none;
}
header .header-right > div span {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    display: block;
}
header .header-right .lang > a {
    font-size: 13px;
    color: #000;
}
header .header-right .lang > a em {
    font-style: normal;
}
header .header-right .lang {
    position: relative;
}
header .header-right .lang ul {
    display: none;
    padding: 10px 0;
    list-style: none;
    border-radius: 2px;
    background: #fff;
    position: absolute;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    top: 70px;
    z-index: 999;
    right: 0;
}
header .header-right .lang ul:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: -10px;
    margin: auto;
    right: 25px;
}
header .header-right .lang ul li a {
    display: block;
    padding: 6px 20px;
    font-size: 13px;
    color: #3e8a55;
}
header .header-right .lang ul li a span {
    display: inline-block;
}
.menu {
    background: #3e8a55;
    border-top: 1px solid #3e8a55;
}
p iframe {
    width: 100%;
}
.menu .center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-area {
    display: none;
    background: #fff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}
.search-area input {
    border: none;
    margin-bottom: 0;
    padding: 20px 0;
}
.search-results ul {
    list-style: none;
}
.search-results ul li {
    margin-bottom: 5px;
}
.search-results ul li a {
    font-size: 14px;
    color: #000;
}
.search-results ul li a:hover {
    color: #034d87;
}
.search-btn a {
    display: block;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.5);
}
.search-btn a:hover {
    color: rgba(255, 255, 255, 0.9);
}
img {
    object-fit: contain;
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.slider {
    position: relative;
    overflow: hidden;
}
.slider .owl-item.active span {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.2s;
}
.slider .owl-item.active h5 {
    font-size: 20px;
    display: inline-block;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.6s;
}
.slider .owl-item.active .btn {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1s;
}
.slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #201f1f;
    background: linear-gradient(0deg, rgba(32, 31, 31, 0.8) 0%, rgba(32, 31, 31, 0.2) 100%);
}
.slider .overlay .center {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.slider .slide-content span {
    font-size: 50px;
    line-height: 54px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}
.slider .slide-content h5 {
    font-size: 20px;
    display: block;
    color: #fff;
    font-weight: 300;
}
.slider .slide-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.slider .slide-image {
    text-align: center;
}
.slider .owl-item.active .slide-image {
    text-align: center;
    display: inline-block;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 0.3s;
}
.slider .slide-content img {
    width: auto !important;
    display: inline-block !important;
}
.slider .slide-content .btn {
    margin-top: 20px;
}
.slider .owl-theme .owl-nav {
    margin-top: 0 !important;
}
.slider .owl-theme .owl-dots .owl-dot {
    width: auto;
}
.slider .owl-dots {
    position: absolute;
    top: 0;
    height: 100%;
    align-items: center;
    display: inline-flex;
    left: 20px;
    width: 10px;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
}
.slider .owl-theme .owl-dots .owl-dot.active span,
.slider .owl-theme .owl-dots .owl-dot:hover span {
    opacity: 1 !important;
}
.slider {
    position: relative;
}
.slider .owl-carousel .owl-nav button.owl-prev,
.slider .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    background: #e0e2e4;
    width: 42px;
    height: 42px;
    color: #154c9d;
    border-radius: 42px;
    line-height: 44px;
}
.slider .owl-carousel .owl-nav button.owl-next span,
.slider .owl-carousel .owl-nav button.owl-prev span {
    font-size: 25px;
    line-height: 25px;
}
.slider .owl-carousel .owl-nav button.owl-prev {
    left: 40px;
}
.slider .owl-carousel .owl-nav button.owl-next {
    right: 40px;
}
.page:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
p a {
    color: #4da266;
    font-weight: 500;
}
p a:hover {
    color: #3e8a55;
    text-decoration: underline;
}
.sub-content {
    background: #f7f7f7;
    padding: 30px;
    margin-top: 20px;
    border-radius: 3px;
}
.sub-content h2 {
    font-size: 20px;
}
.sub-content h3 {
    font-size: 16px;
}
.sub-content p {
    font-size: 14px;
}
.sub-content ul,
.blog-content ul {
    font-size: 14px;
    margin: 20px;
}
.blog-content p a {
    color: #6a6a6a;
    font-weight: 500;
    text-decoration: underline;
}
.blog-content img {
    margin-bottom: 20px;
}
.blog-content .center {
    max-width: 800px;
}
.blog-content h1 {
    margin-bottom: 20px;
    margin-top: 20px;
}
.blog-content p a:hover {
    text-decoration: none;
    color: #454545;
}
.blog-content ul li a {
    color: #6a6a6a;
    font-weight: 500;
    text-decoration: underline;
}
.blog-content ul li a:hover {
    text-decoration: none;
    color: #454545;
}
.cat-box {
    padding: 40px;
    border: 1px solid #ebebeb;
}
.cat-box ul {
    margin: 20px;
    line-height: 28px;
    list-style: none;
}
.cat-box ul li a {
    color: #6a6a6a;
    font-size: 14px;
    font-weight: 500;
}
.cat-box ul li a:hover {
    color: #367a4a;
}
.cat-box p {
    font-weight: 500;
    color: #4fa568;
}
.cat-box h2 a {
    color: #4fa568;
}
.cat-box h2 a:hover {
    color: #367a4a;
}
.home-cats .cat-box:nth-child(1),
.home-cats .cat-box:nth-child(2) {
    background-size: cover;
}
.home-cats .cat-box:nth-child(1) {
    background-image: url(../img/crushing-screening.jpg);
    border-right: none;
}
.home-cats .cat-box:nth-child(2) {
    background-image: url(../img/concerte-batching-plant.jpg);
}
.home-about:before {
    content: "";
    background: #f7f7f7;
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
}
.sidebar-content {
    display: flex;
}
.sidebar-content .content {
    flex: 8;
    width: 100%;
}
.sidebar-content .sidebar {
    flex: 4;
    width: 100%;
    max-width: 280px;
    margin-left: 40px;
    position: relative;
}
.sidebar-content .sidebar .side-menu {
    background: #3e8a55;
    border-radius: 3px;
    padding: 30px;
    position: sticky;
    top: 120px;
    margin-bottom: 40px;
}
.sidebar-content .sidebar .side-menu ul {
    list-style: none;
}
.sidebar-content .sidebar .side-menu ul li {
    border-bottom: 1px solid #214e2f;
}
.sidebar-content .sidebar .side-menu ul li:last-child {
    border-bottom: none;
}
.sidebar-content .sidebar .side-menu ul li a {
    font-size: 14px;
    display: block;
    padding: 15px 0;
    color: #fff;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif;
}
.sidebar-content .sidebar .side-menu ul li.active a,
.sidebar-content .side-menu ul li a:hover {
    opacity: 0.5;
}
.news-box {
    text-align: center;
}
.news-box .news-ex {
    padding: 20px;
}
.news-box .news-ex p {
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page .news-box {
    text-align: left;
    background: #f7f7f7;
    border-radius: 3px;
}
.news-page .news-box a {
    display: block;
    padding: 30px;
}
.news-page .news-box:hover {
    background: #f1f1f1;
}
.news-page .news-box .news-ex {
    padding: 0;
}
.news-page .news-box .news-ex h3 {
    font-size: 18px;
}
.news-page .news-box .news-ex p {
    font-size: 14px;
    line-height: 20px;
}
.product-box {
    text-align: center;
}
.product-box .product-ex {
    padding: 20px;
}
.product-box .product-ex span {
    font-size: 14px;
    color: #666;
}
.product-gallery .item img {
    width: 100%;
}
.product-gallery .owl-nav button.owl-next,
.product-gallery .owl-nav button.owl-prev {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 50%;
    z-index: 999;
    background: none;
    color: #fff;
    width: 42px;
    height: 42px;
    background: #fff !important;
}
.product-gallery .owl-nav button.owl-next:hover,
.product-gallery .owl-nav button.owl-prev:hover {
    color: #333;
    background: #fff;
}
.product-gallery .owl-nav button.owl-next {
    right: 0;
    z-index: 999;
}
.product-gallery .owl-nav button.owl-prev {
    left: 0;
    z-index: 999;
}
.product-gallery {
    overflow: hidden;
    width: 40%;
}
.product-detail .center {
    display: flex;
    gap: 40px;
}
.product-content {
    width: 60%;
}
.product-content h2 {
    font-size: 18px;
}
.product-content ul,
.product-content ol {
    margin: 20px;
}
.related-products,
.related-news {
    background: #f7f7f7;
}
.address h1 {
    font-size: 28px;
}
.address ul {
    list-style: none;
}
.address ul li {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ebebeb;
}
.address ul li:last-child {
    border-bottom: none;
}
.address ul li .icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    min-width: 52px;
    color: #51a769;
    border-radius: 3px;
    text-align: center;
    font-size: 24px;
    margin-right: 20px;
}
.address ul li small {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 18px;
}
.address ul li a {
    color: #444;
}
.sm ol {
    list-style: none;
    position: relative;
    z-index: 1;
}
.sm ol li {
    display: inline-block;
}
.sm ol li a {
    display: block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background: #4da266;
    font-size: 18px;
    border-radius: 2px;
}
.sm ol li a:hover {
    background: #091c3b;
}
.sm ol p {
    color: #7e93b6;
}
.sm ol a {
    font-size: 13px;
    color: #7e93b6;
    text-decoration: underline;
}
.sm ol a:hover {
    opacity: 0.5;
}
footer {
    background: #3e8a55;
}
footer .center:nth-child(1) {
    border-top: 4px solid #4da266;
}
footer h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
}
footer .f-nav ul {
    line-height: 26px;
}
footer .f-nav ul li a {
    color: #fff;
    font-size: 14px;
}
footer .f-nav ul li a:hover {
    opacity: 0.5;
}
footer .f-contact p {
    color: #fff;
    margin-bottom: 10px;
}
footer .f-contact p a {
    color: #fff;
    margin-bottom: 10px;
    text-decoration: none;
}
footer .f-contact p a:hover {
    color: #4da266;
}
footer .f-contact i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}
footer .center:nth-child(2) ul {
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 1;
}
footer .center:nth-child(2) ul li {
    display: inline-block;
}
footer .center:nth-child(2) ul li a {
    display: block;
    color: #ffffff;
    padding: 5px;
    font-size: 14px;
}
footer .center:nth-child(2) ul li a:hover {
    text-decoration: underline;
}
footer .center:nth-child(3) {
    position: relative;
}
footer .center:nth-child(3):before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background: #02183e;
    top: 50%;
    z-index: 0;
    left: 0;
    right: 0;
}
footer .center:nth-child(3) ul {
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 1;
}
footer .center:nth-child(3) ul li {
    display: inline-block;
}
footer .center:nth-child(3) ul li a {
    display: block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    color: #fff;
    background: #4da266;
    font-size: 18px;
    border-radius: 2px;
}
footer .center:nth-child(3) ul li a:hover {
    background: #000000;
}
footer .center:nth-child(4) p {
    color: #ffffff;
}
footer .center:nth-child(4) a {
    font-size: 13px;
    color: #7e93b6;
    text-decoration: underline;
}
footer .center:nth-child(4) a:hover {
    opacity: 0.5;
}
.blog-content ul li {
    margin-bottom: 10px;
}
#cssmenu {
    position: relative;
    z-index: 99;
    font-family: "Josefin Sans", sans-serif;
}
#cssmenu > ul {
    display: flex;
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
    list-style: none;
    line-height: 1;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#cssmenu > ul > li > a {
    display: block;
    font-size: 13px;
    /*font-weight: 700;*/
    color: #fff;
    padding: 0 10px;
    line-height: 60px;
    letter-spacing: 1px;
}
#cssmenu > ul > li.active > a,
#cssmenu ul li:hover > a {
    color: #000000;
    position: relative;
	background-color: #3e8a55;
}
#cssmenu #menu-button {
    display: none;
}
#cssmenu ul ul {
    position: absolute;
    left: -9999px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    text-align: left;
    background: #fff;
    padding: 0px 0;
    border-radius: 3px;
}
#cssmenu.align-right ul ul {
    text-align: right;
}
#cssmenu li:hover > ul {
    left: auto;
}
#cssmenu.align-right li:hover > ul {
    left: auto;
    right: 0;
}
#cssmenu ul ul ul {
    margin-left: 100%;
    top: 0;
}
#cssmenu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}
#cssmenu ul ul li a {
    padding: 12px 20px;
    font-size: 14px;
    display: block;
    width: 300px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}
#cssmenu ul ul ul li a {
    width: 280px;
}
#cssmenu ul ul li a:hover {
    color: #000000;
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
    border-bottom: 0;
}
#cssmenu .has-sub .has-sub:before {
    line-height: 30px;
    color: #333;
}
#cssmenu .has-sub {
    position: relative;
    margin-right: 10px;
}
#cssmenu .has-sub:before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: -6px;
    line-height: 60px;
    color: #fff;
}
#cssmenu .has-sub:hover:before {
    color: #4da266;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
#cssmenu .active.has-sub:before {
    color: #4da266;
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0 !important;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: #367a4a !important;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    border-radius: 50px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
table tbody tr td {
    white-space: nowrap;
}
.whatsapp-float {
    right: 40px;
    bottom: 40px;
}

@media only screen and (max-width: 1249px) {
    #cssmenu > ul > li.active > a,
    #cssmenu ul li:hover > a {
        opacity: 1;
        position: relative;
    }
    #cssmenu {
        position: absolute;
        left: 0;
        right: 0;
        width: auto;
        text-align: left;
        margin: 0;
    }
    #cssmenu > ul > li > a:hover {
        background: #2a2135;
        color: #000;
    }
    #cssmenu > ul {
        margin: 0;
        position: relative;
    }
    #cssmenu > ul {
        display: none;
        z-index: 99999;
        position: absolute;
        top: 0;
        left: 10px;
        right: 10px;
    }
    #cssmenu ul {
        display: none;
        z-index: 99999;
        position: absolute;
    }
    #cssmenu:after,
    #cssmenu > ul:after {
        content: ".";
        display: block;
        clear: both;
        visibility: hidden;
        line-height: 0;
        height: 0;
    }
    #cssmenu.align-center > ul,
    #cssmenu.align-right ul ul {
        text-align: left;
    }
    #cssmenu ul li,
    #cssmenu ul ul li,
    #cssmenu ul li:hover > ul > li {
        width: 100%;
        height: auto;
    }
    #cssmenu > ul > li,
    #cssmenu.align-center > ul > li,
    #cssmenu.align-right > ul > li {
        float: none;
        display: block;
    }
    #cssmenu > ul > ul > li > a {
        font-size: 12px;
        color: #fff;
        background: none;
        padding: 15px 20px 20px 30px;
    }
    #cssmenu > ul > li > a {
        padding: 20px !important;
        color: #fff !important;
        display: block;
        background: #367a49;
        border-bottom: 1px solid #367a49;
        font-size: 14px;
        line-height: normal !important;
    }
    #cssmenu > ul > li {
        margin: 0;
    }
    #cssmenu ul ul li a {
        padding: 15px 20px;
    }
    #cssmenu ul ul {
        padding: 0 !important;
    }
    #cssmenu ul ul li:hover > a,
    #cssmenu ul ul li a:hover {
        color: #fff;
        background: #000;
    }
    #cssmenu ul ul li > a,
    #cssmenu ul ul li a {
        background: #214e2f;
    }
    #cssmenu ul ul ul li a {
        padding-left: 40px;
    }
    #cssmenu ul ul ul ul li a {
        padding-left: 40px;
    }
    #cssmenu > ul > li {
        border-right: none;
    }
    #cssmenu ul ul,
    #cssmenu ul ul ul {
        position: relative;
        left: 0;
        right: auto;
        width: 100%;
        margin: 0;
    }
    #cssmenu #menu-button {
        display: block;
        color: #000;
        cursor: pointer;
        font-size: 12px;
        height: 48px;
        background: #367a49;
        width: 48px;
        position: absolute;
        top: -62px;
        right: 20px;
        border-radius: 2px;
    }
    #cssmenu .submenu-button {
        position: absolute;
        z-index: 10;
        right: 0;
        top: 0;
        display: block;
        border-left: 1px solid rgba(120, 120, 120, 0.15);
        height: 55px;
        width: 55px;
        cursor: pointer;
    }
    #cssmenu .submenu-button::after {
        content: "";
        position: absolute;
        top: 21px;
        left: 26px;
        display: block;
        width: 1px;
        height: 11px;
        background: #fff;
        z-index: 99;
    }
    #cssmenu .submenu-button::before {
        content: "";
        position: absolute;
        left: 21px;
        top: 26px;
        display: block;
        width: 11px;
        height: 1px;
        background: #fff;
        z-index: 99;
    }
    #cssmenu ul li a,
    #cssmenu ul ul li a {
        width: 100%;
    }
    #cssmenu > ul > li.has-sub > a::after,
    #cssmenu ul ul li.has-sub > a::after,
    #menu-line,
    #cssmenu .submenu-button.submenu-opened:after {
        display: none;
    }
    #cssmenu ul ul li a {
        color: #fff;
    }
    #cssmenu ul ul {
        border-bottom: none;
    }
    #cssmenu ul ul li a {
        border-bottom: 1px solid #444;
    }
    #menu-button {
        width: 55px;
        height: 46px;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        z-index: 12399994;
    }
    #menu-button:after {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        margin: auto;
        position: absolute;
        top: 24px;
        right: 0;
        left: 0;
        display: block;
        height: 4px;
        width: 20px;
        border-top: 2px solid #ddd;
        border-bottom: 2px solid #ddd;
        content: "";
    }
    #menu-button:before {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        margin: auto;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: absolute;
        top: 17px;
        right: 0;
        left: 0;
        display: block;
        height: 2px;
        width: 20px;
        background: #ddd;
        content: "";
    }
    #menu-button.menu-opened:after {
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        top: 22px;
        border: 0;
        height: 2px;
        width: 19px;
        background: #fff;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #menu-button.menu-opened:before {
        top: 22px;
        background: #fff;
        width: 19px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    header .center {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    header .header-right .mail {
        display: none;
    }
    header .header-right {
        border-bottom: 1px solid #3e8a55;
    }
    header .header-right > div {
        padding: 15px 0;
        border-right: none;
    }
    header .header-right {
        justify-content: space-between;
    }
    header .header-right .lang {
        width: 120px;
        text-align: right;
    }
    header .header-right .lang ul {
        text-align: left;
        top: 60px;
    }
    .slider .slide img {
        height: 60vh;
        object-fit: cover;
    }
    .slider .slide-content span {
        font-size: 28px;
        line-height: 30px;
    }
    .home-cats .cat-box:nth-child(1) {
        margin-bottom: 20px;
    }
    .cat-box {
        padding: 20px;
    }
    .cat-box ul {
        margin: 20px 0;
    }
    h1 {
        font-size: 28px;
        line-height: 30px;
    }
    h3 {
        font-size: 20px;
        line-height: 22px;
    }
    footer {
        text-align: center;
    }
    footer .col-4.gap-40 {
        gap: 20px;
    }
    .home-about:before {
        width: 100%;
    }
    .sidebar-content {
        flex-direction: column;
    }
    .sidebar-content .sidebar {
        max-width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
    .product-detail .center {
        flex-direction: column;
    }
    .product-gallery,
    .product-content {
        width: 100%;
    }
    .product-tech .center .table {
        overflow-x: scroll;
    }
    .address ul li {
        padding: 10px 0;
    }
    .address ul li small {
        font-size: 14px;
    }
    header .logo img {
        width: 50%;
        padding: 10px 20px 10px 0;
    }
    header .logo span {
        width: 50%;
        font-size: 12px;
        padding: 20px 0 20px 20px;
    }
    .slider .owl-dots {
        position: relative;
        height: auto;
        width: 100%;
        flex-direction: row;
        left: 0;
        right: 0;
        top: auto;
        bottom: 30px;
    }
    .news-box .news-ex {
        padding: 20px 0;
    }
    .news-box .news-ex h4 {
        font-size: 16px;
    }
    .news-box .news-ex p {
        font-size: 14px;
        line-height: 16px;
    }
    .search-btn {
        display: none;
    }
    .slider .slide-content h5 {
        font-size: 18px;
    }
    table thead tr th,
    table tbody tr td {
        padding: 10px;
    }
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
    }
}

/* --- SIFIR HATA LOGO DÜZENLEMESİ --- */

/* 1. Link Yapısını Düzenle - Flexbox ile yan yana al */
header .logo .brand-link {
    display: flex !important;
    align-items: center !important; /* Dikeyde tam ortalar */
    text-decoration: none !important;
    height: 100%;
}

/* 2. Resim Ayarları - Eski paddingleri eziyoruz */
header .logo .brand-img {
    width: auto !important;
    max-height: 50px !important; /* Logo yüksekliğini sabitle */
    padding: 0 !important;
    margin: 0 20px 0 0 !important; /* Sağ tarafa 20px boşluk ver */
    border: none !important;
}

/* 3. Metin Kutusu - Dikey Çizgi Burada */
.brand-info {
    display: flex !important;
    flex-direction: column !important; /* Yazıları alt alta diz */
    justify-content: center !important;
    border-left: 2px solid #ccc !important; /* Gri çizgi */
    padding-left: 20px !important; /* Çizgiden sonraki boşluk */
    height: 40px !important; /* Çizgi boyunu ayarlar */
    line-height: normal !important;
}

/* 4. STS GLOBAL MAKİNA Yazısı */
.brand-title {
    font-family: 'Josefin Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    color: #3e8a55 !important;
    line-height: 1 !important;
    white-space: nowrap !important; /* Yazının alt satıra kaymasını engeller */
    border: none !important; /* Eski border kalıntılarını temizle */
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
}

/* 5. LTD. ŞTİ. Yazısı */
.brand-subtitle {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    font-size: 11px !important;
    color: #666 !important;
    letter-spacing: 2px !important;
    margin-top: 3px !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
}

/* --- MOBİL İÇİN DÜZENLEME --- */
@media (max-width: 900px) {
    .brand-title { font-size: 18px !important; }
    .brand-subtitle { font-size: 10px !important; }
    header .logo .brand-img { max-height: 40px !important; }
}

/* --- RESPONSIVE (MOBİL VE TABLET) DÜZELTMESİ --- */

/* 1250px altı (Tablet ve Laptoplar için) */
@media (max-width: 1250px) {
    header .logo .brand-link {
        width: 100% !important;
        justify-content: flex-start !important; /* Sola yasla */
    }
    
    header .logo .brand-img {
        max-height: 40px !important; /* Logoyu biraz küçült */
        margin-right: 15px !important;
    }

    .brand-title {
        font-size: 18px !important; /* Yazı fontunu tablete göre ayarla */
    }
    
    .brand-subtitle {
        font-size: 10px !important;
    }
}

/* 768px altı (Cep Telefonları için - KRİTİK KISIM) */
@media (max-width: 768px) {
    
    /* Logoyu ve yazıyı yan yana tutmaya zorla */
    header .logo .brand-link {
        flex-direction: row !important; 
        align-items: center !important;
        padding: 10px 0 !important; /* Mobilde üstten alttan biraz boşluk */
    }

    /* Logo resmi mobilde daha da küçülsün */
    header .logo .brand-img {
        max-height: 32px !important; /* İdeal mobil yükseklik */
        margin-right: 10px !important; /* Aradaki boşluğu kısalt */
    }

    /* Dikey çizgiyi incelt ve kısalt */
    .brand-info {
        height: 30px !important;
        padding-left: 10px !important;
        border-left-width: 1px !important;
    }

    /* Başlık fontunu ekrana sığacak boyuta getir */
    .brand-title {
        font-size: 15px !important; /* Mobilde taşmayı önler */
        white-space: nowrap !important; /* Asla alt satıra geçmesin */
    }

    /* Alt başlık font ayarı */
    .brand-subtitle {
        font-size: 9px !important;
        letter-spacing: 1px !important;
        margin-top: 2px !important;
    }
    
    /* Sizin mevcut CSS'teki header center yapısını bozmaması için */
    header .center {
        display: flex !important;
        flex-wrap: wrap !important;
    }
}

/* 400px altı (Çok küçük eski telefonlar için ekstra önlem) */
@media (max-width: 400px) {
    .brand-title {
        font-size: 13px !important; /* Daha da küçült */
    }
    header .logo .brand-img {
        max-height: 28px !important;
    }
}
/* --- MOBİL MENÜ VE LOGO ÇAKIŞMASI DÜZELTMESİ --- */

@media (max-width: 1249px) {
    
    /* 1. HEADER YÜKSEKLİĞİNİ KORU & DÜZENLE */
    header .center {
        position: relative !important;
        min-height: 60px !important; /* Header'ın çökmesini engelle */
        padding-bottom: 5px !important;
    }

    /* 2. HAMBURGER MENÜ BUTONU KONUMLANDIRMA */
    #cssmenu #menu-button {
        /* Yeni logo yüksekliğine göre butonu yukarı çekme ayarı */
        top: -55px !important; /* Eskisi -62px idi, şimdi header kısaldığı için azalttık */
        right: 15px !important; /* Sağdan biraz boşluk */
        width: 44px !important; /* Buton boyutunu ideal kare yap */
        height: 44px !important;
        z-index: 9999 !important; /* Her şeyin üstünde dursun */
    }

    /* Buton içindeki çizgileri ortalamak için ince ayar */
    #cssmenu #menu-button:before { top: 16px !important; }
    #cssmenu #menu-button:after { top: 23px !important; }

    /* 3. LOGO ALANI AYARLARI (Yazı butona girmesin) */
    header .logo {
        width: 100% !important;
        display: block !important;
    }

    header .logo .brand-link {
        display: flex !important;
        align-items: center !important;
        /* Sağ tarafta butona yer bırak (ÖNEMLİ: Yazının butonun altına girmesini engeller) */
        padding-right: 60px !important; 
        height: 50px !important; /* Sabit yükseklik */
    }

    header .logo .brand-img {
        max-height: 35px !important; /* Mobil logo boyutu */
        margin-right: 10px !important;
        width: auto !important;
    }

    /* 4. YAZI BOYUTLARI (Mobilde taşmayı önle) */
    .brand-info {
        height: 32px !important;
        justify-content: center !important;
        border-left: 1px solid #ccc !important;
        padding-left: 10px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .brand-title {
        font-size: 16px !important; /* Mobil için ideal okunurluk */
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .brand-subtitle {
        font-size: 10px !important;
        margin-top: 2px !important;
    }
    
    /* 5. KATALOG RESMİNİ DÜZENLE (Mobilde çok büyük kalıp header'ı bozuyor) */
    header .header-right img[alt*="Katalog"] {
        height: 40px !important; /* Katalog resmini küçült */
        width: auto !important;
        margin-top: 5px !important;
    }
}