/* ═══════════════════════════════════════════
   BAYİ BAŞVURU MODAL
   ═══════════════════════════════════════════ */

#bayiBasvuru .modal-content {
    max-height: 94vh;
    overflow: hidden;
    border-radius: 16px;
}

.bb-form-body {
    overflow-y: auto;
    max-height: calc(94vh - 58px);
    padding: 24px 28px 20px;
    -webkit-overflow-scrolling: touch;
}

.bb-form-body::-webkit-scrollbar {
    width: 4px;
}

.bb-form-body::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 2px;
}

/* Steps */
.bb-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 14px 0 8px;
}

.bb-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bb-step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--bg-2);
    color: var(--text-2);
    transition: all .3s;
    flex-shrink: 0;
}

.bb-step-txt {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    transition: color .3s;
}

.bb-step.active .bb-step-num {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 10px var(--primary-rgba-2);
}

.bb-step.active .bb-step-txt {
    color: var(--main);
    font-weight: 600;
}

.bb-step.done .bb-step-num {
    background: var(--success);
    color: var(--white);
}

.bb-step.done .bb-step-txt {
    color: var(--success);
}

.bb-step-line {
    flex: 1;
    height: 2px;
    background: var(--line);
    margin: 0 14px;
    max-width: 50px;
    transition: background .3s;
}

.bb-step-line.done {
    background: var(--success);
}

/* Panel Anim */
.bb-panel {
    animation: bbFade .3s ease;
}

@keyframes bbFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Field */
.bb-field {
    margin-bottom: 18px;
}

.bb-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 6px;
}

.bb-label span {
    color: var(--red_1);
}

.bb-input,
.bb-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    color: var(--main);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.bb-input:focus,
.bb-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-rgba-1);
}

.bb-input.is-invalid,
.bb-select.is-invalid {
    border-color: var(--red_1);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .08);
}

.bb-input::placeholder {
    color: var(--text-3);
}

.bb-textarea {
    resize: vertical;
    min-height: 70px;
}

.bb-hint {
    display: block;
    font-size: 11px;
    color: var(--text-2);
    margin-top: 4px;
}

/* Select Styled */
.bb-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 38px;
    cursor: pointer;
}

.bb-select:disabled {
    background-color: var(--bg-1);
    color: var(--text-2);
    cursor: not-allowed;
}

/* Checkbox */
.bb-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text);
    margin-top: 6px;
    margin-bottom: 0;
    line-height: 1.5;
}

.bb-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

.bb-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.bb-kvkk {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

/* Type Toggle */
.bb-type-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.bb-type-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.bb-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bb-type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--bg-2);
    color: var(--text-2);
    flex-shrink: 0;
    transition: all .2s;
}

.bb-type-text strong {
    display: block;
    font-size: 14px;
    color: var(--main);
    line-height: 1.3;
}

.bb-type-text small {
    font-size: 11px;
    color: var(--text-2);
}

.bb-type-check {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: transparent;
    transition: all .2s;
    flex-shrink: 0;
}

.bb-type-card:hover {
    border-color: var(--text-3);
}

.bb-type-card.active {
    border-color: var(--primary);
    background: var(--primary-rgba-1);
}

.bb-type-card.active .bb-type-icon {
    background: var(--primary);
    color: var(--white);
}

.bb-type-card.active .bb-type-check {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Buttons */
.bb-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    gap: 12px;
}

.bb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.bb-btn-next, .bb-btn-submit {
    background: var(--primary);
    color: var(--white);
}

.bb-btn-next:hover, .bb-btn-submit:hover {
    opacity: .85;
}

.bb-btn-back {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.bb-btn-back:hover {
    border-color: var(--text-2);
    color: var(--main);
}

.bb-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.bb-footer-link {
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
}

/* ═══════════════════════════════════════════
   SEPET BADGE
   ═══════════════════════════════════════════ */

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    z-index: 2;
    pointer-events: none;
}

.cart-count-badge.bounce {
    animation: badgeBounce 0.5s ease;
}

@keyframes badgeBounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.4);
    }
    60% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

#miniCartProgressBar {
    transition: width 0.6s ease;
}

.sepet-header-adet {
    font-weight: 400;
    font-size: 14px;
    color: var(--text);
}

/* ═══════════════════════════════════════════
   MİNİ CART - KOMPAKT ÜRÜN SATIRLARI
   ═══════════════════════════════════════════ */

.mc-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
}

.mc-item:last-child {
    border-bottom: none;
}

