.nm-view-product-btn {
    color: #171717;
    font-weight: bold;
    text-decoration: underline !important;
}

.nm-read-more-button {
    color: black;
    text-decoration: underline !important;
    font-weight: 600;
}

.custom-icons {
    display: flex;
    align-items: center;
    gap: 20px; /* İkonlar arası boşluk */
    font-family: Arial, sans-serif; /* Font tipi */
    font-size: 16px; /* Yazı boyutu */
    justify-content: flex-end;
    margin-top: 10px;
}

#masthead {
    padding-left: 15px;
    padding-right: 15px;
}

.custom-icons a {
    text-decoration: none;
    color: #171717; /* Yazı ve ikon rengi */
    display: flex;
    align-items: center;
    gap: 5px; /* Yazı ve ikon arası boşluk */
    position: relative;

}

.custom-icons a .icon {
    display: block;
    width: 14px; /* SVG genişliği */
    height: 14px; /* SVG yüksekliği */
    fill: currentColor; /* SVG rengi, a'nın rengini alır */
}

.custom-icons .cart-count {
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    padding: 0 6px;
    position: absolute;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -5px;
    transform: translate(50%, -50%);
}

.language-selector {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #fff;
    color: #171717;
    padding: 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.arrow {
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 60px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-selector:hover .dropdown-content {
    display: block;
}

/* Alfabetik indeks stilini belirle */
.alfabetik-indeks {
    text-align: center;
    margin-bottom: 20px;
}

.alfabetik-indeks a.aktif {
    color: #0073aa;
    text-decoration: none;
    margin-right: 5px;
    padding: 5px;
    border: 1px solid #0073aa;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.alfabetik-indeks a.aktif:hover {
    background-color: #0073aa;
    color: #ffffff;
}

.alfabetik-indeks span.pasif {
    color: #cccccc;
    margin-right: 5px;
    padding: 5px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.alfabetik-indeks {
    text-align: center;
    margin-bottom: 30px;
}

.alfabetik-indeks a.aktif,
.alfabetik-indeks span.pasif {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
}

.alfabetik-indeks a.aktif:hover {
    background-color: #f8f8f8;
}

.harf-grubu {
    margin-bottom: 30px;
}

.harf-basligi {
    margin-bottom: 20px;
    text-align: center;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-title {
    margin-bottom: 10px;
}

.card-text {
    flex-grow: 1;
}

.btn-primary {
    margin-top: 15px;
    align-self: start;
}

@media (max-width: 768px) {
    .col-6 {
        width: 50%;
    }

    .col-md-4 {
        width: 33.333333%;
    }
}


/* Header

/* Genel Header Stili */
.astro-dijital-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff; /* Arka plan rengini ayarlayın */
    padding: 10px 20px; /* Üst ve alttan 10px, sağdan ve soldan 20px padding */
}

/* Menü Stili */
.astro-dijital-header nav {
    display: flex;
}

/* Menü Öğeleri Stili */
.astro-dijital-header nav a {
    text-decoration: none;
    color: #000; /* Menü öğeleri için renk */
    margin: 0 10px; /* Menü öğeleri arası mesafe */
    white-space: nowrap; /* Menü öğelerinin satır atlamasını engelle */
}

/* Logo Stili */
.astro-dijital-header .navbar-center {
    flex-grow: 1;
    display: flex;
    justify-content: center; /* Merkeze hizala */
}

/* Sağ Menü ve İkonlar Stili */
.astro-dijital-header .navbar-right {
    display: flex;
    align-items: center;
}

/* Dropdown Menü Stili */
.language-selector {
    position: relative;
    cursor: pointer;
}

.language-selector .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.language-selector:hover .dropdown-content {
    display: block; /* Hover olduğunda göster */
}

/* Dropdown Menü Öğeleri Stili */
.language-selector .dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000; /* Dropdown menü öğeleri için renk */
}


/* Responsive Tasarım */
@media (max-width: 768px) {
    .astro-dijital-header {
        flex-direction: column;
    }

    .astro-dijital-header nav, .navbar-center, .navbar-right {
        justify-content: center;
        margin: 5px 0;
    }

    .navbar-center {
        order: -1; /* Logo her zaman en üste gelsin */
    }
}

.cizgili-btn {
    color: #171717;
    font-weight: bold;
    text-decoration: underline !important;
}

.btn-black {
    background: black;
    color: white;
}

.nm-single-post-meta-top {
    display: none !important;
}

.nm-post-content img {
    width: 100%;

}

header .dropdown button {
    color: black;
    background: none;
    font-size: 14px;
    border: none;
}

.nav_link {
    font-size: 14px;
}

.custom-image {
    height: 200px; /* Görseller için sabit yükseklik */
    object-fit: cover; /* Görsellerin boyutlarını koruyarak kutuya sığmasını sağla */
}

.form-row {
    display: block !important;
}

.touch.has-hover .products.has-action-links:not(.attributes-position-details) li:hover .price, .no-touch .products.has-action-links li:hover .price {
    opacity: inherit !important;
}

.blog-header-h3 {
    color: #777777;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.nm-banner-slider .flickity-prev-next-button,
.nm-banner-slider .slick-prev,
.nm-banner-slider .slick-next {
    opacity: 1 !important;
}

/* Swiper Slider Stilleri */
.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 600px !important;
    overflow: hidden; /* Taşan içerikleri gizle */
    background-size: cover; /* Resmi tam olarak kapla */
    background-position: center; /* Resmi ortala */
    background-repeat: no-repeat; /* Resmin tekrar etmesini engelle */
}

.swiper-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Video içeriğinin kutuya sığmasını sağlar */
    object-position: center; /* Videonun ortalanmasını sağlar */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Overlay tam ekranı kaplar */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.center-image {
    max-width: 100%;
    height: auto;
}

.large-image {
    width: 100%;
}

.swiper-button {
    margin-top: 20px;
    padding: 5px 10px;
    border: 2px solid #000;
    background-color: transparent;
    color: #000;
    border-radius: 0;
    position: absolute;
    font-size: 14px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.swiper-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    display: block;
    z-index: 1000;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #fff;
    font-size: 14px !important;
}

.swiper-pagination {
    bottom: 10px !important; /* Bulletları daha aşağıya yerleştir */
}
@media (max-width: 768px) {
    .swiper-slide {
        background-size: cover; /* Resmi tam olarak kapla */
        background-position: center; /* Resmi ortala */
    }

    .swiper-button {
        font-size: 8px; /* Mobilde font boyutunu 8px yap */
    }

    /* H2 başlıklarını küçült */
    .swiper-slide h2 {
        font-size: 12px; /* H2 başlığını 16px yap */
    }

    /* Paragraf metinlerini küçült */
    .swiper-slide p {
        font-size: 9px; /* Paragraf metnini 12px yap */
    }
    .video-wrapper {
        height: 100% !important; /* Mobilde video-wrapper yüksekliğini 100px yap */
    }
}
