/* Breadcrumb Styles - Reusable Component */
.breadcrumb-wrapper {
    background: #0b2b40;
    border-bottom: 2px solid #facc15;
    padding: 0.8rem 0;
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-top: 120px

}

.breadcrumb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-nav li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.breadcrumb-nav li:not(:last-child):after {
    content: "/";
    color: #facc15;
    font-weight: 500;
    margin-left: 0.4rem;
}

.breadcrumb-nav a {
    color: #ffd966;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-nav .current-page {
    color: white;
    font-weight: 600;
    background: rgba(250, 204, 21, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    letter-spacing: 0.2px;
}

.product-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-shortcut {
    background: rgba(255, 255, 240, 0.12);
    border-radius: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #facc15;
    transition: all 0.2s;
    border: 1px solid rgba(250, 204, 21, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-shortcut i {
    font-size: 0.7rem;
    color: #ffd966;
}

.product-shortcut:hover {
    background: #facc15;
    color: #0b2b40;
    border-color: #facc15;
    transform: translateY(-2px);
}

.product-shortcut:hover i {
    color: #0b2b40;
}

@media (max-width: 860px) {
    .breadcrumb-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-shortcuts {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.3rem;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .product-shortcut {
        white-space: nowrap;
    }
}

@media (max-width: 550px) {
    .breadcrumb-nav li {
        font-size: 0.7rem;
    }
    .product-shortcut {
        font-size: 0.65rem;
        padding: 0.2rem 0.7rem;
    }
}