/* Ürün görseli */
.mc-item .mc-item-img {
    width: 56px;
    min-width: 56px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    background: var(--bg-2);
}

.mc-item .mc-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bilgi alanı */
.mc-item .mc-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Üst: başlık + kaldır */
.mc-item .mc-item-top {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.mc-item .mc-item-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--main);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.mc-item .mc-item-title:hover {
    color: var(--primary);
}

.mc-item .mc-item-remove {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: none;
    background: none;
    color: var(--text-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    padding: 0;
    margin-top: -1px;
}

.mc-item .mc-item-remove:hover {
    background: rgba(219, 18, 21, 0.08);
    color: var(--red_1);
}

/* Meta: varyant + birim fiyat */
.mc-item .mc-item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    min-height: 0;
}

.mc-item .mc-item-variant {
    font-size: 10.5px;
    color: var(--text-2);
    font-weight: 500;
    background: var(--bg-2);
    padding: 1px 6px;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

/* Birim fiyat */
.mc-item .mc-birim-fiyat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-2);
    white-space: nowrap;
}

/* Fiyat güncellendi uyarısı */
.mc-price-updated {
    font-size: 9px;
    color: var(--primary);
    font-weight: 600;
    animation: fiyatUyariFade 2s ease infinite;
}

@keyframes fiyatUyariFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* KDV tag */
.mc-kdv-tag {
    font-size: 9px;
    font-weight: 700;
    color: var(--text-2);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Alt: miktar + fiyat */
.mc-item .mc-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 2px;
}

/* Miktar kontrolü */
.mc-item .mc-item-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    height: 26px;
}

.mc-item .mc-qty-btn {
    width: 24px;
    height: 100%;
    border: none;
    background: var(--bg-2);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.15s;
    line-height: 1;
    font-family: inherit;
}

.mc-item .mc-qty-btn:hover {
    background: var(--main);
    color: var(--white);
}

.mc-item .mc-qty-btn:active {
    transform: scale(0.9);
}

.mc-item .mc-qty-val {
    width: 28px;
    height: 100%;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--main);
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
    background: var(--white);
}

.mc-item .mc-qty-val::-webkit-outer-spin-button,
.mc-item .mc-qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Satır toplam fiyat */
.mc-item .mc-item-price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.mc-item .mc-item-price .price {
    font-size: 13px;
    font-weight: 700;
    color: var(--main);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   MİNİ CART BOTTOM
   ═══════════════════════════════════════════ */

.tf-mini-cart-bottom {
    border-top: 1px solid var(--line);
    padding: 0;
}

/* ═══ TOPLAM ALANI ═══ */
.mc-totals {
    padding: 12px 20px 4px;
}

.mc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 13px;
    color: var(--text);
}

.mc-total-row span:last-child {
    font-weight: 600;
    color: var(--main);
}

.mc-total-row.mc-total-main {
    padding: 6px 0;
}

.mc-total-row.mc-total-main span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--main);
}

.mc-total-row.mc-total-main .mc-total-price {
    font-size: 18px;
    font-weight: 800;
}

/* KDV alt satır */
.mc-total-row.mc-total-sub {
    font-size: 12px;
    color: var(--text-2);
    padding: 2px 0;
}

.mc-total-row.mc-total-sub span:last-child {
    color: var(--text-2);
    font-weight: 500;
}

.mc-total-divider {
    height: 1px;
    background: var(--line);
    margin: 6px 0;
}

.mc-total-row.mc-total-grand {
    padding: 8px 0 4px;
}

.mc-total-row.mc-total-grand span:first-child {
    font-size: 15px;
    font-weight: 700;
}

.mc-total-row.mc-total-grand span:last-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

/* TL karşılığı */
.mc-tl-karsiligi {
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    padding: 2px 0 4px;
    letter-spacing: 0.01em;
}

/* Vergi notu */
.mc-tax-note {
    font-size: 10.5px;
    color: var(--text-3);
    text-align: center;
    padding: 2px 0 0;
    line-height: 1.3;
}

/* ═══ AKSİYON BUTONLARI ═══ */
.mc-actions {
    display: flex;
    gap: 8px;
    padding: 10px 20px 12px;
}

.mc-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.mc-btn-outline {
    border: 1.5px solid var(--main);
    background: transparent;
    color: var(--main);
}

.mc-btn-outline:hover {
    background: var(--main);
    color: var(--white);
}

.mc-btn-primary {
    border: none;
    background: var(--primary);
    color: var(--white);
}

