/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* Header Style */
header.main-navigation {
	position: sticky;
	top: 0;
	z-index: 1;
}

@media screen and (min-width: 600px) {
	body.logged-in.admin-bar header.main-navigation {
		top: 46px;
	}
}


@media screen and (min-width: 782px) {
	body.logged-in.admin-bar header.main-navigation {
		top: 32px;
	}
}


/* Search Filter Style */
.search-filter-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
	justify-content:space-between;
}
.search-filter-wrapper.active_filters{
	padding-right:50px;
}

/* Categories Dropdown */
.filter-categories {
    position: relative;
}

.categories-dropdown {
    position: relative;
}

.categories-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: space-between;
}

.categories-btn:hover,
.categories-btn.active {
    background: #e9ecef;
    border-color: #adb5bd;
}

.categories-arrow {
    transition: transform 0.3s ease;
}

.categories-btn.active .categories-arrow {
    transform: rotate(180deg);
}

.categories-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.categories-menu.show {
    display: block;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: #f8f9fa;
}

.category-item input[type="radio"] {
    margin: 0;
    accent-color: #007cba;
}

.category-item span {
    font-size: 14px;
    color: #495057;
}

/* Search Input */
.filter-search {
    flex: 1;
    max-width: 376px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper:before {
    content: "";
    background-image: url(https://luxenew.wordifysites.com/wp-content/uploads/2025/10/search.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 14px;
    width: 20px;
    height: 20px;
    z-index: 999;
    transform: translate(0%, -50%);
    top: 50%;
}

.search-input {
    width: 100% !important;
	padding-left: 54px !important;
}

.search-input:focus {
    outline: none;
    border-color: #007cba;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.search-btn:hover {
    color: #007cba;
    background: rgba(0, 124, 186, 0.1);
}

/* Loading Spinner */
.filter-loading {
    text-align: center;
	display:flex;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.text-with-slider-section .swiper-pagination {
    position: absolute;
    bottom: -42px !important;
    text-align: right;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
	.search-filter-wrapper.active_filters{
		padding-right:0px;
	}
    
    .filter-search {
        max-width: none !important;
    }
    
    .categories-btn {
        width: 100% !important;
    }
}

.search-filter-container .search-filter-wrapper button.categories-btn,
.search-filter-container .search-filter-wrapper .filter-search input.search-input {
	position: relative;
    width: 376px;
    font-size: 17px;
    font-weight: 400;
    color: #555;
    padding: 12px 20px 12px 30px;
    border-radius: 0;
    line-height: 30px;
    background: #fff;
    text-transform: capitalize;
    font-family: 'Lato';
	letter-spacing:0px;
}

.search-filter-container .search-filter-wrapper .filter-search input::placeholder {
	color: #555;
}

/* Reset Filter Button Styles */
.search-filter-container .filter-reset {
    position: absolute;
    right:0px;
}

.search-filter-container .reset-filter-btn {
    background: transparent;
    border: 1px solid var(--e-global-color-text); 
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--e-global-color-text);
    padding:10px;
    display: flex;
    align-items: center;
    min-width: 32px;
    height: 32px;
    border-radius: 0px;
}

.search-filter-container .reset-filter-btn:hover {
    background:var(--e-global-color-text);
    color: var(--e-global-color-secondary);
}

.search-filter-container .reset-filter-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .search-filter-container .filter-reset {
		position:static;
		display:none;
    }
	
	.search-filter-container .filter-reset.has-active-filters{
		display:block;
	}
	.search-filter-container .filter-reset button::before{
		content:"Reset";
		margin-right:10px;
	}
    
    .search-filter-container .reset-filter-btn {
        min-width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .search-filter-container .reset-filter-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Show reset button only when there are active filters */
.search-filter-container .filter-reset {
    opacity: 0;
    visibility: hidden;
}

.search-filter-container .filter-reset.has-active-filters {
    opacity: 1;
    visibility: visible;
}

/*breadcrumb*/
.podcast-breadcrumb {
    font-size: 12px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: var(--e-global-color-secondary);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    line-height: 15px;
}
.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
	justify-content: center;
}
.breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--e-global-color-secondary);
}
.breadcrumb-item a {
    color: var(--e-global-color-secondary);
    text-decoration: none;
}
.breadcrumb-item a:hover {
    color: var(--e-global-color-accent);
}
.elementor-pagination span.prev, .elementor-pagination span.next{
	display:none;
}

.boxed-bg .description p {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
	.backtopodcastbtn{
		position:static !important;
	}
}

@media screen and (min-width: 1024px) {
	.boxed-bg .img-gallery {
		position: absolute;
	}
}