body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f4f6fb;
    margin: 0;
    padding: 0;
}
#wrapper {
    max-width: 1300px;
    margin: 32px auto;
    background: #f8faff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(80, 100, 120, 0.10);
    padding: 32px 32px 24px 32px;
    border: 1.5px solid #e3e6ef;
}
.header {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #23272f;
    letter-spacing: 0.5px;
}
.box {
    background: #fff;
    border: 1.5px solid #e3e6ef;
    border-radius: 12px;
    padding: 28px 24px 22px 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px 0 rgba(80, 100, 120, 0.06);
}
.box-title {
    font-size: 1.13rem !important;
    font-weight: 500 !important;
    color: #373a47 !important;
    margin-bottom: 18px;
}
.flex-row {
    display: flex;
    gap: 18px;
}
.flex-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.flex-col input {
    height: 40px;
    min-width: 120px;
    font-size: 1.1rem;
    box-sizing: border-box;
}
input[type="text"], input[type="number"], textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1.5px solid #e3e6ef;
    border-radius: 7px;
    font-size: 0.98rem;
    font-weight: 400;
    color: #23272f;
    background: #f8faff;
    transition: border 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
input[type="text"]:focus, input[type="number"]:focus, textarea:focus {
    border: 1.5px solid #2563eb;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px #2563eb22;
}
textarea {
    min-height: 48px;
    resize: vertical;
}
.urunler-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-bottom: 12px;
}
.urunler-table th, .urunler-table td {
    background: #f8faff;
    padding: 12px 10px;
    border-radius: 7px;
    text-align: left;
    font-size: 15.5px;
}
.urunler-table th {
    color: #5a6166;
    font-weight: 600;
    background: #f4f6fb;
    border-bottom: 1.5px solid #e3e6ef;
}
.urunler-table td {
    color: #23272f;
    border-bottom: 1px solid #f0f1f5;
}
.btn-primary {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 10px 20px;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px 0 rgba(37,99,235,0.07);
    letter-spacing: 0.01em;
}
.btn-primary:hover {
    background: #1746a2;
    box-shadow: 0 4px 16px 0 rgba(37,99,235,0.13);
}
.btn-print {
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 14px 38px;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(34,197,94,0.07);
    letter-spacing: 0.01em;
}
.btn-print:hover {
    background: #16a34a;
    box-shadow: 0 4px 16px 0 rgba(34,197,94,0.13);
}
.toplam-box {
    background: #f8faff;
    border: 1.5px solid #e3e6ef;
    border-radius: 10px;
    padding: 12px 16px 10px 16px;
    font-size: 1rem;
    color: #23272f;
    font-weight: 500;
    text-align: right;
    margin-top: 8px;
    min-width: 150px;
    max-width: 180px;
    box-shadow: 0 1px 4px 0 rgba(80, 100, 120, 0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}
.toplam-box label {
    font-size: 0.98rem;
    color: #7c3aed;
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}
.toplam-box span {
    display: block;
    font-size: 1.08rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0px;
    letter-spacing: 0.01em;
}
.toplam-box .toplam-tutar {
    color: #22c55e;
    font-size: 1.13rem;
    font-weight: 700;
    margin-top: 2px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    margin-bottom: 0;
    margin-top: 12px;
}
label {
    font-weight: 400 !important;
    margin-bottom: 7px;
    color: #4b5563 !important;
    font-size: 1rem !important;
    letter-spacing: 0.01em;
}
.error {
    color: #c00;
    margin-top: 8px;
    font-size: 15px;
    text-align: center;
}
@media (max-width: 900px) {
    #wrapper { padding: 16px 2vw; }
}
@media (max-width: 600px) {
    .flex-row { flex-direction: column; gap: 0; }
    .toplam-box { text-align: left; min-width: unset; }
    #wrapper { padding: 4px 0; }
}
.logo {
    display: block;
    margin: 0 auto 24px auto;
    max-width: 180px;
}
.gradient-title {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.gradient-btn {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    color: #fff !important;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(124, 58, 237, 0.10);
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
}
.gradient-btn:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
    box-shadow: 0 4px 16px 0 rgba(124, 58, 237, 0.18);
}
.btn-delete {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.btn-delete:hover {
    background: #ffe4e6;
}
.product-box {
    width: 180px;
    height: 140px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px 0 rgba(80,100,120,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    border: 2px solid #e3e6ef;
    position: relative;
}
.product-box.selectable {
    cursor: pointer;
    border: 2px solid #2563eb;
    background: linear-gradient(90deg, #f0f4ff 0%, #f8faff 100%);
}
.product-box.selectable:hover {
    box-shadow: 0 6px 24px 0 rgba(37,99,235,0.13);
    transform: translateY(-2px) scale(1.03);
    background: linear-gradient(90deg, #e0e7ff 0%, #f1f5ff 100%);
}
.product-box.disabled {
    opacity: 0.5;
    filter: grayscale(0.2);
    pointer-events: none;
}
.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #373a47;
    letter-spacing: 0.01em;
    text-align: center;
    user-select: none;
}

/* TEKLİF PDF MODERN TASARIM */
.teklif-pdf-content {
    background: #f4f7fb;
    padding: 32px 18px 24px 18px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    color: #222;
}
.teklif-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 18px;
}
.teklif-logo {
    height: 56px;
    width: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(80,100,120,0.08);
    padding: 6px 16px;
}
.teklif-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 2px;
    flex: 1;
}
.teklif-row {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
}
.teklif-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px 0 rgba(80,100,120,0.07);
    padding: 18px 18px 12px 18px;
    flex: 1;
    min-width: 260px;
}
.teklif-box-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.teklif-info-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 1rem;
}
.teklif-info-row span {
    min-width: 90px;
    color: #555;
    font-weight: 500;
}
.teklif-info-row input,
.teklif-info-row textarea {
    flex: 1;
    border: 1px solid #dbeafe;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 1rem;
    background: #f8fafc;
    color: #222;
}
.teklif-info-row textarea {
    min-height: 36px;
    resize: vertical;
}
.urunler-box {
    margin-bottom: 18px;
}
.teklif-bottom-row {
    display: flex;
    gap: 18px;
    margin-top: 10px;
}
.odeme-box, .not-box {
    flex: 1;
}
.teklif-temsilci {
    margin-top: 18px;
    text-align: right;
    color: #888;
    font-size: 1.05rem;
}
/* Tablo ve toplam kutusu için ek stiller */
#editableProductList {
    margin-bottom: 10px;
}
.toplam-box {
    background: #e0e7ef;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 1.08rem;
    color: #222;
    min-width: 180px;
    box-shadow: 0 1px 4px 0 rgba(80,100,120,0.06);
    margin-left: 12px;
}
.toplam-box label {
    color: #2563eb;
    font-weight: 600;
    margin-right: 6px;
}
.toplam-tutar {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.12rem;
}
/* Responsive */
@media (max-width: 900px) {
    .teklif-row, .teklif-bottom-row {
        flex-direction: column;
        gap: 10px;
    }
    .teklif-pdf-content {
        padding: 12px 2vw 12px 2vw;
    }
}

