/****************************
    Breadcrumb
*****************************/
.breadcrumb-section {
    border-bottom: 1px solid var(--bs-dark);
    position: fixed;
    top: 100px;
    z-index: 30;
}

@media (max-width: 767px) {
    .breadcrumb-section {
        top: 117px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    padding: 0 8px;
    color: var(--bs-secondary);
}

.breadcrumb-item a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--bs-secondary);
}

/****************************
    Scrollbar
*****************************/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: var(--bs-light);
}

/****************************
    Whatsapp Icon 
*****************************/
.whatsapp-fixed {
    position: fixed;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 16px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-fixed:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.whatsapp-fixed .wa-icon {
    width: 34px;
    height: 34px;
    background: #fff;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.whatsapp-fixed .wa-text {
    white-space: nowrap;
}

@media (max-width: 576px) {
    .whatsapp-fixed {
        padding: 14px;
    }

    .whatsapp-fixed .wa-text {
        display: none;
    }
}