    /*
    Theme Name: Kadence Child
    Theme URI: http://example.com/your-child-theme-uri/
    Description: Kadence Child Theme
    Author: Kayan
    Author URI: http://example.com/your-author-uri/
    Template: kadence
    Version: 1.0.2
    */
    
    /* Books Wisdom Theme - Modern Design */

/* Books CSS ------------------------------------------------ */
.books-wisdom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero Section */
.books-hero {
    position: relative;
    text-align: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: -40px -20px 60px;
    color: white;
    overflow: hidden;
}

.books-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="300" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.wisdom-icon {
    display: inline-block;
    font-size: 0.8em;
    margin-right: 15px;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-ornament {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    opacity: 0.1;
}

.ornament-circle {
    width: 200px;
    height: 200px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

.ornament-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.ornament-rays::before,
.ornament-rays::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 80px;
    background: white;
    transform-origin: bottom;
}

.ornament-rays::before {
    transform: translate(-50%, -100%) rotate(45deg);
}

.ornament-rays::after {
    transform: translate(-50%, -100%) rotate(-45deg);
}

/* Filter Section */
.books-filter-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-select,
.filter-input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#search-filter{
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#search-filter:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.filter-select:focus,
.filter-input, #search-filter.filter-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.clear-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.clear-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Books Grid */
.books-grid-container {
    position: relative;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.book-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.book-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.book-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.book-card:hover .book-cover {
    transform: scale(1.05);
}

.book-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.book-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.book-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.book-card:hover .book-overlay {
    opacity: 1;
}

.book-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-icon {
    font-size: 1.1em;
}

.book-info {
    padding: 25px;
}

.book-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.book-author {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.book-excerpt {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.book-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* No Results */
.no-books,
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #718096;
}

.no-books-icon,
.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-books h3,
.no-results h3 {
    font-size: 1.8rem;
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-books p,
.no-results p {
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.book-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .books-hero {
        padding: 60px 0 40px;
        margin: -20px -20px 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .books-filter-section {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .filter-controls {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .book-info {
        padding: 20px;
    }
    
    .hero-ornament {
        display: none;
    }
}

@media (max-width: 480px) {
    .books-wisdom-container {
        padding: 0 15px;
    }
    
    .books-hero {
        margin: -20px -15px 30px;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
}

/* Filter Fade Effect */
.book-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.book-card.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

@keyframes ripple {
        to {
            transform: scale(2);
            opacity: 0;
        }
    }
    
    .search-highlight {
        background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
        padding: 2px 4px;
        border-radius: 4px;
        font-weight: 600;
        color: #856404;
    }
    
    .filter-group {
        transition: transform 0.3s ease;
    }
    
    .book-card {
        will-change: transform, opacity;
    }
    
    .books-grid {
        transition: opacity 0.3s ease;
    }
    
    /* Improved mobile responsiveness for filters */
    @media (max-width: 640px) {
        .filter-controls {
            grid-template-columns: 1fr;
        }
        
        .filter-group {
            margin-bottom: 10px;
        }
        
        .clear-btn {
            margin-top: 10px;
            width: 100%;
        }
    }
/* Books CSS ------------------------------------------------ END */
/* Header CSS ------------------------------------------------ */
.transparent-header #wrapper #masthead, .kadence-sticky-header {
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 0 0 20px 20px;
}

.drawer-inner .lms-user-dropdown{
	position: relative;
	opacity: 1;
	visibility: visible;
}

.drawer-inner .lms-user-trigger{
	display: none;
}
/* Header CSS ------------------------------------------------ END */
/* Classes CSS ------------------------------------------------ */
.direction-rtl {
	direction: rtl;
}
.no-gap {
	gap: 0;
}