/* ===================================
   Book Page Redesign - Modern Styles
   =================================== */

/* Alert Banner */
.BookNew-alert {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    flex-wrap: wrap;
    gap: 16px;
}

.BookNew-alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
}

.BookNew-alert-content img {
    width: 24px;
    height: 24px;
}

.BookNew-alert-content p {
    color: white;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.BookNew-alert-btn {
    padding: 10px 24px;
    background: white;
    color: #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.BookNew-alert-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #667eea;
}

/* Hero Section */
.BookNew-hero {
    background: white;
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.BookNew-hero-grid {
    display: block;
    position: relative;
}

/* Left Content */
.BookNew-content {
    position: relative;
}

.BookNew-content-inner {
    margin-right: 420px;
}

.BookNew-title {
    font-size: 36px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.BookNew-book-summary-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.BookNew-author {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0 0 24px 0;
}

.BookNew-author a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.BookNew-author a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.BookNew-share-btn {
    padding: 10px 20px;
    background: #f8f9fc;
    border: 2px solid #e0e4ea;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #123048;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.BookNew-share-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.BookNew-stats {
    display: flex;
    gap: 24px;
    margin: 32px 0;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 12px;
    flex-wrap: wrap;
}

.BookNew-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.BookNew-stat-icon {
    width: 20px;
    height: 20px;
    color: #667eea;
}

.BookNew-stat-text {
    font-size: 14px;
    font-weight: 600;
    color: #123048;
}

.BookNew-audio-badge,
.BookNew-video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Action Buttons */
.BookNew-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.BookNew-actions .BookNew-btn {
    margin-right: 12px;
}

.BookNew-btn {
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.BookNew-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.BookNew-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.BookNew-btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.BookNew-btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.BookNew-btn svg {
    width: 18px;
    height: 18px;
}

/* Content Sections */
.BookNew-section {
    margin-bottom: 32px;
}

.BookNew-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.BookNew-section-title svg {
    width: 24px;
    height: 24px;
    color: #667eea;
}

.BookNew-section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
}

.BookNew-section-content p {
    margin-bottom: 16px;
}

/* Categories */
.BookNew-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.BookNew-category-tag {
    padding: 8px 16px;
    background: #f8f9fc;
    border: 2px solid #e0e4ea;
    border-radius: 8px;
    color: #123048;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.BookNew-category-tag:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    text-decoration: none;
}

/* Right Sidebar */
.BookNew-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
}

.BookNew-book-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e4ea;
}

.BookNew-book-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.BookNew-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 8px 0;
}

.BookNew-sidebar-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.BookNew-sidebar-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e4ea;
    margin-bottom: 20px;
}

.BookNew-time-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #123048;
}

.BookNew-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.BookNew-rating svg {
    color: #ffc107;
    width: 16px;
    height: 16px;
}

.BookNew-rating-count {
    color: #999;
}

.BookNew-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.BookNew-trustpilot-container {
    text-align: center;
    margin: 10px auto 20px auto;
}

.BookNew-trustpilot {
    width: 150px;
    height: auto;
    margin: 0 auto;
}

/* Preview/Paywall */
.BookNew-preview {
    margin-top: 48px;
}

.BookNew-preview h3 {
    margin: 10px 0;
}

.BookNew-preview-title {
    font-size: 28px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 24px 0;
}

.BookNew-preview-content {
    font-size: 16px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.BookNew-paywall {
    background: linear-gradient(135deg, #f8f9fc 0%, #e8ebf5 100%);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    border: 3px solid #667eea;
}

.BookNew-paywall-title {
    font-size: 32px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 24px 0;
}

.BookNew-paywall-image {
    max-width: 300px;
    margin: 0 auto 24px;
}

.BookNew-paywall-image img {
    width: 100%;
    height: auto;
}

.BookNew-paywall-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0 0 24px 0;
}

.BookNew-paywall-text {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin: 24px 0;
}

.BookNew-paywall-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.BookNew-paywall-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

/* More Like This Section */
.BookNew-more-like-this {
    margin-top: 64px;
    margin-bottom: 64px;
}

.BookNew-section-header {
    margin-bottom: 32px;
}

.BookNew-section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #123048;
    margin: 0;
}

