/* Minimalist Luxury Breadcrumb */
.breadcrumb {
    margin: 2rem 0 3rem 0;
    padding: 0;
    background: none;
    position: relative;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #e0e0e0 20%, 
        #bdbdbd 50%, 
        #e0e0e0 80%, 
        transparent 100%);
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0.3px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    position: relative;
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #bdbdbd;
    border-radius: 50%;
    margin: 0 1.5rem;
    opacity: 0.7;
}

.breadcrumb a {
    color: #757575;
    text-decoration: none;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.breadcrumb a:hover {
    color: #424242;
}

.breadcrumb a:hover::after {
    width: 100%;
}

.breadcrumb li[aria-current="page"] span {
    color: #212121;
    font-weight: 600;
    padding: 0.8rem 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
}

.breadcrumb li[aria-current="page"] span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}