/*
 * @author Murat Can Başaran
 * @company argex
 * @license Lifetime License (Sonsuza kadar lisanslıdır)
 * @copyright Tüm hakları saklıdır. Bu tema ve içerikler lisanslıdır, izinsiz kopyalanamaz veya çoğaltılamaz.
 */
/* ============================================================
   THE DIGITAL GAZETTE — Core Design System
   Adapted from haber.html — Authentic Newspaper Design
   ============================================================ */

/* ============ CSS VARIABLES ============ */
:root {
    --bg-paper: #F4F1EA;
    --bg-paper-alt: #ece9e0;
    --ink-color: #2b2825;
    --ink-light: #555;
    --ink-faded: #888;
    --accent-red: #8a1c1c;
    --accent-green: #2D7A4B;
    --border-dim: rgba(43, 40, 37, 0.15);
    --border-strong: rgba(43, 40, 37, 0.4);
    --font-headline: 'Frank Ruhl Libre', 'Frank Ruhl Libre', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --font-sans: 'Oswald', 'Source Sans Pro', sans-serif;
    --max-width: 1100px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============ BODY ============ */
body {
    background-color: #1a1a1a;
    font-family: var(--font-body);
    color: var(--ink-color);
    -webkit-font-smoothing: antialiased;
}

/* ============ PAPER TEXTURE ============ */
.paper-texture,
.newspaper-container,
.header,
.nav,
.top-bar {
    background-color: var(--bg-paper);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ============ MÜREKKEP EFEKTİ ============ */
.ink-effect {
    mix-blend-mode: multiply;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}

/* ============ SKIP LINK ============ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent-red);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 100;
    font-family: var(--font-sans);
    font-size: 0.8rem;
}

.skip-link:focus {
    top: 0;
}

/* ============ TOP BAR ============ */
.top-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ink-color);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-bar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar__date {
    font-weight: 500;
    color: var(--ink-color);
}

.top-bar__weather {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--ink-light);
}

.top-bar__weather svg {
    width: 14px;
    height: 14px;
}

.top-bar__right {
    display: flex;
    gap: 1rem;
}

.top-bar__link {
    color: var(--ink-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.top-bar__link:hover {
    color: var(--accent-red);
}

/* ============ MAIN HEADER (Masthead) ============ */
.header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1.25rem; /* Üst ve alt eşit */
    text-align: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__ornament {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-faded);
    min-width: 100px;
}

.header__ornament--left {
    text-align: left;
}

.header__ornament--right {
    text-align: right;
}

.header__issue,
.header__edition,
.header__price,
.header__slogan {
    line-height: 1.6;
}

.header__logo {
    flex: 1;
}

.header__logo a {
    text-decoration: none;
    color: inherit;
}

.header__title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink-color);
    mix-blend-mode: multiply;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
    transform: scaleY(1.08);
    display: inline-block;
    margin: 0; /* Tarayıcı varsayılanı sıfırlandı */
    padding: 0;
}

.header__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--ink-faded);
    margin-top: 0.25rem;
}

.header__tagline::before,
.header__tagline::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--ink-color);
    opacity: 0.3;
}

.header__decoration {
    margin-top: 0.75rem; /* Başlık alt boşlukla eşleştirme */
}

.header__line--thick {
    height: 3px;
    background: var(--ink-color);
}

.header__line--thin {
    height: 1px;
    background: var(--ink-color);
    margin-top: 2px;
}

/* ============ WIDGETS BAR ============ */
.widgets-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.widget-card {
    border: 1px solid var(--border-strong);
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-paper-alt);
    font-family: var(--font-sans);
}

.widget-card__label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-faded);
    display: block;
}

.widget-card__value {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--ink-color);
}

.widget-card__value--green {
    color: var(--accent-green);
}

.widget-card__icon {
    width: 22px;
    height: 22px;
    color: var(--ink-faded);
}

/* ============ TICKER (SON DAKİKA) ============ */
.ticker {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--ink-color);
    color: var(--bg-paper);
    position: relative;
    border-top: 2px solid var(--ink-faded);
    border-bottom: 2px solid var(--ink-faded);
    overflow: hidden;
}

.ticker__label {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--accent-red);
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ticker__wrap {
    overflow: hidden;
    white-space: nowrap;
    padding: 0.4rem 0;
    padding-left: 7.5rem;
}

