/* ============================================================
   ELDEN TAKSİT PRO V4 - PREMIUM STYLE (atilimavm.com)
   ============================================================ */

/* 1. ANA KONTEYNER (Ürün Sayfası - %100 Genişlik) */
.elden-box {
    width: 100% !important;
    max-width: 100% !important;
    clear: both;
    margin: 20px 0;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    box-sizing: border-box;
    font-family: inherit;
}

/* 2. BAŞLIK VE ALT BAŞLIK */
.elden-header {
    margin-bottom: 20px;
}

.elden-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Sol taraftaki kurumsal turuncu çizgi */
.elden-title::before {
    content: "";
    width: 4px;
    height: 22px;
    background: #ff6a00;
    border-radius: 10px;
}

.elden-subtitle {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    padding-left: 14px;
}

/* 3. TAKSİT SEÇENEKLERİ (Buton Grid Yapısı) */
.elden-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.elden-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.elden-btn .btn-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.elden-btn:hover {
    border-color: #ff6a00;
    transform: translateY(-2px);
}

.elden-btn.active {
    border-color: #ff6a00;
    background: #fff9f5;
    box-shadow: 0 4px 12px rgba(255,106,0,0.15);
}

.elden-btn.active .btn-label {
    color: #ff6a00;
}

/* 4. ÜRÜN SAYFASI FİYAT ÖZETİ */
.elden-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-item span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item strong {
    font-size: 18px;
    color: #1a1a1a;
    margin-top: 4px;
}

.summary-item.highlight strong {
    color: #ff6a00;
    font-size: 22px;
}

/* 5. SEPET SAYFASI MANUEL SHORTCODE [elden_sepet_detay] TASARIMI */
.elden-cart-wrap {
    margin: 30px 0;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #eee;
    border-left: 4px solid #ff6a00; /* Vurgu çizgisi */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.elden-cart-item-plan {
    margin-bottom: 25px;
}

.elden-cart-item-plan:last-child {
    margin-bottom: 0;
}

.elden-cart-item-plan h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.elden-cart-item-plan .dot {
    width: 8px;
    height: 8px;
    background: #ff6a00;
    border-radius: 50%;
}

/* Taksitlerin "Ay Ay" Grid Görünümü */
.elden-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.plan-row {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.plan-row:hover {
    background: #f1f1f1;
}

.plan-row span {
    color: #666;
}

.plan-row strong {
    color: #ff6a00;
    font-weight: 700;
}

/* 6. MOBİL UYUMLULUK */
@media (max-width: 600px) {
    .elden-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .elden-summary {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .elden-plan-grid {
        grid-template-columns: 1fr;
    }
}