.mc-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--primary-rgba-2);
    color: var(--white);
}

/* ═══ ALT ARAÇ ÇUBUĞU ═══ */
.mc-footer-bar {
    display: flex;
    align-items: center;
    border-top: 1px solid var(--line);
    background: var(--bg-1);
}

.mc-footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    background: none;
    color: var(--text-2);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    position: relative;
    white-space: nowrap;
}

.mc-footer-btn:hover {
    color: var(--main);
    background: var(--bg-2);
}

.mc-footer-btn.mc-footer-danger:hover {
    color: var(--red_1);
    background: rgba(219, 18, 21, 0.04);
}

.mc-footer-btn svg:not(.mc-chevron) {
    flex-shrink: 0;
    opacity: 0.7;
}

.mc-footer-btn:hover svg {
    opacity: 1;
}

.mc-footer-divider {
    width: 1px;
    height: 20px;
    background: var(--line);
    flex-shrink: 0;
}

/* Chevron */
.mc-chevron {
    transition: transform 0.25s ease;
    opacity: 0.5;
    margin-left: 2px;
}

.mc-footer-btn.active .mc-chevron {
    transform: rotate(180deg);
}

/* Not gösterge noktası */
.mc-note-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ═══ SİPARİŞ NOTU PANELİ ═══ */
.mc-note-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.3s ease;
    padding: 0 20px;
    background: var(--bg-1);
    border-top: 0px solid transparent;
}

.mc-note-panel.open {
    max-height: 130px;
    opacity: 1;
    padding: 10px 20px 10px;
    border-top: 1px solid var(--line);
}

.mc-note-input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12.5px;
    color: var(--main);
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 44px;
    max-height: 64px;
    background: var(--white);
    line-height: 1.4;
}

.mc-note-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-rgba-1);
}

.mc-note-input::placeholder {
    color: var(--text-3);
    font-size: 11.5px;
}

.mc-note-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    color: var(--text-3);
    margin-top: 4px;
    min-height: 15px;
}

.mc-note-status.saving {
    color: var(--text-2);
}

.mc-note-status.saved {
    color: var(--success);
}

.mc-note-status svg {
    width: 11px;
    height: 11px;
}

/* ═══ ESKİ STİLLERİ GİZLE ═══ */
.tf-mini-cart-bottom .tf-mini-cart-tool,
.tf-mini-cart-bottom .tf-mini-cart-bottom-wrap,
.tf-mini-cart-bottom .tf-mini-cart-view-checkout,
.tf-mini-cart-bottom .tf-cart-totals-discounts,
.tf-mini-cart-bottom .tf-cart-tax,
.tf-mini-cart-bottom .tf-mini-cart-line,
.tf-mini-cart-bottom .mini-cart-note-wrap,
.tf-mini-cart-bottom .mini-cart-totals,
.tf-mini-cart-bottom .mini-cart-tax-note {
    display: none !important;
}

/* Eski item stillerini override */
.tf-mini-cart-item.mc-item .tf-mini-cart-image,
.tf-mini-cart-item.mc-item .tf-mini-cart-info,
.tf-mini-cart-item.mc-item .tf-mini-cart-btns,
.tf-mini-cart-item.mc-item .wg-quantity {
    display: none !important;
}

/* ═══════════════════════════════════════════
   CUSTOM CONFIRM DIALOG
   ═══════════════════════════════════════════ */

.confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    padding: 20px;
}

.confirm-overlay.show {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.confirm-box {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px 20px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.confirm-overlay.show .confirm-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.confirm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.confirm-icon.icon-warning {
    background: #fff3e0;
    color: #ff9800;
}

.confirm-icon.icon-danger {
    background: #fce4ec;
    color: var(--red_1);
}

.confirm-icon svg {
    width: 28px;
    height: 28px;
}

.confirm-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.confirm-text {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.5;
    margin-bottom: 20px;
}

.confirm-actions {
    display: flex;
    gap: 10px;
}

.confirm-btn {
    flex: 1;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.2s;
}

.confirm-btn-cancel {
    background: var(--bg-2);
    color: var(--text);
}

.confirm-btn-cancel:hover {
    background: var(--line);
}

.confirm-btn-confirm {
    background: var(--red_1);
    color: var(--white);
}

.confirm-btn-confirm:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(219, 18, 21, 0.25);
}

/* ═══════════════════════════════════════════
   KALDIRMA ANİMASYONU
   ═══════════════════════════════════════════ */

#miniCartItems {
    overflow: hidden;
}

