/* ===== Breadcrumb Wrapper ===== */
.breadcrumb_back {
    background: linear-gradient(180deg, #f8f9fa, #f1f3f5);
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

/* ===== Breadcrumb List ===== */
.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

/* ===== Links ===== */
.breadcrumb-custom a {
    color: #6c757d;
    text-decoration: none;
    transition: color .2s ease;
}

.breadcrumb-custom a:hover {
    color: #212529;
}

/* ===== Active Item ===== */
.breadcrumb-item.active {
    color: #212529;
    font-weight: 600;
}

/* ===== Separator ===== */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    padding: 0 8px;
    font-size: 14px;
}

/* ===== Mobile Optimize ===== */
@media (max-width: 576px) {
    .breadcrumb-custom {
        font-size: 12px;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 6px;
    }
}

/* add to card notification  */

/* Cart Toast - Modern Ayar */
/* BOOTSTRAP'I EZ */
.toast-container {
    position: fixed !important;
    top: 90px !important;     /* navbar altı */
    bottom: auto !important;
    right: 40px !important;   /* sola kaydır */
    left: auto !important;
    z-index: 1055;
}

#cartToast {
    opacity: 0.85;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

#cartToast:hover {
    opacity: 1;
}

body .toast-container {
    top: 65px !important;
}

