.wpbingo-newsletter.newsletter-default .content-newsletter input[type="email"] {
    width: 65%;
    border: 0;
    padding: 0 20px;
    height: 48px;
    line-height: 48px;
    font-size: 13px;
    background: #f0f0f0;
    color: #767a79;
}

.bwp-header .wpbingoLogo img {
    max-height: 100px;
}

.bwp-top-bar .bookio-woocommerce-sort-count .pwb-dropdown-toggle {
    padding: 0 10px 0 70px;
}

body.loading:before,
body.loading:after,
.loading:before,
.loading:after {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

body.loading {
    overflow: visible !important;
}

.sl-home-hero {
    padding: 48px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
    border-radius: 20px;
    margin: 20px 0 32px;
}

.sl-home-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.sl-home-hero h1 {
    font-size: 2.3rem;
    line-height: 1.1;
    margin: 0 0 12px;
    color: #1f1f1f;
}

.sl-home-hero p {
    font-size: 1rem;
    color: #5f5f5f;
    margin: 0 0 22px;
}

.sl-home-search-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.sl-home-search-form input[type="text"] {
    width: min(680px, 100%);
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
}

.sl-home-search-form button {
    padding: 16px 22px;
    border: 0;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.sl-section {
    margin: 36px 0;
}

.sl-section-head {
    margin-bottom: 18px;
}

.sl-section-head h2 {
    font-size: 1.6rem;
    margin: 0 0 8px;
    color: #1f1f1f;
}

.sl-section-head p {
    margin: 0;
    color: #666;
}

.sl-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.sl-category-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sl-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.sl-category-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f7f7;
}

.sl-category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sl-category-name {
    display: block;
    padding: 14px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

.sl-book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.sl-book-card {
    position: relative;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sl-book-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.sl-book-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #fff2d8;
    color: #7a4b00;
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
}

.sl-book-image-wrap {
    display: block;
    background: #fafafa;
    padding: 16px;
}

.sl-book-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.sl-book-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.sl-book-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1b1b1b;
    text-decoration: none;
}

.sl-book-copy {
    font-size: .92rem;
    color: #666;
    line-height: 1.45;
    min-height: 40px;
}

.sl-book-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
}

.sl-book-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
}

.sl-btn-primary {
    background: #111;
    color: #fff;
}

.sl-btn-secondary {
    background: #f2f2f2;
    color: #111;
}

.sl-guide-section {
    background: #fcfbf8;
    border: 1px solid #eee9df;
    padding: 24px;
    border-radius: 20px;
}

.sl-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.sl-guide-card {
    display: block;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ececec;
    color: #222;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}

.sl-guide-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

@media (max-width: 767px) {
    .sl-home-hero {
        padding: 32px 16px;
    }

    .sl-home-hero h1 {
        font-size: 1.8rem;
    }

    .sl-section-head h2 {
        font-size: 1.35rem;
    }

    .sl-book-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sl-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.sl-blog-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    overflow: hidden;
    transition: all .2s ease;
}

.sl-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.sl-blog-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.sl-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-blog-content {
    padding: 14px;
}

.sl-blog-content h3 {
    font-size: 1rem;
    margin: 0 0 8px;
    color: #1b1b1b;
}

.sl-blog-content p {
    font-size: .9rem;
    color: #666;
}

.sl-pill{
	box-shadow:0 6px 20px rgba(0,0,0,0.15);
}