.ticker__content {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    animation: ticker 35s linear infinite;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ============ NAVIGATION ============ */
.nav {
    max-width: var(--max-width);
    margin: 0 auto;
    border-bottom: 1px solid var(--border-dim);
}

.nav__container {
    padding: 0 1.25rem;
}

.nav__list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nav__item {
    border-right: 1px solid var(--border-dim);
}

.nav__item:last-child {
    border-right: none;
}

.nav__link {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-color);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav__link:hover,
.nav__link--active {
    background: var(--ink-color);
    color: var(--bg-paper);
}

.nav__item--search {
    border-right: none;
    display: flex;
    align-items: center;
}

.nav__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    color: var(--ink-light);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.nav__search-btn:hover {
    color: var(--accent-red);
}

/* ============ IMAGE EFFECTS (HALFTONE/TRAM) ============ */
.newspaper-img-container {
    position: relative;
    overflow: hidden;
    filter: grayscale(100%) contrast(120%);
}

.newspaper-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 1px, transparent 1.5px);
    background-size: 4px 4px;
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.newspaper-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.newspaper-img-container .img-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.2rem 0.5rem;
    backdrop-filter: blur(4px);
    border-top: 1px solid var(--ink-color);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: right;
    color: var(--ink-color);
}

/* ============ DIVIDERS ============ */
.double-border-bottom {
    border-bottom: 3px double var(--border-dim);
}

.classic-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ink-color), transparent);
    opacity: 0.3;
    margin: 1.5rem 0;
}

/* ============ MODAL ============ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal:not([hidden]) {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal__content {
    position: relative;
    background: var(--bg-paper);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink-light);
    cursor: pointer;
}

.modal__title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.modal__actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid var(--ink-color);
}

.btn--primary {
    background: var(--ink-color);
    color: var(--bg-paper);
    border-color: var(--ink-color);
}

.btn--primary:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.btn--secondary {
    background: transparent;
    color: var(--ink-color);
}

.btn--secondary:hover {
    background: var(--ink-color);
    color: var(--bg-paper);
}

/* ============ LOADING ============ */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
    font-family: var(--font-sans);
}

.loading-overlay.is-active {
    display: flex;
}

.loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============ TOAST ============ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 0.75rem 1.25rem;
    background: var(--ink-color);
    color: var(--bg-paper);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.toast--error {
    background: var(--accent-red);
}

.toast--success {
    background: var(--accent-green);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============ FOOTER ============ */
.footer {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--ink-color);
    color: var(--bg-paper);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* Footer Stock Ticker */
.footer .ticker {
    max-width: 100%;
    border-top: none;
}

.footer .ticker__container {
    overflow: hidden;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.footer .ticker__content {
    display: inline-block;
    animation: footer-scroll 25s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--bg-paper);
    opacity: 0.85;
}

.ticker__item small {
    font-weight: 700;
    margin-left: 0.25rem;
}

.ticker__item--up small {
    color: #4ade80;
}

.ticker__item--down small {
    color: #f87171;
}

@keyframes footer-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer Main Content */
.footer__main {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer__column {
    min-width: 0;
}

.footer__title {
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bg-paper);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.4rem;
}

.footer__text {
    font-size: 0.68rem;
    line-height: 1.65;
    opacity: 0.7;
    color: var(--bg-paper);
}

/* Footer Social Links */
.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--bg-paper);
    opacity: 0.6;
    transition: all 0.2s;
    text-decoration: none;
}

.footer__social-link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
}

/* Footer Category & Quick Links */
.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__links li {
    line-height: 1;
}

.footer__links a {
    color: var(--bg-paper);
    text-decoration: none;
    font-size: 0.68rem;
    opacity: 0.6;
    transition: opacity 0.2s;
    display: block;
    padding: 0.1rem 0;
}

.footer__links a:hover {
    opacity: 1;
}

/* Footer Contact */
.footer__contact {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    opacity: 0.7;
    color: var(--bg-paper);
}

.footer__contact svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* Footer Bottom Bar */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.footer__bottom .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: 0.62rem;
    opacity: 0.5;
}

.footer__credits {
    font-size: 0.62rem;
    font-style: italic;
    opacity: 0.4;
}

/* Legacy footer support */
.footer__logo {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer__copy {
    opacity: 0.6;
}

.footer__link {
    color: var(--bg-paper);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer__link:hover {
    opacity: 1;
}

/* ============ COLUMN WRITER (KÖŞE YAZISI) ============ */
.column-writer {
    background: var(--bg-paper-alt);
    padding: 1.25rem;
    border: 1px solid var(--border-strong);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: 1.5rem 0;
    max-width: var(--max-width);
}

.column-writer__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.column-writer__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--ink-color);
    filter: grayscale(100%);
    flex-shrink: 0;
}

