/*
 Theme Name:   Booklovers Child Theme
 Theme URI:    http://booklovers.ancorathemes.com
 Description:  Booklovers Child Theme
 Author:       AncoraThemes
 Author URI:   http://ancorathemes.com
 Template:     booklovers
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  booklovers
*/


/* =Theme customization starts here
------------------------------------------------------------ */
.top-bar-left-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

/* Gradient text */
.top-bar-left-text {
    background: linear-gradient(45deg, #fc20af, #fc7347, #fac11a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Icon gradient */
.top-bar-left-text i {
    font-size: 16px;
    background: linear-gradient(45deg, #4fc3ef, #ff6a00, #fb23ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle pulse (glow only, no background box) */
.top-bar-left-text::after {
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    top: -2px;
    bottom: -2px;
    border-radius: 20px;
    box-shadow: 0 0 0 rgba(255, 106, 0, 0.5);
    animation: pulseGlow 1.8s infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 8px 4px rgba(255, 106, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
    }
}

.wishlist-wrapper {
    position: relative;
    display: inline-block;
    font-size: 20px;
}

.wishlist-wrapper i {
    color: black;
}

/* Badge */
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff9121;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    line-height: 1;
}

.sc_layouts_row_type_narrow .sc_layouts_item_details_line2, [class*="scheme_"].sc_layouts_row_type_narrow .sc_layouts_item_details_line2 {
    color: #ff19b7;
}

.top-bar-phone-number .sc_layouts_item_details_line2{
	font-size:15px !important; 
	font-weight:500 !important;
	color:black !important;
}

.menu_hover_zoom_line .sc_layouts_menu_nav > li.current-menu-item > a, .menu_hover_zoom_line .sc_layouts_menu_nav > li.current-menu-parent > a, .menu_hover_zoom_line .sc_layouts_menu_nav > li.current-menu-ancestor > a {
    color: #fd4d77 !important;
}

.menu_hover_zoom_line .sc_layouts_menu_nav > li:not(.menu-collapse) > a:after {
    background-color: #fb22ac;
}

.menu_hover_zoom_line .sc_layouts_menu_nav > li > a:hover, .menu_hover_zoom_line .sc_layouts_menu_nav > li.sfHover > a {
    color: #fd4d77 !important;
}

.sc_layouts_menu_popup .sc_layouts_menu_nav, .sc_layouts_menu_popup .sc_layouts_menu_nav > li > ul, .sc_layouts_menu_nav > li > ul ul, .sc_layouts_menu_nav > li ul:not(.sc_item_filters_tabs) {
    background-color: #de4297;
}

.sc_layouts_menu_popup .sc_layouts_menu_nav > li > a, .sc_layouts_menu_nav > li li > a {
    color: #ffffff !important;
}

.sc_layouts_cart_items_short {
    background-color: #ff9121;
}

.sc_item_filters_tabs li a.active {
    border: none;
    color: #ff9021;
}

.sc_title_accent .sc_item_title.sc_align_center .sc_item_title_text:before{
	display:none;
}

.sc_item_filters.sc_blogger_filters.sc_blogger_tabs.sc_blogger_tabs_ajax.sc_item_filters_align_center.sc_item_filters_no_title.inited {
    display: none;
}

.sc_blogger_item_title.entry-title {
    line-height: 1.4;
/*     min-height: 54px; */
/*     max-height: 54px; */
    overflow: hidden;
	font-size: 19px;
	font-weight:600;
}

.sc_blogger_item_title.entry-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;  
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
}

.sc_blogger_columns_wrap.sc_item_columns.sc_item_posts_container.trx_addons_columns_wrap.columns_padding_bottom.columns_in_single_row {
    margin-top: 15px;
}

.post_featured.with_thumb.post_featured_bg {
    height: 300px;
}

.sc_item_featured,
.post_featured,
.sc_blogger_item_featured {
    position: relative;
    overflow: hidden;
}

.sc_item_featured::after,
.post_featured::after,
.sc_blogger_item_featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 1;
}

.sc_item_featured:hover::after,
.post_featured:hover::after,
.sc_blogger_item_featured:hover::after {
    opacity: 1;
}

.custom-hover-icons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    transition: 0.3s ease;
    flex-direction: column;
}

.sc_item_featured:hover .custom-hover-icons,
.post_featured:hover .custom-hover-icons,
.sc_blogger_item_featured:hover .custom-hover-icons {
    opacity: 1;
    visibility: visible;
}

.custom-hover-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.custom-hover-icons a:hover {
    background: #ff4fa3;
    color: #fff;
    transform: translateY(-2px);
}

.sc_blogger_item {
    border: 1px solid #ffffff12;
    padding: 10px 10px 25px;
    background: #0000000a;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgb(0 0 0 / 6%) 0px 0px 0px 1px;
}

