* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header-buy {
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-header-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

@media (max-width: 768px) {
    .main-header {
        position: relative;
        padding: 8px 0;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0 15px;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo-text {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-cta {
        flex-shrink: 0;
    }
    
    .btn-header-buy {
        padding: 8px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

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

.hero-background-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.food-image {
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.food-image-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.food-image-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.food-image-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.food-image-4 {
    top: 30%;
    right: 5%;
    animation-delay: 1s;
}

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-image-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.recipe-preview-image {
    text-align: center;
    transition: transform 0.3s;
}

.recipe-preview-image:hover {
    transform: translateY(-5px);
}

.image-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.recipe-preview-image span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    opacity: 0.95;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subheadline {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.benefits-list {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.benefit-item {
    font-size: 1.1rem;
    padding: 10px 0;
    border-left: 4px solid #fff;
    padding-left: 15px;
}

/* 3D Ebook Preview */
.ebook-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    animation: fadeInRight 1s ease-out;
}

.ebook-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.ebook-3d {
    position: relative;
    width: 100%;
    height: 600px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.cover-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    color: white;
    backface-visibility: hidden;
    transform: rotateY(0deg);
    position: relative;
    overflow: hidden;
}

.cover-front::before {
    content: '🍳 🥗 🍽️ 🥑 🍎';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: foodRotate 10s linear infinite;
}

@keyframes foodRotate {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.cover-front h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cover-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cover-decoration {
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    margin-top: 20px;
}

.book-pages {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 40px;
    overflow-y: auto;
    backface-visibility: hidden;
    transform-origin: left center;
    transform: rotateY(0deg);
    transition: transform 0.6s;
    color: #333;
}

.page.flipped {
    transform: rotateY(-180deg);
}

.page-content {
    height: 100%;
    position: relative;
}

.ebook-page-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    display: block;
}

.page-fallback {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.page-fallback h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-fallback p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Page 7 Overlay Button */
.page-7-content {
    position: relative;
}

.overlay-button-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.overlay-btn-get-full {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid white;
}

.overlay-btn-get-full:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.overlay-btn-get-full:active {
    transform: translateY(-1px) scale(1.02);
}

.page-content h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.page-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.toc-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Cover Page Styles */
.page-cover {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #faf9f6;
}

.cover-decorative-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
    max-width: 300px;
}

.cover-decorative-line .line {
    flex: 1;
    height: 2px;
    background: #8b7355;
}

.cover-decorative-line .diamond {
    color: #28a745;
    font-size: 1.2rem;
}

.cover-subtitle-top {
    color: #8b7355;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0;
    font-weight: 600;
}

.cover-title-main {
    font-size: 2.5rem;
    color: #5c4033;
    font-weight: 700;
    margin: 5px 0;
    font-family: 'Georgia', serif;
}

.cover-title-italic {
    font-size: 2.5rem;
    color: #6b8e23;
    font-style: italic;
    margin: 5px 0;
    font-family: 'Georgia', serif;
}

.cover-line {
    width: 150px;
    height: 2px;
    background: #8b7355;
    margin: 15px auto;
}

.cover-badge {
    background: #d4edda;
    color: #155724;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px 0;
    display: inline-block;
}

.cover-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 500px;
    margin: 20px auto;
}

.cover-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.category-btn {
    background: #f5f5dc;
    color: #5c4033;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cover-footer {
    color: #999;
    font-size: 0.85rem;
    margin-top: 30px;
}

/* Table of Contents Styles */
.toc-header {
    text-align: center;
    margin-bottom: 30px;
}

.toc-title {
    font-size: 2rem;
    color: #5c4033;
    font-weight: 700;
    margin: 15px 0 5px;
    font-family: 'Georgia', serif;
}

.toc-title-continued {
    font-size: 1.8rem;
    color: #5c4033;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
}

.toc-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.toc-section {
    margin-bottom: 30px;
}

.toc-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.toc-icon {
    font-size: 1.5rem;
}

.toc-category-header h3 {
    color: #28a745;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    border: none;
    padding: 0;
}

.recipe-count {
    color: #999;
    font-weight: 400;
    font-size: 1rem;
}

.toc-recipe-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-recipe-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #ddd;
    margin: 0;
}

.recipe-name {
    color: #333;
    flex: 1;
}

.recipe-cal {
    color: #666;
    font-weight: 600;
}

.toc-divider {
    height: 2px;
    background: #ddd;
    margin: 25px 0;
    border-top: 1px dotted #ccc;
}

.toc-disclaimer {
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid #28a745;
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
}

/* Recipe Page Styles */
.recipe-page {
    padding: 30px;
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.recipe-badge {
    background: #28a745;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.recipe-number {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.recipe-title {
    font-size: 1.8rem;
    color: #5c4033;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    border: none;
    padding: 0;
}

.recipe-image-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.recipe-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: block;
    width: 100%;
    object-fit: cover;
}

.recipe-image-placeholder {
    font-size: 5rem;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    display: inline-block;
}

.recipe-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.stat-box {
    background: #f5f5dc;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #5c4033;
}

.stat-icon {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.recipe-layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.recipe-stats-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nutrition-box {
    background: #d4edda;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.nutrition-box h4 {
    color: #155724;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nutrition-box h4::before {
    content: '🌿';
    font-size: 1.2rem;
}

.nutrition-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.nutrition-item {
    background: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    color: #155724;
    font-size: 1.1rem;
}

.nutrition-item span {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    margin-top: 3px;
}

.recipe-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 25px 0;
}

.ingredients-section h3,
.instructions-section h3 {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: none;
    padding: 0;
    font-family: 'Georgia', serif;
}

.ingredients-section ul,
.instructions-section ol {
    margin: 0;
    padding-left: 20px;
}

.ingredients-section li,
.instructions-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #333;
}

.chef-tip {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    color: #856404;
    font-size: 0.9rem;
}

.recipe-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #999;
}

.recipe-image-preview {
    text-align: center;
    font-size: 4rem;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px solid #dee2e6;
}

.recipe-sample {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.recipe-sample strong {
    color: #667eea;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.why-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.why-item {
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 5px;
}

.cta-preview {
    margin-top: 30px;
    text-align: center;
}

.btn-buy {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

/* Ebook Controls */
.ebook-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-prev, .btn-next {
    padding: 12px 25px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-prev:hover, .btn-next:hover {
    background: white;
    color: #667eea;
    transform: scale(1.05);
}

.btn-prev:disabled, .btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-indicator {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.preview-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.preview-note span {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-get-full {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-get-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #764ba2;
}

/* Main Content */
.main-content {
    background: white;
    padding: 80px 20px;
}

.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-box:hover {
    transform: scale(1.05);
}

.benefit-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-box p {
    opacity: 0.95;
    line-height: 1.8;
}

/* Author Bio Section */
.author-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.author-bio-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.author-image-container {
    text-align: center;
}

.author-image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.author-initials {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.author-content {
    padding-left: 20px;
}

.author-name {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.author-story {
    margin: 0;
}

.author-story p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

.author-closing {
    font-style: italic;
    color: #667eea !important;
    font-weight: 600;
    margin-top: 25px !important;
}

.author-name-simple {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 0 !important;
    font-family: 'Georgia', serif;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateX(5px);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
    font-style: normal !important;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    border-radius: 20px;
    margin: 60px 0;
}

.pricing-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
}

.price-tag {
    margin-bottom: 40px;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
    color: #667eea;
    font-weight: 600;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.period {
    display: block;
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 40px;
}

.pricing-feature {
    padding: 15px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.pricing-feature:last-child {
    border-bottom: none;
}

/* JVZoo Buy Button */
.jvzoo-button-container {
    text-align: center;
    margin-bottom: 20px;
}

.jvzoo-buy-button {
    max-width: 100%;
    height: auto;
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 10px;
}

.jvzoo-buy-button:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.btn-cta {
    display: block;
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    margin-bottom: 20px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.guarantee {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #667eea;
}

.faq-item h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
}

.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* JVZoo Buy Button Large */
.jvzoo-button-container-large {
    text-align: center;
    margin-bottom: 30px;
}

.jvzoo-buy-button-large {
    max-width: 100%;
    height: auto;
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 10px;
}

.jvzoo-buy-button-large:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 25px 60px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.guarantee-large {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Disclaimer Section */
.disclaimer-section {
    background: #f8f9fa;
    padding: 50px 20px;
    border-top: 3px solid #667eea;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.disclaimer-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: justify;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .ebook-3d {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .ebook-3d {
        height: 350px;
        max-width: 100%;
    }
    
    .ebook-wrapper {
        max-width: 100%;
    }
    
    .page {
        padding: 20px;
        font-size: 0.9rem;
    }
    
    .hero-image-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .image-placeholder {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .recipe-preview-image span {
        font-size: 0.75rem;
    }
    
    .food-image {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 40px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .author-bio-container {
        grid-template-columns: 1fr;
        padding: 25px 15px;
        gap: 25px;
    }
    
    .author-image-container {
        order: -1;
    }
    
    .author-content {
        padding-left: 0;
    }
    
    .author-name {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .author-story p {
        text-align: left;
        font-size: 1rem;
    }
    
    .recipe-layout-split {
        grid-template-columns: 1fr;
    }
    
    .recipe-content-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .stat-box {
        font-size: 0.75rem;
        padding: 10px;
    }
    
    .nutrition-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cover-title-main,
    .cover-title-italic {
        font-size: 1.5rem;
    }
    
    .recipe-title {
        font-size: 1.3rem;
    }
    
    .toc-title {
        font-size: 1.3rem;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .jvzoo-buy-button,
    .jvzoo-buy-button-large {
        max-width: 100%;
        height: auto;
    }
    
    .overlay-btn-get-full {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-get-full {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .ebook-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn-prev,
    .btn-next {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .page-indicator {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .main-headline {
        font-size: 1.5rem;
    }
    
    .subheadline {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .main-nav {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    
    .btn-header-buy {
        padding: 10px 30px;
        font-size: 0.85rem;
    }
    
    .ebook-3d {
        height: 300px;
    }
    
    .hero-image-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }
    
    .image-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .recipe-preview-image span {
        font-size: 0.7rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .pricing-box {
        padding: 25px 15px;
    }
    
    .section {
        padding: 40px 15px;
    }
}