/* YENİ MODERN TEKLİF TASARIMI */
.teklif-modern-content {
    background: #f7fafd;
    padding: 0 0 32px 0;
    border-radius: 18px;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1a2233;
    box-shadow: 0 4px 32px 0 rgba(37,99,235,0.08);
    border: 1.5px solid #e3e6ef;
}
.teklif-modern-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 32px 0 32px;
}
.teklif-modern-logo {
    height: 64px;
    width: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(80,100,120,0.10);
    padding: 8px 20px;
}
.teklif-modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #22c55e 100%);
    padding: 18px 38px;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.10);
    margin-left: -32px;
}
.teklif-modern-band {
    height: 8px;
    background: linear-gradient(90deg, #2563eb 0%, #22c55e 100%);
    border-radius: 0 0 18px 18px;
    margin-bottom: 24px;
}
.teklif-modern-row {
    display: flex;
    gap: 24px;
    padding: 0 32px;
    margin-bottom: 18px;
}
.teklif-modern-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px 0 rgba(80,100,120,0.08);
    padding: 22px 20px 16px 20px;
    flex: 1;
    min-width: 260px;
    border: 1.5px solid #e3e6ef;
}
.modern-card-title {
    font-size: 1.13rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.modern-card-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 1rem;
}
.modern-card-info span {
    min-width: 90px;
    color: #555;
    font-weight: 500;
}
.modern-card-info input,
.modern-card-info textarea {
    flex: 1;
    border: 1px solid #dbeafe;
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 1rem;
    background: #f8fafc;
    color: #222;
}
.modern-card-info textarea {
    min-height: 36px;
    resize: vertical;
}
.teklif-modern-products-row {
    display: flex;
    gap: 24px;
    padding: 0 32px;
    margin-bottom: 18px;
}
.teklif-modern-products {
    background: #f4f7fb;
    border-radius: 14px;
    box-shadow: 0 1px 8px 0 rgba(80,100,120,0.06);
    padding: 18px 18px 12px 18px;
    flex: 2;
    min-width: 320px;
    border: 1.5px solid #e3e6ef;
}
.teklif-modern-total {
    background: linear-gradient(120deg, #2563eb 0%, #22c55e 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.10);
    padding: 24px 24px 18px 24px;
    flex: 1;
    min-width: 220px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1.5px solid #e3e6ef;
}
.teklif-modern-total .modern-card-title {
    color: #fff;
    margin-bottom: 10px;
}
.teklif-modern-total .toplam-box {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #fff;
    padding: 0;
    margin-left: 0;
}
.teklif-modern-total .toplam-box label {
    color: #fff;
    font-weight: 600;
}
.teklif-modern-total .toplam-tutar {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 4px;
}
.teklif-modern-bottom-row {
    display: flex;
    gap: 24px;
    padding: 0 32px;
    margin-top: 0;
    align-items: flex-end;
    justify-content: flex-end;
}
.teklif-modern-total-bottom.kibarlastir {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.07);
    padding: 18px 22px 14px 22px;
    min-width: 220px;
    color: #2563eb;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    border: 1.5px solid #e3e6ef;
    margin-left: auto;
    margin-bottom: 0;
    transition: box-shadow 0.2s;
}
.teklif-modern-total-bottom.kibarlastir .modern-card-title {
    color: #2563eb;
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.teklif-modern-total-bottom.kibarlastir .toplam-box {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #2563eb;
    padding: 0;
    margin-left: 0;
    font-size: 1.01rem;
    align-items: flex-end;
}
.teklif-modern-total-bottom.kibarlastir .toplam-box label {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.98rem;
}
.teklif-modern-total-bottom.kibarlastir .toplam-tutar {
    color: #22c55e;
    font-size: 1.18rem;
    font-weight: 700;
    margin-top: 2px;
}
.odeme-modern-card .modern-card-info span {
    min-width: 110px;
    color: #555;
    font-weight: 500;
}
@media (max-width: 900px) {
    .teklif-modern-row, .teklif-modern-products-row, .teklif-modern-bottom-row {
        flex-direction: column;
        gap: 12px;
        padding: 0 8px;
    }
    .teklif-modern-header {
        flex-direction: column;
        gap: 10px;
        padding: 18px 8px 0 8px;
    }
    .teklif-modern-title {
        font-size: 1.5rem;
        padding: 10px 18px;
        margin-left: 0;
        border-radius: 0 12px 12px 0;
    }
    .teklif-modern-bottom-row {
        flex-direction: column;
        gap: 12px;
        padding: 0 8px;
        align-items: stretch;
        justify-content: flex-start;
    }
    .teklif-modern-total-bottom.kibarlastir {
        align-items: stretch;
        margin-left: 0;
        margin-top: 8px;
    }
}

/* YENİ MODERN TEKLİF TASARIMI GÜNCELLEME */
.teklif-modern-products-full {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 8px 0 rgba(80,100,120,0.08);
    padding: 22px 24px 16px 24px;
    margin: 0 32px 18px 32px;
    border: 1.5px solid #e3e6ef;
}
.teklif-modern-products-full .modern-card-title {
    margin-bottom: 16px;
}
.teklif-modern-products-full #editableProductList {
    margin-bottom: 10px;
}
.teklif-modern-products-full .btn-primary {
    margin-top: 0;
}
.teklif-modern-bottom-row {
    display: flex;
    gap: 24px;
    padding: 0 32px;
    margin-top: 0;
}
.teklif-modern-total-bottom {
    background: linear-gradient(120deg, #2563eb 0%, #22c55e 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.10);
    padding: 24px 24px 18px 24px;
    flex: 1;
    min-width: 220px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1.5px solid #e3e6ef;
    margin-right: 0;
}
.teklif-modern-total-bottom .modern-card-title {
    color: #fff;
    margin-bottom: 10px;
}
.teklif-modern-total-bottom .toplam-box {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #fff;
    padding: 0;
    margin-left: 0;
}
.teklif-modern-total-bottom .toplam-box label {
    color: #fff;
    font-weight: 600;
}
.teklif-modern-total-bottom .toplam-tutar {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 4px;
}
.firma-temsilci-modern-card .modern-card-info span {
    min-width: 90px;
}
@media (max-width: 900px) {
    .teklif-modern-products-full {
        margin: 0 8px 12px 8px;
        padding: 12px 6vw 12px 6vw;
    }
    .teklif-modern-bottom-row {
        flex-direction: column;
        gap: 12px;
        padding: 0 8px;
    }
}

/* Yeni başlık ve 3 parçalı alt bölüm için stil */
.teklif-modern-header-new {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 32px 032px 32px;
    border-bottom: 1.5px solid #e3e6ef;
    margin-bottom: 18px;
}
.teklif-modern-title-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: #23272f;
    letter-spacing: 1.5px;
    flex: 1;
    text-align: left;
    padding-left: 18px;
    border-left: 4px solid #2563eb;
}
.teklif-modern-bottom-row-3 {
    display: flex;
    gap: 18px;
    padding: 0 32px;
    margin-top: 18px;
}
.teklif-modern-bottom-row-3 > .teklif-modern-card,
.teklif-modern-bottom-row-3 > .teklif-modern-total-bottom {
    flex: 1 1 0;
    min-width: 0;
    margin: 0;
}
.teklif-modern-bottom-row-3 .banka-modern-card {
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 1px 6px 0 rgba(80,100,120,0.06);
    border: 1.5px solid #e3e6ef;
    padding: 18px 16px 14px 16px;
    color: #23272f;
}
.teklif-modern-bottom-row-3 .banka-modern-card .modern-card-title {
    color: #2563eb;
    font-size: 1.08rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.teklif-modern-bottom-row-3 .banka-modern-card .modern-card-info span {
    min-width: 80px;
    color: #555;
    font-weight: 500;
}
.teklif-modern-bottom-row-3 .banka-modern-card .modern-card-info {
    font-size: 0.98rem;
    margin-bottom: 6px;
}
.teklif-modern-bottom-row-3 .teklif-modern-total-bottom.kibarlastir {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(37,99,235,0.07);
    padding: 18px 18px 14px 18px;
    color: #2563eb;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    border: 1.5px solid #e3e6ef;
    margin-left: 0;
    margin-bottom: 0;
    min-width: 0;
    transition: box-shadow 0.2s;
}
.teklif-modern-bottom-row-3 .teklif-modern-total-bottom.kibarlastir .modern-card-title {
    color: #2563eb;
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.teklif-modern-bottom-row-3 .teklif-modern-total-bottom.kibarlastir .toplam-box {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #2563eb;
    padding: 0;
    margin-left: 0;
    font-size: 1.01rem;
    align-items: flex-end;
}
.teklif-modern-bottom-row-3 .teklif-modern-total-bottom.kibarlastir .toplam-box label {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.98rem;
}
.teklif-modern-bottom-row-3 .teklif-modern-total-bottom.kibarlastir .toplam-tutar {
    color: #22c55e;
    font-size: 1.18rem;
    font-weight: 700;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .teklif-modern-header-new {
        flex-direction: column;
        gap: 10px;
        padding: 18px 8px 0 8px;
        margin-bottom: 10px;
    }
    .teklif-modern-title-new {
        font-size: 1.3rem;
        padding-left: 8px;
        border-left-width: 3px;
    }
    .teklif-modern-bottom-row-3 {
        flex-direction: column;
        gap: 10px;
        padding: 0 8px;
        margin-top: 10px;
    }
    .teklif-modern-bottom-row-3 > .teklif-modern-card,
    .teklif-modern-bottom-row-3 > .teklif-modern-total-bottom {
        min-width: 0;
    }
}

/* 2 parçalı alt bölüm ve renkli toplam kutusu */
.teklif-modern-bottom-row-2 {
    display: flex;
    gap: 18px;
    padding: 0 32px;
    margin-top: 18px;
}
.teklif-modern-bottom-row-2 > .teklif-modern-card.banka-modern-card {
    max-width: 66%;
    min-width: 0;
    margin: 0;
}
.teklif-modern-bottom-row-2 > .teklif-modern-total-bottom {
    flex: 0 0 33%;
    max-width: 33%;
    min-width: 0;
    margin: 0;
    align-self: stretch;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.teklif-modern-bottom-row-2 .banka-modern-card {
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 1px 6px 0 rgba(80,100,120,0.06);
    border: 1.5px solid #e3e6ef;
    padding: 18px 16px 14px 16px;
    color: #23272f;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.95rem;
}
.teklif-modern-bottom-row-2 .banka-modern-card .modern-card-title {
    color: #2563eb;
    font-size: 1.01rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.teklif-modern-bottom-row-2 .banka-modern-card .modern-card-info span {
    min-width: 80px;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
}
.teklif-modern-bottom-row-2 .banka-modern-card .modern-card-info {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.teklif-modern-bottom-row-2 .banka-modern-card b {
    display: block;
    margin: 10px 0 2px 0;
    color: #1746a2;
    font-size: 0.98rem;
    font-weight: 600;
}
.teklif-modern-bottom-row-2 .teklif-modern-total-bottom.kibarlastir.renkli-bg {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(124,58,237,0.10);
    padding: 22px 18px 18px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    border: 1.5px solid #e3e6ef;
    margin-left: 0;
    margin-bottom: 0;
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.2s;
}
.teklif-modern-bottom-row-2 .teklif-modern-total-bottom.kibarlastir.renkli-bg .modern-card-title {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.teklif-modern-bottom-row-2 .teklif-modern-total-bottom.kibarlastir.renkli-bg .toplam-box {
    background: transparent;
    box-shadow: none;
    border: none;
    color: #fff;
    padding: 0;
    margin-left: 0;
    font-size: 1.01rem;
    align-items: flex-end;
    width: 100%;
}
.teklif-modern-bottom-row-2 .teklif-modern-total-bottom.kibarlastir.renkli-bg .toplam-box label {
    color: #fff;
    font-weight: 500;
    font-size: 0.98rem;
}
.teklif-modern-bottom-row-2 .teklif-modern-total-bottom.kibarlastir.renkli-bg .toplam-box span {
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 0px;
    letter-spacing: 0.01em;
}
.teklif-modern-bottom-row-2 .teklif-modern-total-bottom.kibarlastir.renkli-bg .toplam-tutar {
    color: #22c55e !important;
    font-size: 1.18rem;
    font-weight: 700;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .teklif-modern-bottom-row-2 {
        flex-direction: column;
        gap: 10px;
        padding: 0 8px;
        margin-top: 10px;
    }
    .teklif-modern-bottom-row-2 > .teklif-modern-card.banka-modern-card,
    .teklif-modern-bottom-row-2 > .teklif-modern-total-bottom {
        max-width: 100%;
        flex: 1 1 0;
    }
} 