/* ========================================
   BREADCRUMBS STYLES - LinumSerenum
   ======================================== */

.breadcrumbs {
    padding: 0.75rem 0;
    margin-bottom: 1.25rem;
    background: var(--premium-cream);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--bg-color);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.breadcrumbs a:hover {
    color: var(--premium-green);
}

.breadcrumbs .current {
    color: var(--element-color-1);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Beautiful arrow separator */
.breadcrumbs .separator {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0.5rem;
    color: var(--premium-gray);
    opacity: 0.6;
    font-size: 0.875rem;
}

.breadcrumbs .separator::before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    display: inline-block;
}

.home-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.home-link .icon-home {
    width: 1rem;
    height: 1rem;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    flex-shrink: 0;
    opacity: 0.8;
    margin-bottom: 5px;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
    .breadcrumbs {
        position: relative;
        padding: 0.625rem 0;
        margin-bottom: 1rem;
    }
    
    
    .breadcrumbs a,
    .breadcrumbs .current {
        font-size: 14px;
    }
    
    .breadcrumbs .container {
        gap: 0.375rem;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.9) rgba(255, 255, 255, 0.05);
        -webkit-overflow-scrolling: touch;
        -webkit-mask-image: linear-gradient(to right, black 0%, black calc(100% - 30px), transparent 100%);
        mask-image: linear-gradient(to right, black 0%, black calc(100% - 30px), transparent 100%);
    }
    
    .breadcrumbs a,
    .breadcrumbs .current,
    .breadcrumbs .separator {
        flex-shrink: 0;
    }
    
    .breadcrumbs .separator {
        margin: 0 0.375rem;
    }
    
    .breadcrumbs .separator::before {
        width: 0.3125rem;
        height: 0.3125rem;
        border-width: 1.5px;
    }
    
.home-link .icon-home {
    width: 14px;
    height: 14px;
    margin-bottom: 1px;
}
        /* Custom scrollbar for webkit browsers */
    .breadcrumbs .container::-webkit-scrollbar {
        height: 2px;
    }
    
    .breadcrumbs .container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
    }
    
    .breadcrumbs .container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 2px;
    }
    
}