/* ******************************************************************   Ebook - Product page */
    /* Product Section */
    .product-section {
        padding: 10rem 2rem 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-container {
        display: flex;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .product-image {
        flex: 1;
        max-width: 40%;
    }

    .product-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(23, 239, 151, 0.15);
        transition: transform 0.3s ease;
    }

    .product-image img:hover {
        transform: scale(1.02);
    }

    .product-details {
        flex: 1.5;
    }

    .breadcrumb {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: #999;
    }

    .breadcrumb a {
        color: #999;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
        color: #17ef97;
    }

    .product-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .product-author {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: #ccc;
    }

    .product-author span {
        color: #17ef97;
    }

    .rating {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
    }

    .stars {
        color: #FFD700;
        font-size: 1.2rem;
    }

    .rating-count {
        color: #999;
        font-size: 0.9rem;
    }

    .product-meta {
        display: flex;
        gap: 2rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .meta-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 0.7rem 1.2rem;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .meta-item .label {
        color: #999;
        font-size: 0.9rem;
    }

    .meta-item .value {
        font-weight: 600;
    }

    .product-description {
        margin-bottom: 2rem;
        color: #e0e0e0;
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .price-container {
        margin-bottom: 2rem;
    }

    .price {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #17ef97;
    }

    .price-note {
        font-size: 0.9rem;
        color: #999;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .cta-btn {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: #17ef97;
        color: #000;
        text-decoration: none;
        border-radius: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
    }

    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(23, 239, 151, 0.3);
    }

    .cta-btn.primary {
        background: #17ef97;
    }

    .cta-btn.secondary {
        background: linear-gradient(45deg, #17ef97, #00a8ff);
    }

    .bundle-offer {
        background: rgba(23, 239, 151, 0.05);
        border: 1px solid rgba(23, 239, 151, 0.2);
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .bundle-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #fff;
    }

    .bundle-desc {
        color: #e0e0e0;
        margin-bottom: 1.5rem;
    }

    .bundle-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: #17ef97;
        margin-bottom: 1rem;
    }

    .bundle-save {
        display: inline-block;
        background: rgba(23, 239, 151, 0.2);
        color: #17ef97;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-left: 1rem;
    }

    .features-list {
        list-style: none;
        margin-bottom: 2rem;
    }

    .features-list li {
        margin-bottom: 0.7rem;
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }

    .features-list li::before {
        content: "✓";
        color: #17ef97;
        font-weight: bold;
    }

    .divider {
        height: 1px;
        background: #333;
        margin: 3rem 0;
    }

    /* Related Products */
    .related-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 2rem;
        text-align: center;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .ebook-card {
        background: #111;
        color: #fff;
        padding: 1.5rem;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .ebook-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(23, 239, 151, 0.1);
    }

    .ebook-cover {
        height: 340px;
        border-radius: 10px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .ebook-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .ebook-card:hover .ebook-cover img {
        transform: scale(1.05);
    }

    .ebook-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 4.2em; /* Allow more height */
    overflow: visible; /* Don't cut off overflow text */
    display: block; /* Remove webkit box display */
}

    .ebook-card p {
        color: #17ef97;
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .ebook-card .cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {

        .product-container {
            flex-direction: column;
        }

        .product-image {
            max-width: 100%;
        }

        .related-grid {
            grid-template-columns: 1fr;
        }

        .ebook-cover {
        height: 435px;
    }
    }
    