/* ==========================================================================
   GENEL MODAL VE OVERLAY STİLLERİ
   ========================================================================== */

#basit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    animation: fadeIn 0.3s ease-out;
}
.basit-hesap-btn {
    background-color: #28a745 !important;
    color: #fff !important;
    padding: 10px 16px !important;
    border: 0 !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-left: 8px;
}
.basit-hesap-btn:hover { background-color: #218838 !important; }
#basit-modal {
    position: relative;
    width: 90%;
    max-width: 850px;
    z-index: 9999;
    animation: slideIn 0.4s ease-out;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.basit-hesap-btn {
    background-color: #28a745 !important;
    color: #fff !important;
    padding: 10px 16px !important;
    border: 0 !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-left: 8px;
}
.basit-hesap-btn:hover { background-color: #218838 !important; }

#basit-hesap-modal { position: fixed; inset:0; z-index: 10000; }
#basit-hesap-modal .bhm-overlay { position:absolute; inset:0; background:rgba(0,0,0,.5); }
#basit-hesap-modal .bhm-modal {
  position: relative; max-width: 420px; width: 90%; margin: 10vh auto; background:#fff; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2); overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
#basit-hesap-modal .bhm-header { padding:12px 16px; background:#0d6efd; color:#fff; display:flex; align-items:center; justify-content:space-between; }
#basit-hesap-modal .bhm-header .bhm-close { background:transparent; border:none; color:#fff; font-size:20px; cursor:pointer; }
#basit-hesap-modal .bhm-body { padding:16px; font-size:14px; color:#333;}
#basit-hesap-modal .bhm-row { display:flex; align-items:center; justify-content:space-between; margin:8px 0; gap:10px; }
#basit-hesap-modal .bhm-row label { font-weight:600; color:#495057; }
#basit-hesap-modal .bhm-row.bhm-total label { font-size:16px; }
#basit-hesap-modal .bhm-row.bhm-total #bhm_toplam { font-weight:700; color:#0d6efd; font-size: 16px; }
#basit-hesap-modal select { width: 140px; padding:6px; border:1px solid #ced4da; border-radius:6px; }
#basit-hesap-modal .bhm-footer { padding:12px 16px; background:#f8f9fa; display:flex; justify-content:flex-end; gap:8px; }
#basit-hesap-modal .btn-secondary { background:#198754; color:#fff; border:none; padding:8px 12px; border-radius:6px; cursor:pointer;}
#basit-hesap-modal .btn-secondary:hover { background:#157347; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-12px) scale(.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

#basit-modal .modal-content {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ==========================================================================
   MODAL HEADER VE İLERLEME ÇUBUĞU
   ========================================================================== */

#basit-modal .modal-header {
    background-color: #fff;
    padding: 20px 25px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#basit-modal .modal-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #212529;
}

#wizard-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step {
    display: flex;
    align-items: center;
    color: #198754;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #198754;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: bold;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.progress-step.active span {
    background-color: #fff;
    border-color: #0d6efd;
    color: #0d6efd;
}

.progress-step.completed span {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.progress-step.active {
    color: #212529;
    font-weight: 700;
}

#basit-modal .btn-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #198754;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: all 0.2s;
}

#basit-modal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}
#basit-modal .btn-close::before { content: '\00d7'; }


/* ==========================================================================
   MODAL BODY VE SİHİRBAZ ADIMLARI
   ========================================================================== */

#basit-modal .modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 25px;
    text-align: center;
}

/* ==========================================================================
   ADIM 1: MÜŞTERİ TİPİ SEÇİMİ
   ========================================================================== */

.customer-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.customer-type-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customer-type-option:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.customer-type-option.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.customer-type-option i {
    font-size: 36px;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;
}

.customer-type-option span {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
}

/* ==========================================================================
   ADIM 2 & 3: FORM ELEMANLARI
   ========================================================================== */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

.required-field::after {
    content: " *";
    color: #dc3545;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::placeholder {
    color: #198754;
    opacity: 1;
}

select.form-control:disabled {
    background-color: #e9ecef;
    opacity: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

/* ==========================================================================
   ADIM 3: BAYİ SEÇİMİ
   ========================================================================== */

#basit-modal .bayi-secim-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 15px;
}

#basit-modal .bayi-header .section-title {
    font-size: 16px;
    margin-bottom: 8px;
}

#basit-modal .bayi-counter {
    margin-bottom: 15px;
    font-weight: bold;
    color: #0d6efd;
}

#basit-modal .bayi-list-container {
    min-height: 360px;
    max-height: 540px;
    overflow-y: auto;
}

/* Modern teslimat türü seçenekleri */
#basit-modal .teslimat-turu-options {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-top: 10px;
    flex-wrap: wrap;
}

