.author-title {
    flex: 0 0 150px;
    text-align: left;
}

.view-all-button {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid red;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.view-all-button:hover {
    background-color: red !important;
    color: white !important;
}

.book-slider {
    display: flex;
    align-items: center;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 20px;
    z-index: 10;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.book-slider {
    display: inline-flex;
    gap: 40px;
}

.book-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.book-details {
    margin-top: 10px;
}

.book-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    align-items: center;
    margin: 0;
}

.app-footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.footer-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-icons a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-icons i {
    font-size: 22px;
    margin-bottom: 5px;
}

.book-price {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 5px 0;
    color: #000;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 12px;
    line-height: 20px;
    margin-left: 5px;
}

.discount {
    color: green;
    font-size: 14px;
    margin-left: 5px;
}

.offer-banner {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.offer-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author_name {
    margin-top: 0;
    margin-bottom: 0;
    background: #F2A74B;
}

.slider1 {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slides-hero {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides-hero img {
    width: 100%;
    height: 740px;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-banner-image {
    height: 400px;
    object-fit: cover;
    border-radius: 0px 0px 20px 20px;
    object-position: top center;
}

.slider-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 16px;
    width: 2.5em;
    height: 2.5em;
    z-index: 1000;
    border-radius: 50%;
}

.slider-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-button.left {
    left: 10px;
}

.slider-button.right {
    right: 10px;
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.thumbnail {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    /* border: 2px solid #000; */
    border-radius: 8px;
}

.banner {
    width: 100%;
    height: auto;
    display: block;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.social-icons {
    gap: 3px !important;
}

.author-card .avatar {
    border: 2px solid transparent;
}

.author-card:hover .avatar {
    border: 2px solid;
    border-color: #F2A74B;
}

.author-card:hover .author-name {
    color: #F2A74B;
}

span#home-slider-sale-price {
    font-size: 18px;
}

span#home-slider-regular-price {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: #828282;
}

span#home-slider-regular-price::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #828282;
}

.home-slider-discount {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #388E3C;
}

.view-all {
    display: flex;
    margin-top: 33px;
}

@media (max-width: 767px) {
    .home-slider-title {
        display: flex;
        gap: 5px;
    }

    .view-all-button {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .book-slider {
        gap: 40px;
    }

    .view-all-button {
        font-size: 14px;
        padding: 5px 10px;
        margin-left: 10px;
        border-radius: 5px;
        text-decoration: none;
        display: inline-block;
    }
}

@media (min-width: 768px) {
    .home-slider-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        padding: 20px 0px 20px 30px;
        box-sizing: border-box;
        background-color: #fff;
        background: #FFFFFF;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .home-slider-title {
        text-align: left;
        flex: 0 0 150px;
    }
}

.social-box {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 13px;
    border: 1px solid #E1FFE8;
    margin: 10px 0;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.social-link i {
    font-size: 24px;
}

.social-link span {
    font-size: 16px;
    font-weight: 500;
}

.social-icon {
    font-size: 46px;
    color: #00C53D;
}

.text-container {
    display: flex;
    flex-direction: column;
}

.follow-text {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-in-focus-img {
    max-width: 210px;
    border-top-left-radius: 10px !important
}

.author-in-focus-title {
    padding: 25px 0px;
    border-bottom-left-radius: 10px;
}

@media (max-width: 767px) {
    .author-in-focus-img {
        max-width: 100%;
        width: 100%;
        border-radius: 10px 10px 0px 0px;
    }

    .author-in-focus-title {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .social-link span {
        display: none;
    }
}

.wp-chat-icon {
    z-index: 1100;
}

.slider-prev.slick-disabled,
.slider-next.slick-disabled  {
    display: none !important;
}

.special-offer-mobile {
    text-align: center;
}

@media (max-width:600px) {
    .slider-prev,
    .slider-next {
        display: none !important;
    }
    .home-slider-wrapper .slick-list.draggable{
        padding: 0 50px 0 0 !important;
    }
}