.mc-item {
    transition: opacity 0.25s ease, transform 0.3s ease, max-height 0.25s ease;
}

.mc-item.removing {
    transform: translateX(100%);
    opacity: 0;
    overflow: hidden;
}

.mc-item.collapsing {
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden;
}

.tf-mini-cart-sroll {
    overflow-x: hidden;
    overflow-y: auto;
}

.tf-mini-cart-items {
    overflow: hidden;
}

#miniCartEmpty svg {
    color: var(--text-2);
}

/* ═══════════════════════════════════════════
   ÜRÜN KARTI - ANA YAPI
   ═══════════════════════════════════════════ */

.card-product {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-product .card-product-wrapper {
    flex-shrink: 0;
}

.card-product .card-product-wrapper .product-img {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 133%;
    overflow: hidden;
}

.card-product .card-product-wrapper .product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.35s ease;
}

/* ═══════════════════════════════════════════
   ÜRÜN KARTI - BİLGİ ALANI
   ═══════════════════════════════════════════ */

.card-product .card-product-info {
    container-type: inline-size;
    min-width: 0;
    overflow: hidden;
    padding: 6px 0 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-product .card-product-info.text-center {
    padding: 6px 4px 0;
    align-items: center;
}

/* ═══════════════════════════════════════════
   ÜRÜN KARTI - META BİLGİLERİ
   ═══════════════════════════════════════════ */

.card-product .product-brand {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-2);
    margin: 0 0 2px;
    flex-shrink: 0;
}

.card-product .product-meta {
    display: block;
    font-size: 11.5px;
    color: var(--text);
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin: 0;
    flex-shrink: 0;
    font-weight: 600;
}

.card-product .product-sku {
    margin-top: 2px;
}

.card-product .product-barcode {
    margin-bottom: 2px;
}

.card-product .title.link[data-title] {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    margin-bottom: 2px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ÜRÜN KARTI - FİYAT BLOK (BÜYÜTÜLMÜŞ)
   ═══════════════════════════════════════════ */

.card-product .price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin: 6px 0;
    margin-top: auto;
    flex-shrink: 0;
}

.card-product-info:not(.text-center) .price-block {
    align-items: flex-start;
}

/* ── DAHİL TİP ── */
.card-product .price-block .price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.3;
}

.card-product-info:not(.text-center) .price-block .price {
    justify-content: flex-start;
}

.card-product .price-block .old-price {
    text-decoration: line-through;
    color: var(--text-3);
    font-size: 13px;
    font-weight: 600;
}

.card-product .price-block .new-price,
.card-product .price-block .price .fw-7,
.card-product .price-block [data-current-price] {
    font-size: 19px;
    font-weight: 800;
    color: var(--main);
}

.card-product .kdv-dahil-tag {
    font-size: 10px;
    color: var(--success);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.card-product .price-tl-equiv-inline {
    font-size: 13px;
    color: var(--text);
    font-weight: 700;
    white-space: nowrap;
}

/* ── DETAYLI TİP ── */
.price-block .price-base-line {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.3;
    margin-bottom: 3px;
}

.card-product-info:not(.text-center) .price-block .price-base-line {
    justify-content: flex-start;
}

.price-block .price-base-line .fw-7,
.price-block .price-base-line [data-base-price] {
    font-size: 19px;
    font-weight: 800;
    color: var(--main);
}

.price-block .price-base-line .old-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    text-decoration: line-through;
}

.price-block .kdv-plus-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-2);
    white-space: nowrap;
}

.price-block .price-kdv-dahil-line {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 1.3;
}

.card-product-info:not(.text-center) .price-block .price-kdv-dahil-line {
    justify-content: flex-start;
}

.price-block .kdv-dahil-fiyat {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
}

.price-block .old-price-small {
    text-decoration: line-through;
    color: var(--text-3);
    font-size: 12px;
    font-weight: 600;
}

.price-block .price-kdv-dahil-line .kdv-dahil-tag {
    font-size: 9px;
}

