/* ===========================================
   NOUVEAU DESIGN EBOOKS - MODERNE & SPIRITUEL
   =========================================== */

/* ===========================================
   HERO SECTION - DESIGN PREMIUM
   =========================================== */
.ebooks-hero {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 20%, rgba(253, 203, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 119, 98, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #01100D 0%, #02241D 30%, #0E7762 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Espace pour la navbar fixe */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 203, 90, 0.15);
    color: #FDCB5A;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(253, 203, 90, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(253, 203, 90, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: 'Cardo', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0E7762;
    font-family: 'Cardo', serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    color: #01100D;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(253, 203, 90, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(253, 203, 90, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.btn-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* ===========================================
   FEATURED PRODUCT - DESIGN INNOVANT
   =========================================== */
.featured-product {
    padding: 80px 0 60px 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    color: #01100D;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Cardo', serif;
    font-size: 3rem;
    color: #01100D;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.book-cover:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

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

.book-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(253, 203, 90, 0.3) 0%, rgba(14, 119, 98, 0.3) 100%);
    border-radius: 30px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.5;
}

.book-pages {
    position: absolute;
    top: 0;
    left: -5px;
    width: 10px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 5px 0 0 5px;
}


.product-info {
    padding: 20px 0;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category {
    background: rgba(14, 119, 98, 0.1);
    color: #0E7762;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(14, 119, 98, 0.2);
}

.format {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-title {
    font-family: 'Cardo', serif;
    color: #01100D;
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.product-subtitle {
    color: #0E7762;
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
}

.product-description p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.product-features h4 {
    font-family: 'Cardo', serif;
    color: #01100D;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(14, 119, 98, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(14, 119, 98, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(14, 119, 98, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 203, 90, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content h5 {
    color: #01100D;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.product-pricing {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(14, 119, 98, 0.05) 0%, rgba(253, 203, 90, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(14, 119, 98, 0.1);
    text-align: center;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-currency {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

.price-amount {
    color: #0E7762;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-note,
.price-guarantee {
    color: #0E7762;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-actions {
    text-align: center;
}

.action-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===========================================
   EBOOKS COLLECTION - DESIGN MODERNE
   =========================================== */
.ebooks-collection {
    padding: 60px 0 80px 0;
    background: #f8f9fa;
    position: relative;
}

.collection-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #666;
    border: 2px solid rgba(14, 119, 98, 0.2);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0E7762;
    color: #ffffff;
    border-color: #0E7762;
    transform: translateY(-2px);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.ebook-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 119, 98, 0.1);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.ebook-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 119, 98, 0.2);
}

.ebook-cover {
    position: relative;
    height: 350px;
    width: 350px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
}

.ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ebook-card:hover .ebook-cover img {
    transform: scale(1.1);
}

.ebook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.quick-view {
    background: #ffffff;
    color: #01100D;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view:hover {
    background: #FDCB5A;
    transform: scale(1.05);
}

.ebook-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    color: #01100D;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(253, 203, 90, 0.3);
}

.ebook-content {
    padding: 30px;
}

.ebook-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ebook-meta .category {
    background: rgba(14, 119, 98, 0.1);
    color: #0E7762;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(14, 119, 98, 0.2);
}

.ebook-meta .pages {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.ebook-title {
    font-family: 'Cardo', serif;
    color: #0E7762 !important;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
}

.ebook-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ebook-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.stars {
    color: #FDCB5A;
    font-size: 1rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.ebook-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ebook-price {
    color: #0E7762;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
}

.add-to-cart {
    background: linear-gradient(135deg, #0E7762 0%, #02241D 100%);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 119, 98, 0.3);
}

/* ===========================================
   NOUVEAU DESIGN CARTES - STYLE PROMOTIONNEL
   =========================================== */

/* Section Promotion */
.promo-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.promo-section::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.logo {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
}

.discount-badge {
    background: #000000;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.promo-title .highlight {
    color: #4a9eff;
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.promo-features {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.check-icon {
    background: #27ae60;
    color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-info {
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.access-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.promo-benefits {
    margin-bottom: 20px;
}

.promo-benefits h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.promo-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promo-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 5px;
    padding-left: 0;
}

.promo-footer {
    text-align: center;
}

.auto-access {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Section Produit */
.product-section {
    padding: 25px;
    background: #ffffff;
}

.product-title {
    color: #01100D;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Cardo', serif;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.rating-icon {
    font-size: 1rem;
    opacity: 0.6;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.old-price {
    color: #999;
    font-size: 1rem;
    text-decoration: line-through;
}

.new-price {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cardo', serif;
}

.buy-button {
    background: linear-gradient(135deg, #0E7762 0%, #02241D 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
}

.buy-button:hover {
    background: linear-gradient(135deg, #0a5d4f 0%, #011a15 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 119, 98, 0.3);
}

/* Section Image */
.image-section {
    padding: 20px;
    background: #f8f9fa;
    text-align: center;
}

.image-section .ebook-cover {
    position: relative;
    height: 300px;
    width: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-section .ebook-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-section .ebook-card:hover .ebook-cover img {
    transform: scale(1.05);
}

.image-section .ebook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-section .ebook-card:hover .ebook-overlay {
    opacity: 1;
}

.image-section .quick-view {
    background: #ffffff;
    color: #01100D;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-section .quick-view:hover {
    background: #FDCB5A;
    transform: scale(1.05);
}

.image-section .ebook-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    color: #01100D;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(253, 203, 90, 0.3);
}



/* ===========================================
   VALUE PROPOSITION - DESIGN PREMIUM
   =========================================== */
.value-proposition {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    border: 1px solid rgba(14, 119, 98, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 203, 90, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(14, 119, 98, 0.2);
}

.value-icon {
    margin-bottom: 25px;
}

.icon-bg {
    background: linear-gradient(135deg, rgba(14, 119, 98, 0.1) 0%, rgba(253, 203, 90, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    border: 2px solid rgba(14, 119, 98, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(14, 119, 98, 0.2);
    border-color: rgba(14, 119, 98, 0.3);
}

.value-card h3 {
    font-family: 'Cardo', serif;
    color: #01100D;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}

.value-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    color: #01100D;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* ===========================================
   FINAL CTA - DESIGN SPECTACULAIRE
   =========================================== */
.final-cta {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(253, 203, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 119, 98, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #01100D 0%, #02241D 30%, #0E7762 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FDCB5A;
    border-radius: 50%;
    opacity: 0.6;
    animation: sparkle 8s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 70%;
    right: 10%;
    animation-delay: 8s;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(253, 203, 90, 0.15);
    color: #FDCB5A;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(253, 203, 90, 0.3);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-family: 'Cardo', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 50px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0E7762;
    font-family: 'Cardo', serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes sparkle {
    0% {
        transform: translateY(0px) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) scale(1);
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* ===========================================
   MODAL APERÇU - DESIGN MODERNE
   =========================================== */
.preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.preview-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.preview-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease;
}

.preview-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.preview-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.preview-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-info {
    padding: 30px;
}

.preview-info h3 {
    color: #01100D;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Cardo', serif;
}

.preview-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.preview-actions {
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 768px) {
    .ebooks-hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 30px;
        margin: 30px 0 40px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .book-cover {
        width: 250px;
        height: 350px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-stats {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .ebooks-hero {
        min-height: 80vh;
        padding-top: 70px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin: 20px 0 30px 0;
    }
    
    .book-cover {
        width: 200px;
        height: 300px;
    }
    
    .product-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .collection-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}