/* ============================================================
   ELDEN TAKSİT PRO V11 - FULL WIDTH & RESTRICTED CHECKOUT
   ============================================================ */

/* Ana Kapsayıcı (Temanın sınırlarını ezip %100 genişlik alır) */
.elden-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    clear: both;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin: 25px 0;
    box-sizing: border-box;
    font-family: inherit;
    border: 1px solid #edf2f7;
}

/* Üst Kısım: Havale & Kredi Kartı Seçenekleri */
.elden-top-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.method-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.method-card .m-title {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.method-card .m-price {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
}

.method-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Aktif Standart Yöntem Rengi */
.method-card.active {
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

.method-card.active .m-title,
.method-card.active .m-price {
    color: #ffffff;
}

/* Ayırıcı (Divider) */
.elden-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.elden-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    z-index: -1;
}

.elden-divider span {
    background: #f8f9fa; 
    padding: 0 15px;
    color: #f97316;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Elden Taksit Kartları */
.elden-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.elden-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    position: relative;
}

.elden-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.elden-card.active {
    border-color: #f97316;
    background: #fffaf5;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.ec-monthly {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.ec-monthly strong {
    font-size: 18px;
    color: #1e293b;
}

.elden-card.active .ec-monthly strong {
    color: #f97316;
}

.ec-total {
    font-size: 15px;
    font-weight: 700;
    color: #94a3b8;
}

.elden-card.active .ec-total {
    color: #1e293b;
}

/* ================= MOBİL UYUM ================= */
@media (max-width: 600px) {
    .elden-top-methods, .elden-options {
        grid-template-columns: 1fr;
    }
    .elden-divider span {
        font-size: 12px;
    }
}

/* ================= SEPET SAYFASI SHORTCODE ================= */
.elden-cart-wrap { margin: 30px 0; padding: 25px; background: #ffffff; border-radius: 16px; border: 1px solid #eee; border-left: 5px solid #f97316; }
.elden-cart-item-plan { margin-bottom: 25px; }
.elden-cart-item-plan:last-child { margin-bottom: 0; }
.elden-cart-item-plan h4 { font-size: 15px; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.elden-cart-item-plan .dot { width: 8px; height: 8px; background: #f97316; border-radius: 50%; }
.elden-plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.plan-row { background: #f9fafb; padding: 12px 14px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #f0f0f0; font-size: 13px; }
.plan-row span { color: #666; }
.plan-row strong { color: #f97316; font-weight: 700; }