/* ============================================
   LifeTaste Breadcrumb Navigation
   Modern, responsive breadcrumb component
   ============================================ */

.lt-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-family: "DIN", "Helvetica Neue", sans-serif;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 8px;
}

.lt-breadcrumb__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lt-breadcrumb__link::before {
    content: "\f015";
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85em;
    opacity: 0.8;
}

.lt-breadcrumb__link:hover {
    color: #F26522;
    transform: translateX(-2px);
}

.lt-breadcrumb__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F26522, #e82e73);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.lt-breadcrumb__link:hover::after {
    width: 100%;
}

.lt-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7em;
    display: flex;
    align-items: center;
}

.lt-breadcrumb__current {
    color: #F26522;
    font-weight: 600;
    text-transform: capitalize;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .lt-breadcrumb {
        font-size: 0.9rem;
        gap: 8px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .lt-breadcrumb {
        font-size: 0.8rem;
        gap: 6px;
        padding: 5px 12px;
    }

    .lt-breadcrumb__link::before {
        display: none;
    }
}