.price-block .price-kdv-dahil-line .price-tl-equiv-inline {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.card-product .price-tl-equiv {
    display: block;
    font-size: 13px;
    color: var(--text-2);
    font-weight: 600;
    margin: 0;
}

/* ═══ MOBİL ═══ */
@media (max-width: 767px) {
    .card-product .price-block {
        margin: 4px 0;
        gap: 2px;
    }

    .card-product .price-block .old-price {
        font-size: 11px;
    }

    .card-product .price-block .new-price,
    .card-product .price-block .price .fw-7,
    .card-product .price-block [data-current-price] {
        font-size: 16px;
    }

    .card-product .price-tl-equiv-inline {
        font-size: 11px;
    }

    .card-product .kdv-dahil-tag {
        font-size: 9px;
    }

    .price-block .kdv-plus-tag {
        font-size: 10px;
    }

    .price-block .price-base-line .fw-7,
    .price-block .price-base-line [data-base-price] {
        font-size: 16px;
    }

    .price-block .kdv-dahil-fiyat {
        font-size: 14px;
    }

    .price-block .old-price-small {
        font-size: 10px;
    }

    .price-block .price-kdv-dahil-line .price-tl-equiv-inline {
        font-size: 11px;
    }
}

/* ═══════════════════════════════════════════
   ÜRÜN KARTI - ADET + SEPETE EKLE
   ═══════════════════════════════════════════ */

.card-product .add-to-cart-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.card-product .qty-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    height: 36px;
    flex-shrink: 0;
}

.card-product .qty-btn {
    width: 28px;
    min-width: 28px;
    height: 100%;
    border: none;
    background: var(--bg-2);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.card-product .qty-btn:hover {
    background: var(--main);
    color: var(--white);
}

.card-product .qty-btn:active {
    transform: scale(0.92);
}

.card-product .qty-input {
    width: 36px;
    min-width: 30px;
    max-width: 44px;
    height: 100%;
    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--main);
    outline: none;
    padding: 0;
    -moz-appearance: textfield;
    background: var(--white);
    box-sizing: border-box;
}

.card-product .qty-input::-webkit-outer-spin-button,
.card-product .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.card-product .btn-add-cart {
    background-color: var(--primary);
    color: var(--white);
    border: 0;
    flex: 1 1 auto;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 36px;
    padding: 0 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.card-product .btn-add-cart svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.card-product .btn-add-cart span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-product .btn-add-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-rgba-2);
}

/* ═══════════════════════════════════════════
   VARYANT SCROLL SİSTEMİ
   ═══════════════════════════════════════════ */

.variant-scroll-wrap {
    position: relative;
    width: 100%;
    margin: 4px 0 2px;
    overflow: hidden;
    flex-shrink: 0;
}

.variant-scroll-inner {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 4px;
    justify-content: center;
}

.variant-scroll-inner::-webkit-scrollbar {
    display: none;
}

.variant-scroll-inner.has-overflow {
    justify-content: flex-start;
}

.variant-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1.5px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
}

.variant-chip:hover {
    border-color: var(--text-2);
    background: var(--bg-1);
}

.variant-chip.active {
    border-color: var(--main);
    background: var(--main);
    color: var(--white);
    box-shadow: 0 2px 8px var(--main-rgba-2);
}

.variant-chip-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--main-rgba-1);
}

