/**
 * Icerik Sayfalari CSS (v3.50.0).
 * Tum renkler preset uyumlu CSS degiskenleri ile.
 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Sayfa kapsayicisi */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-cp-page {
    background: var(--necox-muted-bg, #fafafa);
    padding: 48px 24px;
    min-height: 60vh;
}

.necox-cp-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.necox-cp-wrap--narrow {
    max-width: 800px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Header (ortak) */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-cp-header {
    margin-bottom: 32px;
}

.necox-cp-header--center {
    text-align: center;
}

.necox-cp-header__title {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--necox-text, #111);
}

.necox-cp-header__sub {
    margin: 0;
    font-size: 13px;
    color: var(--necox-muted, #666);
    line-height: 1.6;
}

.necox-cp-header__sub a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Kart (ortak) */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-cp-card {
    background: var(--necox-white, #fff);
    border: 0.5px solid var(--necox-border, rgba(0,0,0,.12));
    border-radius: var(--border-radius-lg, 12px);
    padding: 36px;
}

@media (max-width: 640px) {
    .necox-cp-card {
        padding: 24px 20px;
    }
}

.necox-cp-card--legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

@media (max-width: 640px) {
    .necox-cp-card--legal {
        padding: 28px 20px;
    }
}

.necox-cp-card__title {
    margin: 0 0 6px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--necox-text, #111);
}

@media (max-width: 640px) {
    .necox-cp-card__title {
        font-size: 22px;
    }
}

.necox-cp-card__meta {
    margin: 0 0 28px;
    font-size: 12px;
    color: var(--necox-muted, #666);
}

.necox-cp-card__content {
    font-size: 14px;
    line-height: 1.75;
    color: var(--necox-text, #333);
}

.necox-cp-card__content h2 {
    margin: 32px 0 12px;
    font-size: 20px;
    font-weight: 500;
    color: var(--necox-text, #111);
}

.necox-cp-card__content h3 {
    margin: 24px 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--necox-text, #111);
}

.necox-cp-card__content p {
    margin: 0 0 14px;
}

.necox-cp-card__content a {
    color: var(--necox-primary, currentColor);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.necox-cp-card__content ul,
.necox-cp-card__content ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.necox-cp-card__content li {
    margin-bottom: 6px;
}

.necox-cp-card__content blockquote {
    margin: 20px 0;
    padding: 12px 18px;
    border-left: 3px solid var(--necox-border-secondary, #ddd);
    color: var(--necox-muted, #555);
    font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Breadcrumb */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-cp-breadcrumb {
    display: flex;
    gap: 6px;
    font-size: 11px;
    color: var(--necox-muted, #666);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.necox-cp-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.necox-cp-breadcrumb a:hover {
    text-decoration: underline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FAQ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-faq-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.necox-faq-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    border: 0.5px solid var(--necox-border-secondary, rgba(0,0,0,.2));
    border-radius: 999px;
    background: var(--necox-white, #fff);
    color: var(--necox-text, #111);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.necox-faq-tab:hover {
    background: var(--necox-muted-bg, #f3f4f6);
}

.necox-faq-tab.is-active {
    background: var(--necox-primary, #111);
    color: var(--necox-primary-fg, #fff);
    border-color: var(--necox-primary, #111);
    font-weight: 500;
}

.necox-faq-tab__count {
    opacity: 0.5;
    font-size: 11px;
}

.necox-faq-list {
    background: var(--necox-white, #fff);
    border: 0.5px solid var(--necox-border, rgba(0,0,0,.12));
    border-radius: var(--border-radius-lg, 12px);
    overflow: hidden;
}

.necox-faq-item {
    border-bottom: 0.5px solid var(--necox-border, rgba(0,0,0,.1));
}

.necox-faq-item:last-child {
    border-bottom: none;
}

.necox-faq-item__q {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    list-style: none;
    color: var(--necox-text, #111);
    user-select: none;
}

.necox-faq-item__q::-webkit-details-marker {
    display: none;
}

.necox-faq-item__q:hover {
    background: var(--necox-muted-bg, #fafafa);
}

.necox-faq-item__q-text {
    flex: 1;
    min-width: 0;
}

.necox-faq-item__chevron {
    flex-shrink: 0;
    color: var(--necox-muted, #666);
    transition: transform 0.2s;
}

.necox-faq-item[open] .necox-faq-item__chevron {
    transform: rotate(180deg);
}

.necox-faq-item__a {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--necox-muted, #444);
    line-height: 1.7;
}

.necox-faq-item__a p {
    margin: 0 0 10px;
}

.necox-faq-item__a p:last-child {
    margin-bottom: 0;
}

.necox-faq-empty {
    padding: 48px 24px;
    text-align: center;
    color: var(--necox-muted, #666);
    font-size: 13px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Site haritasi */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 640px) {
    .necox-sitemap-grid {
        grid-template-columns: 1fr;
    }
}

.necox-sitemap-section {
    padding: 24px;
}

.necox-sitemap-section--wide {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .necox-sitemap-section--wide {
        grid-column: auto;
    }
}

.necox-sitemap-section__title {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--necox-muted, #666);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.necox-sitemap-section__count {
    font-size: 11px;
    opacity: 0.5;
    font-weight: 400;
}

.necox-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.necox-sitemap-list--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
}

@media (max-width: 640px) {
    .necox-sitemap-list--2col {
        grid-template-columns: 1fr;
    }
}

.necox-sitemap-list li a {
    font-size: 13px;
    color: var(--necox-text, #333);
    text-decoration: none;
    line-height: 1.5;
    display: flex;
    gap: 6px;
}

.necox-sitemap-list li a:hover {
    color: var(--necox-primary, currentColor);
    text-decoration: underline;
}

.necox-sitemap-list__count {
    opacity: 0.4;
    font-size: 11px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Yardim merkezi */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-help-search {
    max-width: 540px;
    margin: 24px auto 0;
    display: flex;
    gap: 0;
    border: 0.5px solid var(--necox-border, rgba(0,0,0,.15));
    border-radius: 999px;
    overflow: hidden;
    background: var(--necox-white, #fff);
}

.necox-help-search__input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--necox-text, #111);
    outline: none;
}

.necox-help-search__btn {
    padding: 0 28px;
    background: var(--necox-primary, #111);
    color: var(--necox-primary-fg, #fff);
    border: none;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.necox-help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

@media (max-width: 640px) {
    .necox-help-grid {
        grid-template-columns: 1fr;
    }
}

.necox-help-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--necox-white, #fff);
    border: 0.5px solid var(--necox-border, rgba(0,0,0,.12));
    border-radius: var(--border-radius-md, 8px);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s, transform 0.15s;
}

.necox-help-card:hover {
    background: var(--necox-muted-bg, #fafafa);
}

.necox-help-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-md, 8px);
    background: var(--necox-muted-bg, #f3f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--necox-text, #111);
}

.necox-help-card__body {
    flex: 1;
    min-width: 0;
}

.necox-help-card__title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--necox-text, #111);
}

.necox-help-card__desc {
    margin: 0;
    font-size: 12px;
    color: var(--necox-muted, #666);
    line-height: 1.5;
}

.necox-help-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 12px;
    color: var(--necox-muted, #666);
    padding: 16px;
}

.necox-help-footer a {
    color: var(--necox-primary, currentColor);
    text-decoration: none;
    font-weight: 500;
}

.necox-help-footer a:hover {
    text-decoration: underline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Bos durum */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.necox-cp-empty {
    padding: 60px 24px;
    text-align: center;
    border: 0.5px solid var(--necox-border, rgba(0,0,0,.1));
    border-radius: var(--border-radius-md, 8px);
    background: var(--necox-white, #fff);
    color: var(--necox-muted, #666);
    font-size: 13px;
}
