.single-products .post-image {
    position: relative;
    width: fit-content;
    margin: auto;
}

.single-products .post-image img{
    margin: auto;
    display: block;
}

.single-products .post-meta{
    display:flex;
    justify-content: center;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    padding: 2rem;
    margin: 0.4rem;
}

.single-products .post-meta-box{
    margin: 1rem;
    padding: 0 1rem;
}

.single-products .post-meta-box:not(:first-child){
    border-left: 1px solid lightgray;
}

.single-products .meta-p {
    font-size: 2rem;
}

.single-products h2 {
    color: gray;
}

.single-products .post-tax {
    display: flex;
    justify-content: center;
}

.single-products .post-tax .post-tax-cat,
.single-products .post-tax .post-tax-tag{
    padding: 1rem;
    width: 30%;
}

.single-products .post-tax .post-tax-cat h2,
.single-products .post-tax .post-tax-tag h2{
    text-align: center;
}

.single-products .post-tax .post-tax-cat ul,
.single-products .post-tax .post-tax-tag ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style-type: none;
}

.single-products .post-tax .post-tax-cat ul li,
.single-products .post-tax .post-tax-tag ul li{
    background-color: gray;
    padding: .4rem .8rem;
    margin: .4rem;
}

.single-products .post-tax .post-tax-cat ul li a,
.single-products .post-tax .post-tax-tag ul li a{
    color: white;
}

.post-available-icon-yes{
    width: 10%;
    fill: green;

    position: absolute;
    bottom: -2%;
    left: -2%;
    z-index: 100;
}

.post-available-text-yes{
    /* padding: 2%; */
    margin: 0;
    /* background-color: green; */
    position: absolute;
    bottom: -2%;
    left: 1%;
    border-radius: 15%;
    font-size: 2rem;
    /* color: white; */
    z-index: 0;

    opacity: 0;
    visibility: hidden;

    transition: all .4s ease;
}

.post-available-icon-yes:hover ~ .post-available-text-yes{
    opacity: 1;
    visibility: visible;
    transform: translateX(8%);
    z-index: 1;
    padding-left: 7%;
}

.post-available-icon-no{
    width: 10%;
    fill: red;

    position: absolute;
    bottom: -2%;
    left: -2%;
    z-index: 100;
}

.post-available-text-no{
    margin: 0;
    position: absolute;
    bottom: -2%;
    left: 1%;
    border-radius: 15%;
    font-size: 2rem;
    z-index: 0;

    opacity: 0;
    visibility: hidden;

    transition: all .4s ease;
}

.post-available-icon-no:hover ~ .post-available-text-no{
    opacity: 1;
    visibility: visible;
    transform: translateX(8%);
    z-index: 1;
    padding-left: 7%;
}


/* archive loop styles */

.wb-archive-loop_container{
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.wb-archive-loop_container .item {
    width: 22%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--vivid-cyan-blue);
    padding: 1rem 0;
    border-radius: 8px;
    border: 2px solid var(--global--color-primary);
}

@media (max-width:1100px) {
    .wb-archive-loop_container .item{
        width: 45%;
        margin-bottom: 1rem;
    }
}

@media (max-width:600px) {
    .wb-archive-loop_container .item{
        width: 95%;
        
    }
}

.wb-archive-loop_container .item *{
    margin: 0.6rem auto;
}

.wb-archive-loop_container .item .wp-post-image{
    object-fit: contain;
    max-height: 400px;
}

.tax-products-cat .page-title{
    text-align: center;
}
.tax-products-tag .page-title{
    text-align: center;
}

.tax-products-cat .taxonomy-description{
    text-align: center;
}

/* no grid */

.wb-archive-loop .no-grid .item {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--vivid-cyan-blue);
    padding: 1rem 0;
    border-radius: 8px;
    border: 2px solid var(--global--color-primary);
    margin-bottom: 2rem;
}

.wb-archive-loop .no-grid .item *{
    max-width: 33% !important;
    width: 33% !important;
    display: flex;
    align-items: center;
    min-height: 450px;
}

.wb-archive-loop .no-grid .item  h2{
    text-align: center;
}

.wb-archive-loop .no-grid .item .button{
    justify-content: center;
    min-height: 100px;
    text-align: center;
    align-items: center;
}


/* product card - like shop */

.wb-shop-product{
    display: flex;
    flex-wrap: wrap;
}

.wb-shop-product > *{
    width: 45%;
}

@media (max-width: 960px) {
    .wb-shop-product > *{
        width: 95%;
        
    }
}

.shop-tax-cat ul,
.shop-tax-tag ul{
    display: flex;
    list-style-type: none;
}

.shop-tax-cat ul li,
.shop-tax-tag ul li{
    padding-right: 1rem;
}

.shop-tax-cat ul li:not(:last-child),
.shop-tax-tag ul li:not(:last-child) {
    margin-right: 1rem;
    border-right: 1px solid;
}

.shop-tax-cat ul li a,
.shop-tax-tag ul li a{
    color: var(--global--color-primary);
    text-decoration: none;
}

.wb-shop-product bdi.price{
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--bs-gray-600);
}

.wb-shop-product .product-image img{
    object-fit: contain;
    width: 80%;
    display: block;
    margin: .4rem auto;
}



.single-products .entry-content{
    max-width: 1400px;
    margin: 2rem auto;
    display: block;
    padding: 1rem;
}