.variant-chip.active .variant-chip-color {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.variant-chip-text {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.variant-label {
    font-weight: 400;
    opacity: 0.7;
    font-size: 0.9em;
    transition: opacity 0.2s;
}

/* Varyant geçiş animasyonları */
.card-product.variant-switching .product-img img {
    opacity: 0.3;
}

.card-product [data-price-wrap] {
    transition: opacity 0.2s ease;
}

.card-product.variant-switching [data-price-wrap] {
    opacity: 0.4;
}

/* Ok butonları */
.variant-scroll-wrap.has-arrows {
    padding: 0 22px;
}

.variant-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: 0 1px 3px var(--main-rgba-1);
}

.variant-arrow:hover {
    background: var(--main);
    color: var(--white);
    box-shadow: 0 2px 6px var(--main-rgba-2);
}

.variant-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.variant-arrow-left {
    left: 0;
}

.variant-arrow-right {
    right: 0;
}

.variant-arrow.disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   SWIPER / GRID EŞİT YÜKSEKLİK
   ═══════════════════════════════════════════ */

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.swiper-slide .card-product {
    height: 100%;
}

.grid-layout {
    display: grid;
    align-items: stretch;
}

.grid-layout .card-product {
    height: 100%;
}

/* ═══════════════════════════════════════════
   TAŞMA ÖNLEME
   ═══════════════════════════════════════════ */

.swiper-slide .card-product,
.swiper-slide .card-product-info,
.swiper-slide .card-product .add-to-cart-wrap,
.grid-layout .card-product,
.grid-layout .card-product-info,
.grid-layout .card-product .add-to-cart-wrap {
    max-width: 100%;
    box-sizing: border-box;
}

.swiper-slide .card-product,
.swiper-slide .card-product-info {
    overflow: visible;
}

@container (max-width: 200px) {
    .card-product .add-to-cart-wrap {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════ */

@media (max-width: 991px) {
    .card-product .qty-btn {
        width: 26px;
        min-width: 26px;
        font-size: 14px;
    }

    .card-product .qty-input {
        width: 32px;
        min-width: 28px;
        font-size: 12px;
    }

    .card-product .qty-input-wrap {
        height: 34px;
    }

    .card-product .btn-add-cart {
        height: 34px;
        font-size: 11px;
        padding: 0 10px;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - MOBİL
   ═══════════════════════════════════════════ */

@media (max-width: 767px) {
    /* Bayi Başvuru */
    #bayiBasvuru .modal-dialog {
        margin: 6px;
    }

    #bayiBasvuru .modal-content {
        max-height: 97vh;
        border-radius: 12px;
    }

    .bb-form-body {
        max-height: calc(97vh - 52px);
        padding: 16px 16px 14px;
    }

    .bb-steps {
        margin-bottom: 20px;
        padding: 8px 0;
    }

    .bb-step-txt {
        display: none;
    }

    .bb-step-line {
        max-width: 36px;
        margin: 0 8px;
    }

    .bb-type-row {
        grid-template-columns: 1fr;
    }

    .bb-actions {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .bb-actions .bb-btn {
        width: 100%;
        justify-content: center;
    }

    .bb-field {
        margin-bottom: 14px;
    }

    /* Mini cart ürün */
    .mc-item .mc-item-img {
        width: 48px;
        min-width: 48px;
        height: 60px;
        border-radius: 5px;
    }

    .mc-item {
        gap: 8px;
        padding: 8px 0;
    }

    .mc-item .mc-item-title {
        font-size: 11.5px;
    }

    .mc-item .mc-birim-fiyat {
        font-size: 10.5px;
    }

    .mc-item .mc-item-price .price {
        font-size: 12px;
    }

    .mc-item .mc-qty-btn {
        width: 22px;
        font-size: 13px;
    }

    .mc-item .mc-qty-val {
        width: 24px;
        font-size: 10px;
    }

    .mc-item .mc-item-qty {
        height: 24px;
    }

    .mc-kdv-tag {
        font-size: 8px;
    }

    /* Mini cart bottom */
    .mc-totals {
        padding: 10px 16px 4px;
    }

    .mc-total-row.mc-total-main .mc-total-price {
        font-size: 16px;
    }

    .mc-total-row.mc-total-grand span:last-child {
        font-size: 16px;
    }

    .mc-tl-karsiligi {
        font-size: 11px;
    }

    .mc-actions {
        padding: 8px 16px 10px;
    }

    .mc-btn {
        height: 38px;
        font-size: 12px;
    }

    .mc-footer-btn {
        padding: 8px 10px;
        font-size: 11px;
        gap: 5px;
    }

    .mc-note-panel.open {
        padding: 8px 16px 8px;
    }

    /* Ürün Kartı */
    .card-product .card-product-info {
        padding: 4px 0 0;
    }

    .card-product .card-product-info.text-center {
        padding: 4px 2px 0;
    }

    .card-product .product-brand {
        font-size: 10px;
        margin-bottom: 1px;
    }

    .card-product .product-meta {
        font-size: 10.5px;
    }

    .card-product .title.link[data-title] {
        font-size: 13px;
        margin-bottom: 1px;
    }

    .card-product .price-block {
        margin: 4px 0;
        gap: 2px;
    }

    .card-product .price-block .old-price {
        font-size: 11px;
    }

    .card-product .price-block .new-price,
    .card-product .price-block .price .fw-7,
    .card-product .price-block [data-current-price] {
        font-size: 16px;
    }

    .card-product .price-tl-equiv-inline {
        font-size: 11px;
    }

    .card-product .kdv-dahil-tag {
        font-size: 9px;
    }

    .price-block .kdv-plus-tag {
        font-size: 10px;
    }

    .price-block .price-base-line .fw-7,
    .price-block .price-base-line [data-base-price] {
        font-size: 16px;
    }

    .price-block .kdv-dahil-fiyat {
        font-size: 14px;
    }

    .price-block .old-price-small {
        font-size: 10px;
    }

    .price-block .price-kdv-dahil-line .price-tl-equiv-inline {
        font-size: 11px;
    }

    .variant-scroll-wrap {
        margin: 3px 0 1px;
    }

    .variant-chip {
        padding: 3px 8px;
        gap: 4px;
    }

    .variant-chip-text {
        font-size: 10px;
    }

    .variant-chip-color {
        width: 12px;
        height: 12px;
    }

    .variant-scroll-inner {
        gap: 5px;
    }

    .variant-scroll-wrap.has-arrows {
        padding: 0 20px;
    }

    .variant-arrow {
        width: 18px;
        height: 18px;
    }

    .variant-arrow svg {
        width: 10px;
        height: 10px;
    }

    .card-product .add-to-cart-wrap {
        gap: 5px;
        margin-top: 4px;
    }

    .card-product .qty-input-wrap {
        height: 32px;
    }

    .card-product .qty-btn {
        width: 26px;
        min-width: 26px;
        font-size: 13px;
    }

    .card-product .qty-input {
        width: 30px;
        min-width: 26px;
        font-size: 12px;
    }

    .card-product .btn-add-cart {
        height: 32px;
        font-size: 10px;
        padding: 0 8px;
        gap: 4px;
    }

    .card-product .btn-add-cart svg {
        width: 11px;
        height: 11px;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - KÜÇÜK MOBİL
   ═══════════════════════════════════════════ */

@media (max-width: 480px) {
    .card-product .add-to-cart-wrap {
        flex-direction: column;
        gap: 5px;
    }

    .card-product .qty-input-wrap {
        width: 100%;
        justify-content: center;
        height: 34px;
    }

    .card-product .qty-btn {
        width: 36px;
        min-width: 36px;
    }

    .card-product .qty-input {
        flex: 1;
        width: auto;
        max-width: none;
    }

    .card-product .btn-add-cart {
        width: 100%;
        height: 34px;
        font-size: 11px;
    }

    .variant-chip {
        padding: 2px 7px;
    }

    .variant-chip-text {
        font-size: 9.5px;
    }
}

/* ═══════════════════════════════════════════
   KARGO KARŞI ÖDEMELİ UYARI
   ═══════════════════════════════════════════ */

/* Mini Cart (Drawer) */
.mc-cargo-note {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #fef3c7;
    border-radius: 6px;
    font-size: 11px;
    line-height: 1.3;
    color: #92400e;
    font-weight: 500;
}

.mc-cargo-note svg {
    flex-shrink: 0;
    color: #d97706;
}

/* Sepet Sayfası */
.ct-cargo-note {
    display: none;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    margin-top: 8px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #92400e;
}

.ct-cargo-note.show {
    display: flex;
}

.ct-cargo-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #d97706;
}

.ct-ship.done .ct-cargo-note {
    display: none !important;
}

/* Ödeme Sayfası - Kargo inline notu */
.co-cargo-inline {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 5px 0 0;
    letter-spacing: 0.01em;
}

.co-cargo-inline.warn {
    color: #b45309;
}

.co-cargo-inline.ok {
    color: #059669;
}

/* ═══════════════════════════════════════ */
/* B2B SEARCH                             */
/* ═══════════════════════════════════════ */

/* ── Search input wrapper ── */
.b2b-search-frm .b2b-search-field {
    position: relative !important;
    flex: 1;
}

/* ── Input — sağda clear butonuna yer aç ── */
.b2b-search-frm .b2b-search-field input {
    padding-right: 40px !important;
    width: 100%;
}
/* ── Clear butonu — input içinde sağda ortalı ── */
.b2b-search-frm .b2b-search-clear {
    position: absolute !important;
    right: 10px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--bg-2, #f1f5f9);
    border: none;
    border-radius: 50%;
    color: var(--text-2, #64748b);
    cursor: pointer;
    padding: 0;
    z-index: 5;
    transition: all .2s;
    line-height: 1;
    margin: 0;
}

.b2b-search-frm .b2b-search-clear:hover {
    background: var(--line, #e2e8f0);
    color: var(--main, #0f172a);
}
.b2b-search-frm .b2b-search-clear.show {
    display: flex;
}
/* ── Section title ── */
.b2bs-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-3, #94a3b8);
    padding: 12px 20px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.b2bs-count {
    font-weight: 500;
    color: var(--text-2);
    font-size: 11px;
}

/* ── Kategori chips ── */
.b2bs-kat-list {
    padding: 0 16px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.b2bs-kat-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: var(--bg-1, #f8fafc);
    border: 1px solid var(--line, #e2e8f0);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text, #475569);
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}
.b2bs-kat-item:hover {
    border-color: var(--primary, #2563eb);
    color: var(--primary, #2563eb);
    background: rgba(37,99,235,.06);
}
.b2bs-kat-cnt {
    font-size: 10px;
    color: var(--text-3);
    font-weight: 500;
}

/* ── Ürün listesi ── */
.b2bs-urun-list { padding: 0 12px; }

.b2bs-urun-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.b2bs-urun-item:hover {
    background: var(--bg-1, #f8fafc);
}

.b2bs-urun-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-2, #f1f5f9);
    border: 1px solid var(--line, #e2e8f0);
}
.b2bs-urun-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b2bs-urun-info {
    flex: 1;
    min-width: 0;
}
.b2bs-urun-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--main, #0f172a);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b2bs-urun-variant {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary, #2563eb);
    margin-top: 1px;
}
.b2bs-urun-meta {
    font-size: 11px;
    color: var(--text-3, #94a3b8);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b2bs-urun-meta span + span::before {
    content: '·';
    margin: 0 4px;
}

.b2bs-urun-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary, #2563eb);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.b2bs-kdv-tag {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-3, #94a3b8);
    letter-spacing: 0.3px;
}

/* Stok yok */
.b2bs-urun-item.stok-yok {
    opacity: .5;
}
.b2bs-stok-yok-tag {
    font-size: 10px;
    color: var(--red_1, #ef4444);
    font-weight: 600;
}

/* ── Highlight ── */
.b2bs-hl {
    background: rgba(245, 158, 11, .2);
    border-radius: 2px;
    padding: 0 1px;
}

/* ── Tümünü gör ── */
.b2bs-all-link {
    padding: 12px 20px 20px;
    text-align: center;
}
.b2bs-all-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--main, #0f172a);
    color: var(--white, #fff);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s;
}
.b2bs-all-link a:hover { opacity: .85; }

/* ── Kategoriler divider ── */
#b2bSearchKategoriler {
    border-bottom: 1px solid var(--line, #e2e8f0);
    padding-bottom: 6px;
    margin-bottom: 4px;
}

/* ═══════════════════════════════════════ */
/* HEADER TİP 5 — INLINE SEARCH DROPDOWN */
/* ═══════════════════════════════════════ */

.h5-search-wrap {
    position: relative !important;
}

/* Arama butonu renk düzeltmesi */
.h5-search-wrap .search-box .tf-btn {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border: none !important;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.h5-search-wrap .search-box .tf-btn i {
    color: var(--white) !important;
}
.h5-search-wrap .search-box .tf-btn:hover {
    opacity: .85;
}

/* Input */
.h5-search-wrap .search-box input {
    border: 1.5px solid var(--line) !important;
    border-right: none !important;
    padding: 8px 14px !important;
    font-size: 13px;
    color: var(--main);
    background: var(--white);
}
.h5-search-wrap .search-box input:focus {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

/* Dropdown */
.h5-search-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    z-index: 1050;
    max-height: 420px;
    overflow-y: auto;
    animation: h5ddIn .2s ease;
}

@keyframes h5ddIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown içi — sonuçlar offcanvas ile aynı yapıda */
.h5-search-dropdown .b2bs-urun-item {
    padding: 8px 12px;
}
.h5-search-dropdown .b2bs-urun-img {
    width: 44px;
    height: 44px;
}
.h5-search-dropdown .b2bs-urun-name {
    font-size: 12.5px;
    -webkit-line-clamp: 1;
}
.h5-search-dropdown .b2bs-urun-price {
    font-size: 13px;
}

/* Kategoriler */
.h5-search-dropdown .b2bs-kat-list {
    padding: 6px 12px;
}

/* Section title */
.h5-search-dropdown .b2bs-section-title {
    padding: 8px 14px 4px;
    font-size: 10px;
}

/* Tümünü gör */
.h5-sd-all {
    padding: 8px 14px 12px;
    text-align: center;
    border-top: 1px solid var(--line);
}
.h5-sd-all a {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.h5-sd-all a:hover {
    text-decoration: underline;
}

/* Scrollbar */
.h5-search-dropdown::-webkit-scrollbar { width: 4px; }
.h5-search-dropdown::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

@media (max-width: 767px) {
    .mc-cargo-note {
        margin: 4px 16px 0;
        font-size: 10.5px;
        padding: 5px 12px;
        gap: 5px;
    }

    .ct-cargo-note {
        font-size: 11.5px;
        padding: 8px 12px;
    }

}