/* =====================================================================
   📁 /assets/css/eklentiler.css — WP eklenti landing sayfaları
   ✔ Mobil öncelikli (320px+)
   ✔ Dark / light uyumlu
   ===================================================================== */

.eklenti-page {
    background: var(--ek-bg, #f8fafc);
    color: var(--ek-text, #0c1b33);
    min-height: 60vh;
}

body.dark .eklenti-page {
    --ek-bg: #0b1427;
    --ek-text: #e8eef8;
    --ek-card: #111d33;
    --ek-border: #1e3054;
    --ek-muted: #8fa3bf;
}

body:not(.dark) .eklenti-page {
    --ek-card: #ffffff;
    --ek-border: #e2e8f0;
    --ek-muted: #5b6b82;
}

.eklenti-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 56px;
}

@media (min-width: 768px) {
    .eklenti-wrap {
        padding: 48px 24px 72px;
    }
}

/* Hero */
.eklenti-hero {
    text-align: center;
    margin-bottom: 40px;
}

.eklenti-hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #3b7de8;
    background: rgba(59, 125, 232, .12);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

body.dark .eklenti-hero-badge {
    color: #7eb3f0;
    background: rgba(59, 125, 232, .18);
}

.eklenti-hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin: 0 0 12px;
    color: inherit;
}

.eklenti-hero p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--ek-muted);
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.eklenti-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.eklenti-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.eklenti-btn--primary {
    background: #3b7de8;
    color: #fff;
}

.eklenti-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 125, 232, .35);
}

.eklenti-btn--ghost {
    border: 1px solid var(--ek-border);
    color: inherit;
    background: var(--ek-card);
}

/* Feature grid */
.eklenti-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 48px;
}

@media (min-width: 600px) {
    .eklenti-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .eklenti-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eklenti-feature-card {
    background: var(--ek-card);
    border: 1px solid var(--ek-border);
    border-radius: 14px;
    padding: 20px 18px;
}

.eklenti-feature-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.eklenti-feature-card p {
    margin: 0;
    font-size: 14px;
    color: var(--ek-muted);
    line-height: 1.55;
}

/* Hub cards */
.eklenti-hub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .eklenti-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.eklenti-hub-card {
    display: flex;
    flex-direction: column;
    background: var(--ek-card);
    border: 1px solid var(--ek-border);
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s ease, transform .15s ease;
}

.eklenti-hub-card:hover {
    border-color: #3b7de8;
    transform: translateY(-2px);
}

.eklenti-hub-card h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.eklenti-hub-card p {
    margin: 0 0 16px;
    flex: 1;
    font-size: 14px;
    color: var(--ek-muted);
    line-height: 1.55;
}

.eklenti-hub-card .eklenti-btn {
    align-self: flex-start;
}

.eklenti-hub-card.is-soon {
    opacity: .92;
}

.eklenti-soon-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

body.dark .eklenti-soon-badge {
    background: rgba(251, 191, 36, .2);
    color: #fcd34d;
}

/* Lemon pricing (homepage style, class-based) */
.wp-lemon-pricing {
    background: #0d1b2a;
    margin: 0 -16px;
    padding: 48px 16px 56px;
    color: #e8eef8;
}

@media (min-width: 768px) {
    .wp-lemon-pricing {
        margin: 0;
        border-radius: 16px;
        padding: 48px 28px 56px;
    }
}

.wp-lemon-pricing h2 {
    text-align: center;
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    color: #fff;
}

.wp-lemon-pricing-sub {
    text-align: center;
    color: #8fa3bf;
    font-size: 14px;
    margin: 0 auto 28px;
    max-width: 520px;
}

.wp-lemon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .wp-lemon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .wp-lemon-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wp-lemon-card {
    background: #162032;
    border: 1px solid #1e3a5f;
    border-radius: 12px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.wp-lemon-card.is-featured {
    border: 2px solid #3b7de8;
}

.wp-lemon-badge {
    display: inline-block;
    background: #1e3a5f;
    color: #7eb3f0;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
}

.wp-lemon-card-title {
    color: #a0b8d8;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 10px;
}

.wp-lemon-card-price {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 4px;
}

.wp-lemon-card-price span {
    color: #6a8fae;
    font-size: 13px;
    font-weight: 400;
}

.wp-lemon-features {
    list-style: none;
    padding: 0;
    margin: 18px 0 20px;
    flex: 1;
    border-top: 1px solid #1e3a5f;
    padding-top: 16px;
}

.wp-lemon-features li {
    color: #b0c8e0;
    font-size: 13px;
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.5;
}

.wp-lemon-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b7de8;
    font-weight: 700;
}

.wp-lemon-btn {
    display: block;
    background: #3b7de8;
    color: #fff !important;
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.wp-lemon-btn:hover {
    background: #2f6ad4;
}

.wp-lemon-section-sub {
    text-align: center;
    color: var(--ek-muted);
    font-size: 14px;
    line-height: 1.55;
    max-width: 640px;
    margin: -8px auto 20px;
}

.wp-store-cta {
    max-width: 720px;
    margin: 32px auto;
    padding: 36px 28px;
    text-align: center;
    background: var(--ek-card, #162032);
    border: 1px solid var(--ek-border, #1e3a5f);
    border-radius: 14px;
}

.wp-store-cta h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
}

.wp-store-cta-sub {
    color: var(--ek-muted, #94a3b8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.wp-store-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.wp-store-cta-portal {
    color: var(--ek-muted, #94a3b8);
    font-size: 14px;
    text-decoration: underline;
}

.wp-store-cta-portal:hover {
    color: var(--ek-text, #dce3f5);
}

/* Kurulum rehberi */
.eklenti-install {
    margin-top: 40px;
    background: var(--ek-card);
    border: 1px solid var(--ek-border);
    border-radius: 14px;
    padding: 28px 20px;
}

.eklenti-install h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    text-align: center;
}

.eklenti-install-sub {
    text-align: center;
    color: var(--ek-muted);
    font-size: 14px;
    line-height: 1.55;
    max-width: 680px;
    margin: 0 auto 22px;
}

.eklenti-install-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.eklenti-install-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--ek-border);
    border-radius: 12px;
    padding: 16px;
}

body:not(.dark) .eklenti-install-step {
    background: rgba(0, 0, 0, 0.02);
}

.eklenti-install-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 14px;
    background: #3b82f6;
    color: #fff;
}

.eklenti-install-step h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.eklenti-install-step p {
    margin: 0;
    font-size: 14px;
    color: var(--ek-muted);
    line-height: 1.55;
}

.eklenti-install-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
}

.eklenti-install-note {
    margin: 16px 0 0;
    text-align: center;
    font-size: 13px;
    color: var(--ek-muted);
    line-height: 1.5;
}

/* Compare strip */
.eklenti-compare {
    margin-top: 40px;
    background: var(--ek-card);
    border: 1px solid var(--ek-border);
    border-radius: 14px;
    padding: 24px 18px;
}

.eklenti-compare h2 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    text-align: center;
}

.eklenti-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 700px) {
    .eklenti-compare-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.eklenti-compare-col h3 {
    margin: 0 0 10px;
    font-size: 15px;
}

.eklenti-compare-col ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: var(--ek-muted);
    line-height: 1.6;
}

.eklenti-coming-soon-box {
    text-align: center;
    padding: 48px 20px;
    background: var(--ek-card);
    border: 1px dashed var(--ek-border);
    border-radius: 14px;
    margin-top: 32px;
}

.eklenti-coming-soon-box p {
    color: var(--ek-muted);
    margin: 8px 0 0;
    font-size: 15px;
}
