/* ─── Ek Maliyetler – Frontend Styles ─── */

.em-options {
    margin: 20px 0 24px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px 20px;
    background: #fafafa;
}

.em-options__title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: .3px;
}

.em-option-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

.em-option-row:last-child {
    border-bottom: none;
}

.em-option-label {
    flex: 1 1 180px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Toggle Butonlar */
.em-toggle-group {
    display: flex;
    gap: 6px;
}

.em-toggle-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid #d0d0d0;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: all .2s ease;
    user-select: none;
}

.em-toggle-btn input[type="radio"] {
    display: none;
}

.em-toggle-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.em-toggle-btn.em-active {
    background: #3498db;
    border-color: #3498db;
    color: #fff;
}

/* Info badge */
.em-option-info {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eaf4fd;
    border: 1px solid #aed6f1;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 13px;
}

.em-option-ebat {
    color: #1a5276;
    font-weight: 500;
}

.em-option-fiyat {
    color: #117a65;
    font-weight: 700;
}

.em-option-fiyat .woocommerce-Price-amount {
    font-weight: 700;
}

/* Toplam satırı */
.em-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 2px dashed #ddd;
    font-size: 15px;
    color: #1a1a2e;
}

.em-total-row strong {
    font-size: 18px;
    color: #c0392b;
}

@media (max-width: 600px) {
    .em-option-row { flex-direction: column; align-items: flex-start; }
}
