/* ================================================================
   İÇTİHAT SAYFASI — Modern Tasarım
   Cross-browser: Chrome 60+, Firefox 60+, Safari 12+, Edge 79+
   ================================================================ */

/* ── LAYOUT ──────────────────────────────────────────────── */
body.ictihat-body #wrapper {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
body.ictihat-body .content-holder {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    overflow: visible !important;
    height: auto !important; width: 100% !important;
}

/* ── STICKY PANEL ────────────────────────────────────────── */
.sticky-panel li {
    overflow: hidden !important;
    height: 42px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.sticky-panel li img {
    width: 20px !important; height: 20px !important;
    display: block !important; margin: 0 !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

/* ── ANA KAPSAYICI ───────────────────────────────────────── */
.ictihat-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 40px 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* style.css override */
.ictihat-wrap p,
.ictihat-wrap li,
.ictihat-bc {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
}

/* ── BREADCRUMB ──────────────────────────────────────────── */
.ictihat-bc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0 0 20px 0 !important;
    text-align: left !important;
    display: block;
}
.ictihat-bc a {
    color: #f26522 !important;
    text-decoration: none;
    font-weight: 600;
}
.ictihat-bc a:hover { text-decoration: underline; }
.ictihat-bc span { color: rgba(255,255,255,0.35); margin: 0 6px; }

/* ── KARAR BAŞLIĞI ───────────────────────────────────────── */
.ictihat-h1 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #f26522 !important;
    margin: 0 0 20px !important;
    text-align: left !important;
    text-transform: none !important;
    line-height: 1.45 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    font-family: Georgia, 'Times New Roman', serif !important;
}

/* ── KÜNYE KARTI ─────────────────────────────────────────── */
.ictihat-kunye {
    background: #222225;
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid #f26522;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 24px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    /* gap fallback for older browsers */
    -webkit-column-gap: 24px;
    column-gap: 24px;
}
/* IE/old Edge fallback — stack vertically */
@supports not (display: grid) {
    .ictihat-kunye {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .ictihat-kunye-item {
        width: 50%;
        padding: 4px 0;
    }
}
.ictihat-kunye-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}
.ictihat-kunye-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ictihat-kunye-value {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.ictihat-kunye-value.orange { color: #f26522; }

/* ── ARAÇ ÇUBUĞU ─────────────────────────────────────────── */
.ictihat-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* gap fallback */
.ictihat-toolbar > * + * { margin-left: 8px; }
@supports (gap: 8px) {
    .ictihat-toolbar > * + * { margin-left: 0; }
}

.ictihat-tool-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    -webkit-border-radius: 7px;
    border-radius: 7px;
    color: rgba(255,255,255,0.65) !important;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Mukta', sans-serif;
    cursor: pointer;
    text-decoration: none !important;
    -webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
    -o-transition: background 0.2s, border-color 0.2s, color 0.2s;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    /* Prevent text selection on button */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* iOS tap highlight */
    -webkit-tap-highlight-color: transparent;
}
.ictihat-tool-btn:hover {
    background: rgba(242,101,34,0.1);
    border-color: rgba(242,101,34,0.35);
    color: #f26522 !important;
}
.ictihat-tool-btn.kopyalandi {
    background: rgba(39,174,96,0.15);
    border-color: #27ae60;
    color: #27ae60 !important;
}
.ictihat-tool-btn svg {
    width: 13px; height: 13px;
    stroke: currentColor;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* ── KARAR METNİ ─────────────────────────────────────────── */
.ictihat-karar-metin {
    margin-bottom: 28px;
}
.ictihat-karar-metin p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.75) !important;
    line-height: 1.8 !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    text-align: left !important;
}
.ictihat-karar-metin p strong {
    color: rgba(255,255,255,0.9) !important;
}
.ictihat-karar-metin a {
    color: #f26522 !important;
    text-decoration: none;
}
.ictihat-karar-metin a:hover { text-decoration: underline !important; }

/* ── ÖZET KUTUSU ─────────────────────────────────────────── */
.ictihat-ozet {
    background: rgba(242,101,34,0.06);
    border-left: 4px solid #e67e22;
    -webkit-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 28px;
}
.ictihat-ozet-baslik {
    font-size: 12px;
    font-weight: 700;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}
.ictihat-ozet-baslik svg {
    width: 14px; height: 14px;
    stroke: #e67e22;
}
.ictihat-ozet p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.75 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    text-align: left !important;
}
.ictihat-ozet p:last-child { margin-bottom: 0 !important; }

/* ── SONUÇ KUTUSU ────────────────────────────────────────── */
.ictihat-sonuc {
    background: rgba(39,174,96,0.06);
    border-left: 4px solid #27ae60;
    -webkit-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
    padding: 18px 22px;
    margin-bottom: 28px;
}
.ictihat-sonuc-baslik {
    font-size: 12px;
    font-weight: 700;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}
.ictihat-sonuc-baslik svg {
    width: 14px; height: 14px;
    stroke: #27ae60;
}
.ictihat-sonuc p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.75 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    text-align: left !important;
}
.ictihat-sonuc p:last-child { margin-bottom: 0 !important; }

/* ── TABLET ──────────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .ictihat-wrap { padding: 20px 20px 80px; }
}

/* ── MOBİL ───────────────────────────────────────────────── */
@media screen and (max-width: 768px) {
    .ictihat-wrap { padding: 14px 16px 80px; }
    .ictihat-h1 { font-size: 17px !important; }
    .ictihat-kunye {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .ictihat-toolbar { gap: 6px; }
    .ictihat-tool-btn { font-size: 11px; padding: 7px 12px; }
    .ictihat-karar-metin p,
    .ictihat-ozet p,
    .ictihat-sonuc p { font-size: 14px !important; }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
    .main-header, .sticky-panel, .share-button, .left-panel,
    .header-contacts, .nav-button-wrap, .footerbar,
    .ictihat-toolbar { display: none !important; }
    body.ictihat-body { background: #fff !important; }
    .ictihat-h1,
    .ictihat-ozet-baslik,
    .ictihat-sonuc-baslik { color: #333 !important; }
    .ictihat-karar-metin p,
    .ictihat-ozet p,
    .ictihat-sonuc p { color: #111 !important; }
    .ictihat-kunye { background: #f8f8f8 !important; border-left-color: #333 !important; }
    .ictihat-kunye-value { color: #111 !important; }
}
