/*Disable Page Title for Cartflows & It has Elementor Page*/
.elementor-page .ct-container-full {
    padding-top: 0px;
    padding-bottom: 0px;
}

.cartflows_step .hero-section.is-width-constrained {
    display: none;
}

/*Book Author Archive*/
.book-authors-archive .page-title{
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
}
.book-authors-archive .book-authors-list {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.book-authors-archive .book-authors-list li.book-author a {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.book-authors-archive li.book-author img {
    width: 100%;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    aspect-ratio: 4 / 4;
}

.book-authors-archive li.book-author h3 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color:rgb(35, 35, 35);
}


.book-authors-archive .pagination {
    text-align: center;
    margin: 3em auto;
}

.book-authors-archive .pagination .page-numbers {
    padding: 5px 15px;
    background: #f2f2f2;
    border-radius: 5px;
    margin: 0px 2px;
}


/*Product Loop*/
ul.products li.product {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
}

ul.products li.product .ct-woo-card-actions {
    margin-bottom: 15px;
}

[data-products] .woocommerce-loop-product__title,
[data-products] .woocommerce-loop-category__title {
    padding: 0px 5px;
}


.products .sale-price, .products span.price {
    color: #05b157;
    font-weight: bold;
}
.products .sale-price del {
    font-size: 100%;
    font-weight: 500;
    color: #000;
    opacity: .8;
}

[data-products] figure .ct-media-container img:hover {
    scale: 1.2;
    transition: .5s;
}

.product-book-author {
    font-size: 14px;
    font-weight: 700;
}

.product-book-author a{
    color: #0f0f0f;
}

.product-book-author a:hover {
    color: #05c310;
}


ul.products a.button.product_type_simple, ul.products a.button.product_type_variable {
    background: rgb(10, 24, 112);
    background: linear-gradient(90deg, rgba(10, 24, 112, 1) 0%, rgba(9, 95, 126, 1) 35%, rgba(9, 184, 147, 1) 100%);
}

ul.products a.button.product_type_simple:hover, ul.products a.button.product_type_variable:hover {
    background: rgb(5, 88, 231);
    background: linear-gradient(90deg, rgb(0, 36, 34) 0%, rgb(9, 110, 121) 35%, rgb(0, 255, 149) 100%);
}


@media (min-width: 1025px) {
    .book-authors-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .book-authors-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .book-authors-archive .page-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .book-authors-list {
        grid-template-columns: repeat(3, 1fr);
    }
}