.BookNew-books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.BookNew-book-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.BookNew-book-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.BookNew-book-item-image {
    width: 100%;
    padding-top: 150%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.BookNew-book-item-content {
    padding: 16px;
}

.BookNew-book-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #123048;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.BookNew-book-item-title a {
    color: #123048;
    text-decoration: none;
    transition: color 0.3s ease;
}

.BookNew-book-item-title a:hover {
    color: #667eea;
}

.BookNew-book-item-author {
    font-size: 13px;
    color: #5a5a5a;
    margin: 0;
}

/* Benefits Section */
.BookNew-benefits {
    background: #f8f9fc;
    padding: 80px 20px;
    margin: 64px 0;
}

.BookNew-benefits-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.BookNew-benefits-title {
    font-size: 42px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 16px 0;
}

.BookNew-benefits-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.6;
}

.BookNew-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.BookNew-benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.BookNew-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.BookNew-benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.BookNew-benefit-icon img {
    width: 100%;
    height: 100%;
}

.BookNew-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 12px 0;
}

.BookNew-benefit-text {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.BookNew-testimonials {
    background: white;
    padding: 80px 20px;
}

.BookNew-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.BookNew-testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 16px 0;
}

.BookNew-testimonials-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0;
}

.BookNew-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.BookNew-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #e0e4ea;
}

.BookNew-testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 12px 0;
}

.BookNew-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.BookNew-testimonial-stars svg {
    width: 18px;
    height: 18px;
}

.BookNew-testimonial-text {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}

/* Ratings Section */
.BookNew-ratings {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.BookNew-rating-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.BookNew-rating-score {
    font-size: 56px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 8px;
}

.BookNew-rating-outof {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 8px;
}

.BookNew-rating-count {
    font-size: 14px;
    color: #999;
}

.BookNew-rating-image-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.BookNew-rating-image-card img {
    max-width: 100%;
    height: auto;
}

/* CTA Section */
.BookNew-cta {
    text-align: center;
    margin: 48px 0;
}

/* Featured Section */
.BookNew-featured {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.BookNew-featured-title {
    font-size: 18px;
    font-weight: 600;
    color: #5a5a5a;
    margin: 0 0 32px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.BookNew-featured-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.BookNew-featured-logos img {
    max-width: 140px;
    height: 50px;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.BookNew-featured-logos img:hover {
    opacity: 1;
}

/* Book Links Section */
.BookNew-book-links {
    background: #f8f9fc;
    padding: 80px 20px;
}

.BookNew-book-links-title {
    font-size: 32px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 12px 0;
    text-align: center;
}

.BookNew-book-links-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0 0 48px 0;
    text-align: center;
}

.BookNew-book-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.BookNew-book-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.BookNew-book-links-column a {
    color: #123048;
    text-decoration: none;
    font-size: 15px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.BookNew-book-links-column a:hover {
    background: #667eea;
    color: white;
    transform: translateX(4px);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .BookNew-content-inner {
        margin-right: 0;
    }

    .BookNew-sidebar {
        position: static;
        width: 100%;
        margin-top: 32px;
    }

    .BookNew-ratings {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .BookNew-hero {
        padding: 32px 24px;
    }

    .BookNew-title {
        font-size: 28px;
    }

    .BookNew-benefits-title,
    .BookNew-testimonials-title {
        font-size: 32px;
    }

    .BookNew-books-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

    .BookNew-paywall {
        padding: 32px 24px;
    }

    .BookNew-paywall-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .BookNew-alert {
        flex-direction: column;
        align-items: flex-start;
    }

    .BookNew-stats {
        flex-direction: column;
        gap: 12px;
    }

    .BookNew-actions {
        flex-direction: column;
    }

    .BookNew-btn {
        width: 100%;
        justify-content: center;
    }

    .BookNew-books-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
