/* === Posttype category visibility enhancement for banner area === */
.posttype-cats {
    padding-top: 8px; /* üst boşluk */
}

.posttype-cats .nav {
    justify-content: center; /* ortala */
    flex-wrap: wrap;
    gap: 4px;
}

.posttype-cats .nav-link {
    color: #111 !important;
    background: transparent !important;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    padding: 6px 14px !important;
}

.posttype-cats .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* Aktif (seçili) kategori — dikkat çekici sarı ton */
.posttype-cats .nav-link.active {
    background-color: #ffc107 !important; /* bg-warning tonu */
    color: #111 !important;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Mobilde alt çizgi / kenarlık istemiyorsan */
.posttype-cats .nav-link:focus,
.posttype-cats .nav-link:active {
    outline: none;
    box-shadow: none !important;
    text-decoration: none !important;
}

.categoryNav .nav-link:not(.active):hover {
    color: #249100 !important;
    transition: color 0.2s ease;
}

.text-overflow-one-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  hyphens: none;
}

/* Ek: yeşil arka plan üzerinde kontrastı artır */
@media (max-width: 991px) {
    .posttype-cats .nav-link {
        color: #000 !important;
    }
    .posttype-cats .nav-link.active {
        color: #111 !important;
    }
    .categoryNav .nav-link:not(.active):hover {
        color: #249100 !important;
        transition: color 0.2s ease;
    }
}

/* === MAGICAL TIPS COOKIE BANNER === */
.mag-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: linear-gradient(90deg, #009c3b 0%, #00b543 50%, #009c3b 100%);
    color: #ffffff;
    padding: 14px 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.20);
}

/* İç yapı */
.mag-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.mag-cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.45;
}

/* Buton grubu */
.mag-cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* === Accept All (Primary Yellow Button) === */
.mag-cookie-btn-primary {
    background-color: #FFDF00;  /* Magical Tips sarı */
    border: 1px solid #FFDF00;
    color: #000000;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.mag-cookie-btn-primary:hover {
    background-color: #e5c700;
    border-color: #e5c700;
}

/* === Only Necessary (Outline Green Button) === */
.mag-cookie-btn-outline {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.80);
    color: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s ease;
}

.mag-cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .mag-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .mag-cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
