.breadcrumbs {
    display: flex;
    z-index: 1;
    margin:0 auto 1rem!important;
    max-width: 1000px;
    width: 90%;
    font-size: 14px;
    gap:0.5rem;
    color:var(--wp--preset--color--grey);
}
.breadcrumbs > a{
    color:var(--wp--preset--color--grey);
    display: flex;
    align-items: center;
    cursor: pointer;
    gap:1rem;
}
.breadcrumbs > a:hover {
  color: #404040;
}
.breadcrumbs > a::after,
.breadcrumbs > a::before{
    content:'';
    width:10px;
    height:10px;
    line-height: 1;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.01247 10.0001L0.124969 9.11264L4.23747 5.00014L0.124969 0.887638L1.01247 0.000137329L6.01247 5.00014L1.01247 10.0001Z' fill='%23939090'/%3E%3C/svg%3E%0A");   
}
.breadcrumbs > a::after {
    display: none;
}
.single-product .breadcrumbs > a {
    font-weight: bold;
    gap:0.7rem;
}
.single-product .breadcrumbs > a::before {
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 7 10'%3E%3Cpolygon style='fill: %23939090;' points='1.1 0 0 1.1 3.9 5 0 8.9 1.1 10 6.1 5 1.1 0'/%3E%3C/svg%3E");
}
.single-product .breadcrumbs > a::after {
    display: none !important;
}
.breadcrumbs > a::before{
    transform:rotate(180deg);
}
.breadcrumbs .home-link {
    text-decoration: none;
    display: none;
}
.breadcrumbs .home-link svg{
    width:20px !important;
}
.breadcrumbs .current-page {
    display: none;
}
/*
.breadcrumbs > a:nth-last-child(2){
    display: inline-block;
} */

@media only screen and (min-width: 800px) {
    .breadcrumbs {
        margin:2rem auto 1rem!important;
    }
    .breadcrumbs .home-link {
        display: flex;
        align-items: center;
    }
    .breadcrumbs > a {
        display: flex;
        align-items: center;
    }
    .breadcrumbs > a::after {
        display: inline-block;
    }
    .breadcrumbs > a::before{
        display: none;
    }
    .single-product .breadcrumbs > a::before {
        display: inline-block !important;
    }
    .breadcrumbs .current-page {
        display: inline-block;
    }
    .single-product .breadcrumbs > a {
        font-size: 1.05rem;
    }
}