.column-writer__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-writer__label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-red);
    margin-bottom: 0.15rem;
}

.column-writer__title {
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.column-writer__author {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--ink-faded);
}

.column-writer__excerpt {
    margin-top: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--ink-light);
    line-height: 1.5;
}

/* ============ AD BLOCK ============ */
.ad-block {
    border: 2px dashed var(--border-strong);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    max-width: var(--max-width);
    margin: 1.5rem auto;
}

.ad-block__label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faded);
    margin-bottom: 0.35rem;
}

.ad-block__title {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.ad-block__tagline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: italic;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e0ded5;
}

::-webkit-scrollbar-thumb {
    background: #8c8880;
    border-radius: 3px;
}

/* ============ RESPONSIVE — TABLET (768px) ============ */
@media (max-width: 768px) {
    .header__ornament {
        display: none;
    }

    .header__title {
        font-size: 2rem;
    }

    .widgets-bar {
        grid-template-columns: 1fr 1fr;
    }

    .nav__link {
        padding: 0.4rem 0.6rem;
        font-size: 0.6rem;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
    }

    .column-writer {
        margin: 1rem 0;
    }

    .modal__content {
        width: 95%;
        padding: 1.25rem;
    }
}

/* ============ RESPONSIVE — MOBILE (480px) ============ */
@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        gap: 0.3rem;
    }

    .top-bar__right {
        display: none;
    }

    .header {
        padding: 1rem 0.5rem 0.5rem;
    }

    .header__left, .header__right {
        display: none !important;
    }

    .header__center {
        width: 100%;
        text-align: center;
    }

    .header__title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .header__tagline {
        font-size: 0.55rem;
    }

    .widgets-bar {
        grid-template-columns: 1fr;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .widget-card {
        padding: 0.4rem 0.6rem;
    }

    .widget-card__value {
        font-size: 0.9rem;
    }

    .ticker__label {
        font-size: 0.55rem;
        padding: 0 0.5rem;
    }

    .ticker__wrap {
        padding-left: 5.5rem;
    }

    .ticker__content {
        font-size: 0.65rem;
    }

    /* Horizontal Swipe Nav for Mobile */
    .nav__container {
        padding: 0;
    }

    .nav__list {
        display: none !important; /* Artık hamburger menü çekmecesi var, yatay listeyi gizle */
    }

    .hamburger-btn {
        display: flex !important; /* Mobilde hamburger butonu görünür olsun */
    }

    .footer {
        padding: 0;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links {
        align-items: center;
    }

    .footer__contact {
        align-items: center;
    }

    .footer__contact p {
        justify-content: center;
    }

    .footer__bottom .footer__container {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .footer__logo {
        font-size: 1rem;
    }

    .column-writer__header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .modal__content {
        width: 98%;
        padding: 1rem;
        max-height: 95vh;
    }

    .modal__actions {
        flex-direction: column;
    }
}

/* ============ HAMBURGER BUTTON ============ */
.hamburger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid var(--border-dim);
    cursor: pointer;
    padding: 0;
    margin: 0.25rem auto;
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink-color);
    position: relative;
}

.hamburger-btn span::before,
.hamburger-btn span::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--ink-color);
    left: 0;
}

.hamburger-btn span::before {
    top: -6px;
}

.hamburger-btn span::after {
    top: 6px;
}

/* ============ MOBILE BOTTOM NAVIGATION ============ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-paper);
    border-top: 2px solid var(--ink-color);
    z-index: 100;
    padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
}

.mobile-bottom-nav__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
    color: var(--ink-light);
    font-family: var(--font-sans);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    transition: color 0.2s;
}

.mobile-bottom-nav__link:hover,
.mobile-bottom-nav__link--active {
    color: var(--ink-color);
}

.mobile-bottom-nav__icon {
    font-size: 1.15rem;
    line-height: 1;
}

@media (max-width: 480px) {
    .mobile-bottom-nav {
        display: block;
    }
}

/* ============ PRINT — style.css additions ============ */
@media print {

    .top-bar,
    .widgets-bar,
    .ticker,
    .mobile-bottom-nav,
    .hamburger-btn,
    .search-overlay {
        display: none !important;
    }

    .header {
        border-bottom: 2px solid #000;
    }

    .nav {
        display: none !important;
    }
}

/* ============ DEDICATED SWIPE NAV ============ */
@media (max-width: 900px) {
    .nav__container {
        padding: 0;
    }
    .nav__list {
        display: none !important; /* Çekmece kullanılıyor */
    }
    .hamburger-btn {
        display: flex !important; /* Butonu göster */
    }
}