#basit-modal .teslimat-turu-option {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all .18s ease;
    min-width: 200px;
    box-shadow: 0 2px 6px rgba(15,23,42,0.04);
    position: relative;
}

/* If any radio inputs remain, keep them hidden to avoid layout issues */
#basit-modal .teslimat-turu-option input[type="radio"] {
    display: none;
}

#basit-modal .teslimat-turu-option .tto-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
#basit-modal .teslimat-turu-option .tto-text span { font-weight: 600; color: #212529; }
#basit-modal .teslimat-turu-option .tto-text small { font-size: 13px; color: #6c757d; margin-top: 5px; display: block; text-align: center; }
#basit-modal .teslimat-turu-option { word-break: break-word; }
#basit-modal .teslimat-turu-option .tto-text { min-width: 0; }

#basit-modal .teslimat-turu-option > span { font-weight: 600; color: #212529; }

#basit-modal .teslimat-turu-option:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(13,110,253,0.06); border-color: #cfe0ff; }

#basit-modal .teslimat-turu-option.active { border-color: #0d6efd; background: linear-gradient(180deg,#eef6ff,#e7f3ff); box-shadow: 0 12px 30px rgba(13,110,253,0.12); }
#basit-modal .teslimat-turu-option.active input[type="radio"] { background: #0d6efd; border-color: #0d6efd; }

#basit-modal .teslimat-turu-option::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    box-shadow: none;
    opacity: 0;
    transform: scale(.9);
    transition: all .18s ease;
}
#basit-modal .teslimat-turu-option.active::after {
    content: "✓";
    background: #0d6efd;
    box-shadow: 0 4px 10px rgba(13,110,253,.18);
    opacity: 1;
    transform: scale(1);
}

#basit-modal .bayi-ilce-group h6 {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 20px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

#basit-modal .bayi-item {
    display: flex;
    align-items: center;
    padding: 15px;
    min-height: 90px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background-color: #fff;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}

#basit-modal .bayi-item:hover {
    border-color: #86b7fe;
    background-color: #f8f9fa;
}

#basit-modal .bayi-item.selected {
    border-color: #0d6efd;
    background-color: #e7f1ff;
}

#basit-modal .bayi-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f8f9fa;
}

#basit-modal .bayi-checkbox {
    margin-right: 15px;
    font-size: 22px;
    color: #ced4da;
}

#basit-modal .bayi-item.selected .bayi-checkbox {
    color: #0d6efd;
}

#basit-modal .bayi-info {
    flex-grow: 1;
}

#basit-modal .bayi-name {
    font-weight: 600;
    font-size: 16px;
    color: #343a40;
    margin-bottom: 3px;
}

#basit-modal .bayi-address {
    font-size: 14px;
    color: #198754;
    line-height: 1.4;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0d6efd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   ADIM 4: ÖZET
   ========================================================================== */

#summary-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ced4da;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-section h6 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
}

.summary-section p, .summary-section li {
    font-size: 15px;
    color: #495057;
    margin-bottom: 8px;
}

.summary-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.edit-step {
    font-size: 13px;
    font-weight: 500;
    color: #0d6efd;
    text-decoration: none;
}

.edit-step:hover {
    text-decoration: underline;
}

/* ==========================================================================
   MODAL FOOTER VE BUTONLAR
   ========================================================================== */

#basit-modal .modal-footer {
    background-color: #fff;
    padding: 20px 25px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
.btn-primary:disabled {
    background-color: #0d6efd;
    border-color: #0d6efd;
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-secondary {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}
.btn-secondary:hover {
    background-color: #5c636a;
    border-color: #565e64;
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}
.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

/* ==========================================================================
   RESPONSIVE TASARIM
   ========================================================================== */

@media (max-width: 768px) {
    #basit-modal {
        width: 95%;
        max-height: 95vh;
    }
    #basit-modal .modal-body {
        padding: 20px;
    }
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .customer-type-options {
        grid-template-columns: 1fr;
    }
    #wizard-progress {
        display: none; /* Mobilde ilerleme çubuğunu gizle, yer kaplamasın */
    }
}

/* ==========================================================================
   ORİJİNAL ÜRÜN KARTI STİLLERİ (Mevcut stillerle çakışmayı önlemek için)
   ========================================================================== */