.sc_blogger_item_content .star-rating span:before {
	color: #f9b50d;
}

.sc_blogger_item_price.sc_item_price{
	font-size: 16px;
}

.sc_button:not(.sc_button_simple){
	border-color: #ff1ab5;
    background: #fb22ac;
}

.sc_services_item_subtitle {
    display: none;
}

.sc_services_default .sc_services_item .sc_services_item_button {
    margin: 13px 0px 0px;
}

.sc_button_wrap {
    margin-bottom: 0px;
}

.explore-new-arrivals-btn{
	margin-top:40px;
	margin-bottom:20px;
}

section.elementor-section.elementor-top-section.elementor-element.elementor-element-f83b828.elementor-section-boxed.elementor-section-height-default.elementor-section-height-default.sc_fly_static {
    display: none;
}

.sc_services_default .trx_addons_columns_wrap>div[class*="trx_addons_column-"]:nth-child(3n+1) .sc_services_item .sc_services_item_info {
    background-color: #f4b932;
    position: relative;
}

.sc_services_default .trx_addons_columns_wrap>div[class*="trx_addons_column-"]:nth-child(3n+2) .sc_services_item .sc_services_item_info {
    background-color: #68a4c4;
    position: relative;
}

.sc_services_default .trx_addons_columns_wrap>div[class*="trx_addons_column-"]:nth-child(3n+3) .sc_services_item .sc_services_item_info {
    background-color: #f55e6b;
    position: relative;
}

.sc_services_default .trx_addons_columns_wrap>div[class*="trx_addons_column-"]:nth-child(3n+1) .sc_services_item .sc_services_item_info:before{
	    border-bottom: 23px solid #f4b932;
}

.sc_services_default .trx_addons_columns_wrap>div[class*="trx_addons_column-"]:nth-child(3n+2) .sc_services_item .sc_services_item_info:before{
	border-bottom: 23px solid #68a4c4;
}

.sc_services_default .trx_addons_columns_wrap>div[class*="trx_addons_column-"]:nth-child(3n+3) .sc_services_item .sc_services_item_info:before{
	    border-bottom: 23px solid #f55e6b;
}
.new-arrivals-section{
	background:#59c9f412 !important;
}

span.sc_item_title_text {
    font-size: 45px;
    font-weight: 600;
    color: #000000e3;
}

.sc_layouts_item.elementor-element.elementor-element-f0dd26f.sc_height_huge.animation_type_block.sc_fly_static.elementor-widget.elementor-widget-spacer {
    display: none;
}

.star-rating span {
    color: #f9b50d;
}

.woocommerce span.amount {
    color: #f7585d;
}

    .elementor-17425 .elementor-element.elementor-element-96b6e20 {
        width: 20.999% !important;
    }

    .elementor-17425 .elementor-element.elementor-element-2addef6 {
        width: 15% !important;
    }

    .elementor-17425 .elementor-element.elementor-element-9998c01 {
        width: 35% !important;
    }

.wp-widget-woocommerce_products ul.product_list_widget li + li {
    border-top: none;
    padding-top: 5px;
}

[class*="scheme_"].footer_wrap a, .footer_wrap [class*="scheme_"].vc_row a {
    color: #f75866;
}

.elementor-top-section{
    background-color: #FFFFFF;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.scroll_to_top_style_default{
	    background-color: #68a4c4;
}

span.woocommerce-Price-amount.amount {
    font-size: 18px !important;
}

.widget .product_list_widget li .product-title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word;
    line-height: 1.4;
}
@media screen and (max-width: 575px) {
	   .elementor-17425 .elementor-element.elementor-element-96b6e20 {
        width: 100% !important;
    }

    .elementor-17425 .elementor-element.elementor-element-2addef6 {
        width: 100% !important;
    }

    .elementor-17425 .elementor-element.elementor-element-9998c01 {
        width: 100% !important;
    }
	
	span.sc_item_title_text {
    font-size: 35px;
    line-height: 50px;
    padding-bottom: 0px !important;
}
	
	.elementor-element.elementor-element-dee02f5.animation_type_block.sc_fly_static.elementor-widget.elementor-widget-trx_sc_services {
    margin-top: 30px;
}
	
	.footer-bottom-text p {
    font-size: 19px;
    padding-bottom: 30px;
    margin-top: -20px !important;
}
	
	.menu_mobile .menu_mobile_header_wrap{
		    justify-content: flex-end;
	}
	
	.menu_mobile a.sc_layouts_logo {
    display: none !important;
}
	
	.menu_mobile .socials_mobile{
		            display: none;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.elementor-17425 .elementor-element.elementor-element-96b6e20 {
    width: 24.999% !important;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
	.elementor-17425 .elementor-element.elementor-element-96b6e20 {
    width: 24.999% !important;
}
}