:root {
            --bg: #f8fafc;
            --card: #ffffff;
            --primary: #16a34a;
            --primary-light: #dcfce7;
            --text: #0f172a;
            --muted: #64748b;
            --radius: 20px;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 24px;
        }

        /* HEADER */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 10px 0;
        }

        .logo {
            font-weight: 800;
            font-size: 24px;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

.date {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;      /* soft gri */
    background: none;    /* ← KUTU YOK */
    padding: 0;          /* ← KAPSÜL YOK */
    border-radius: 0;
    box-shadow: none;
}


        /* HERO - MODERN MAKUP */
        .hero {
            background: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
            color: #fff;
            padding: 60px 50px;
            border-radius: 28px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px -15px rgba(22, 163, 74, 0.35);
        }

        /* Hero Desen Dokunuşu */
        .hero::after {
            content: '';
            position: absolute;
            top: -10%; right: -5%;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero h1 {
            font-size: 42px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -1px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .hero p {
            margin-top: 20px;
            font-size: 17px;
            opacity: 0.9;
            font-weight: 400;
            max-width: 500px;
        }

        /* SEARCH BOX */
        .search-box {
            background: #fff;
            border-radius: var(--radius);
            padding: 30px;
            color: #000;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            z-index: 2;
        }

        .search-box h3 {
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
        }

        .search-box select, 
        .search-box button {
            width: 100%;
            padding: 16px;
            margin-bottom: 16px;
            border-radius: 14px;
            border: 1px solid #f1f5f9;
            background: #f8fafc;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s;
        }

        .search-box select:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
        }

        .search-box button {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            border: none;
            cursor: pointer;
            margin-bottom: 0;
            box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
        }

        .search-box button:hover {
            transform: translateY(-2px);
            background: #15803d;
        }

        /* QUICK / CITIES-DISTRICTS LIST */
        .quick {
            margin-top: 60px;
        }

        .quick h2 {
            margin-bottom: 25px;
            font-size: 24px;
            font-weight: 800;
            color: #1e293b;
        }
        .quick a {
            background: var(--card);
            padding: 20px;
            border-radius: 16px;
            text-decoration: none;
            color: #334155;
            font-weight: 600;
            box-shadow: var(--shadow);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid transparent;
        }

        /* İlçe Kartlarına Küçük Ok İkonu */
        .quick a::after {
            content: '→';
            font-family: serif;
            font-size: 18px;
            opacity: 0;
            transform: translateX(-10px);
            transition: 0.3s;
            color: var(--primary);
        }

        .quick a:hover {
            transform: translateY(-5px);
            border-color: var(--primary-light);
            color: var(--primary);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
        }

        .quick a:hover::after {
            opacity: 1;
            transform: translateX(0);
        }

        /* ECZANE LİSTESİ */
        .eczane-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 25px;
            margin-top: 24px;
        }

        .eczane-card {
            background: #fff;
            border-radius: 24px;
            padding: 24px;
            box-shadow: var(--shadow);
            border: 1px solid #f1f5f9;
            border-top: 5px solid var(--primary);
            transition: all 0.3s ease;
        }

        .eczane-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.1);
        }

        .eczane-card h3 {
            font-size: 20px;
            color: #1e293b;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .eczane-card p {
            color: #000000;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 45px;
        }

        .eczane-actions {
            display: flex;
            gap: 12px;
        }

        .eczane-actions a {
            flex: 1;
            padding: 12px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: 0.2s;
        }

        .eczane-call {
            background: #22c55e;
            color: #fff;
        }

        .eczane-call:hover { background: #16a34a; }

        .eczane-map {
            background: #fee2e2;
            color: #ef4444;
        }

        .eczane-map:hover { background: #fecaca; }

        /* TABS */
        .gun-tabs {
            display: flex;
            gap: 12px;
            margin: 25px 0;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .tab {
            padding: 12px 24px;
            border-radius: 50px;
            background: #fff;
            color: #64748b;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid #f1f5f9;
        }

        .active-tab {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.25);
        }

        /* TRUST SECTION */
        .trust {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 60px 0 30px;
        }

        .trust div {
            background: #fff;
            padding: 35px;
            border-radius: 24px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid #f8fafc;
        }

        .trust h4 {
            color: var(--primary);
            font-size: 19px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .trust p {
            font-size: 15px;
            color: var(--muted);
        }

        /* RESPONSIVE */
        @media(max-width:900px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 40px 30px;
                text-align: center;
            }
            .hero h1 { font-size: 32px; }
            .hero p { margin: 20px auto; }
            .search-box { margin-top: 20px; }
        }

        /* RESULT PAGE FIXES */
        .result-page .hero {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 80px 40px;
        }

        .result-page .hero h1 { margin: 0 auto; }
        .result-page .hero p { margin: 20px auto 0; }
        .result-page .search-box { display: none; }
		.gun-tabs {
    position: relative;
    z-index: 10; /* Diğer her şeyin üstünde olsun */
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Mobilde kaydırma pürüzsüz olsun */
    padding: 10px 5px;
}

.tab {
    cursor: pointer;
    touch-action: manipulation; /* Mobil dokunmatik tepkisini iyileştirir */
}
.tab {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.tab {
    cursor: pointer;
    touch-action: manipulation; /* Mobildeki 300ms gecikmeyi iptal eder */
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    position: relative;
    z-index: 50; /* Tıklanabilir olduğundan emin olalım */
}

.active-tab {
    background: var(--primary) !important;
    color: #fff !important;
}
/* Sayfanın sağa sola kaymasını ve gereksiz zoom yapmasını engeller */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.quick a {
    /* Yazı çok uzunsa alt satıra geçsin, kutuyu germesin */
    font-size: 14px; /* Mobilde çok büyük olup sığmamazlık yapmasın */
}

/* Arama kutusundaki selectlerin mobilde zoom yapmasını engellemek için (iOS için) */
select, input {
    font-size: 16px !important; 
}
.populer-sehirler {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
/* POPÜLER ŞEHİRLER – DESKTOP */
.populer-sehirler {
    grid-template-columns: repeat(5, 1fr) !important;
}
.populer-sehirler a {
    height: 72px;
    justify-content: center;
    text-align: center;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 600px) {
    .populer-sehirler {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
/* Ankara İlçeleri */
/* ===== İlçe sayfası sağ sidebar ===== */
.result-layout {
    margin-top: 50px;
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

.result-sidebar {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
    position: sticky;
    top: 24px;
}

.result-sidebar h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #1e293b;
}

.result-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result-sidebar li {
    margin-bottom: 8px;
}

.result-sidebar a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s ease;
}

.result-sidebar a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mobilde alta düşsün */
@media (max-width: 900px) {
    .result-grid {
        grid-template-columns: 1fr;
    }
    .result-sidebar {
        position: static;
        margin-top: 30px;
    }
}
/* ===== FOOTER ===== */
.site-footer {
    background: #f8fafc; /* sayfa ile aynı */
    color: #475569;
    padding: 50px 24px 30px;
    border-top: 1px solid #e5e7eb;
}



.footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #0f172a;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #16a34a;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* MOBİL */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.ilce-sayi {
    margin-left: 4px;   /* yazıya biraz yaklaşsın */
    margin-right: 2px;  /* kartın sağına yapışmasın */
}
.ilce-sayi {
    text-align: right;
    font-size: 13px;
    color: #64748b;
}
.ilce-sayi {
    text-align: right;
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
}

/* İlçe sayısı */
.ilce-sayi {
    text-align: right;
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
}
.quick a::after {
    display: none !important;
    content: none !important;
}
/* ===============================
   İLÇE KARTLARI – TEK VE NET
   =============================== */

.quick-grid:not(.populer-sehirler) a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    height: 64px;
    padding: 16px 18px;
}

/* İlçe sayısı */
.ilce-sayi {
    text-align: right;
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
}

/* Hover oku KESİN kapalı */
.quick a::after {
    display: none !important;
    content: none !important;
}
/* ===============================
   İLÇE KARTLARI – SON & TEK KURAL
   =============================== */

/* Desktop + Tablet */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    width: 100%;
}

/* Kart içi düzen */
.quick-grid:not(.populer-sehirler) a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    height: 64px;
    padding: 16px 18px;
}

/* İlçe sayısı */
.ilce-sayi {
    text-align: right;
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    }
/* Hover oku KAPALI */
.quick a::after {
    display: none !important;
    content: none !important;
}
/* ===============================
   İLÇE KARTLARI – TEK VE TEMİZ
   =============================== */

/* Desktop + Tablet */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.quick-grid:not(.populer-sehirler) a {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    height: 64px;
    padding: 16px 18px;
}

/* İlçe adı – desktop */
.ilce-ad {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* İlçe sayısı */
.ilce-sayi {
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
}

/* MOBİL */
@media (max-width: 600px) {
    .quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-grid:not(.populer-sehirler) a {
        height: auto;          /* mobilde uzayabilsin */
    }

    .ilce-ad {
        white-space: normal;   /* 👈 KESİLME BİTTİ */
        overflow: visible;
        text-overflow: unset;
        line-height: 1.3;
    }
}

/* Hover oku KAPALI */
.quick a::after {
    display: none !important;
    content: none !important;
}

/* Popüler şehir kartları */
.populer-sehirler .city-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    height: 68px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all .25s ease;
}

/* Hover efekti */
.populer-sehirler .city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

/* İkon (CSS ile ekleniyor) */
.populer-sehirler .city-card::before {
    content: "📍";
    font-size: 16px;
    line-height: 1;
    margin-top: 2px;
}

/* Metin alanı */
.populer-sehirler .city-name,
.populer-sehirler .city-desc {
    display: block;
    line-height: 1.2;
}

/* Şehir adı */
.populer-sehirler .city-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

/* Alt açıklama */
.populer-sehirler .city-desc {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}
/* Popüler şehirler – açıklamayı gizle */
.populer-sehirler .city-desc {
    display: none;
}
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .date {
        font-size: 12.5px;
    }
}
/* Yol Tarifi – yarı saydam koyu kırmızı (inspect'teki gibi) */
.eczane-map {
    background: rgba(103, 99, 99, 0.15);
    color: #000000ed;
}