.basit-urun-container {
    max-width: 100%;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.siparis-formu {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.form-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.urun-bilgi-alani {
    flex: 1;
    min-width: 200px;
}


.siparis-alani {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.form-item {
    display: flex;
    align-items: center;
}

.form-item strong {
    margin-right: 8px;
    color: #495057;
    font-weight: 500;
    font-size: 16px;
}

.form-item .urun-fiyat {
    font-size: 22px;
    color: #0d6efd;
    /* HeronSans SemiBold Italic - use if available, otherwise fall back */
    font-family: "HeronSans", "Heron Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: italic;
}

.siparis-formu select,
.siparis-formu input[type="number"] {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
}

.siparis-formu input[type="number"] {
    width: 70px;
    text-align: center;
}

.basit-siparis-btn {
    background-color: #0d6efd !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border: 0 !important;
    cursor: pointer !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: background-color 0.2s !important;
}

.basit-siparis-btn:not(.disabled):hover {
    background-color: #0b5ed7 !important;
}

.basit-siparis-btn.disabled {
    background-color: #6ea8fe !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.onay-kutusu-container {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background-color: #f8f9fa;
}


@media (max-width: 992px) {
    .form-layout, .siparis-alani {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .urun-bilgi-alani {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   KAMPANYA BADGE STİLLERİ
   ========================================================================== */

.urun-baslik {
    margin: 0;
    padding: 0;
    color: #212529;
    font-size: 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.kampanya-badge {
    display: inline-block;
    background: #dc3545; /* solid red */
    color: #fff !important;
    padding: 4px 8px; /* biraz daha küçük padding */
    border-radius: 4px; /* daha küçük köşe */
    font-size: 12px; /* yazı boyutunu küçülttüm */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 0 0 rgba(0,0,0,0); /* sadeleştirildi */
    white-space: nowrap;
    position: relative;
    overflow: visible;
}

/* Pulse (grow/shrink) animation: runs 3 times then stops */
.kampanya-badge {
    /* Radar pulse effect: two layered rings, each repeats 3 times then stops */
}

/* Simple pulse effect on kampanya badge */
.kampanya-badge {
    transform-origin: center center;
    animation: kampanya-pulse 1.5s ease-in-out infinite;
}

@keyframes kampanya-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220,53,69,0.0);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 10px 24px rgba(220,53,69,0.12);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220,53,69,0.0);
    }
}

.kampanya-aciklama {
    display: inline-block; /* sadece yazı genişliği kadar yer kaplasın */
    margin: 8px 0 0 0 !important;
    padding: 6px 10px !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    color: #856404 !important;
    background: #fff3cd !important;
    border-left: 3px solid #ffc107 !important;
    border-radius: 3px !important;
    font-weight: 400 !important;
    white-space: nowrap !important; /* tek satırda tutmak isterseniz bırakın, istemezseniz kaldırırım */
    overflow: visible !important;
    text-overflow: unset !important;
}

@media (max-width: 768px) {
    .urun-baslik {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .kampanya-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .kampanya-aciklama {
        font-size: 9px !important;
        padding: 5px 8px !important;
    }
}
/* ==========================================================================
   ONAY SLIDER SİSTEMİ - MODERN STEPPER TASARIM
   ========================================================================== */

.onay-slider-container {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.onay-progress-bar {
    position: relative;
    height: 6px;
    background: #e9ecef;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.onay-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 0%;
}

.onay-progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 12px;
    font-weight: 600;
    color: #198754;
}

.onay-slider-wrapper {
    position: relative;
    min-height: 100px;
}

.onay-slide {
    display: none;
    animation: slideIn 0.4s ease;
}

.onay-slide[data-active="true"] {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.onay-slide-content {
    background: transparent;
    padding: 0;
    border: none;
}

.onay-slide-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.onay-slide-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6c757d;
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    min-width: 55px;
    flex-shrink: 0;
}

.onay-slide-btn {
    flex: 1;
    padding: 12px 20px;
    background: #0d6efd !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    line-height: 1.5;
}

.onay-slide-btn:hover {
    background: #0b5ed7 !important;
    transform: translateY(-1px);
}

.onay-slide-btn:active {
    transform: translateY(0);
}

.onay-completion-message {
    text-align: center;
    padding: 30px;
    background: #d1e7dd;
    border: 2px solid #badbcc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.onay-completion-message i {
    font-size: 48px;
    color: #198754;
    margin-bottom: 15px;
    display: block;
}

.onay-completion-message span {
    font-size: 16px;
    font-weight: 600;
    color: #0f5132;
    line-height: 1.6;
    display: block;
}

@media (max-width: 768px) {
    .onay-slider-container {
        padding: 12px;
    }
    
    .onay-slide-number {
        font-size: 12px;
        padding: 10px 12px;
        min-width: 50px;
    }
    
    .onay-slide-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .onay-completion-message {
        padding: 25px;
    }
    
    .onay-completion-message i {
        font-size: 42px;
    }
    
    .onay-completion-message span {
        font-size: 15px;
    }
}
/* ==========================================================================
   ONAY TOOLTIP - SİPARİŞ VER BUTONU
   ========================================================================== */

.onay-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    padding: 10px 15px;
    background: #dc3545;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    z-index: 1000;
    display: none;
}

.onay-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #dc3545;
}

.basit-siparis-btn {
    position: relative;
}