/* Hover – biraz koyulaşsın */
.eczane-map:hover {
    background: rgba(103, 99, 99, 0.25);
}
/* Adres */
.eczane-adres {
    font-size: 14px;
    line-height: 1.6;
    color: #475569; /* soft koyu gri */
}

/* Telefon */
.eczane-tel {
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
    color: #0f172a; /* net siyah */
}
.eczane-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

/* 📍 Adres */
.eczane-adres {
    font-size: 14px;
    color: #1f2937;
    line-height: 1.6;
}

/* 📞 Telefon – kart gibi */
.eczane-telefon {
    font-size: 15px;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    padding: 6px 12px;
    border-radius: 10px;
    width: fit-content;
}
.eczane-tel-inline {
    font-size: 13px;
    color: #64748b;      /* soft gri */
    margin-top: 4px;
    padding-left: 18px;  /* adres ikonuyla hizalı dursun */
    font-weight: 500;
    letter-spacing: 0.2px;
}
.eczane-tel-inline {
    font-size: 13px;
    color: #475569;
    margin-top: 4px;
    padding-left: 18px;
    font-weight: 600;
}

/* ===================== */
/* İLETİŞİM SAYFASI */
/* ===================== */

.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05),
                0 8px 10px -6px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 60px auto 0;
}

.contact-card h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.contact-card p,
.contact-card li {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
}

.contact-card ul {
    margin-left: 18px;
}

/* FORM */
.contact-form {
    margin-top: 30px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin: 16px 0 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
}

.contact-form button:hover {
    background: #15803d;
}
/* ===================== */
/* GİZLİLİK POLİTİKASI */
/* ===================== */

.policy {
    margin-top: 60px;
}

.policy-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05),
                0 8px 10px -6px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: auto;
}

.policy-card h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 28px 0 12px;
}

.policy-card p {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
}



