/* General Font Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #1f0e05; /* Darker tone for headings, consistent across pages */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ===== HERO SECTION (Parallax) ===== */
.momo-hero {
    position: fixed; /* Fixed position for parallax */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    color: #FFF;
    text-align: center;
    padding: 10rem 1.5rem 4rem; /* Keep existing padding for content spacing */
    z-index: -1; /* Ensures it stays behind scrolling content */
    display: flex; /* To vertically center content */
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Hide any overflow from background image */
}

.momo-hero::before {
    content: '';
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7)); /* Slightly darker overlay for better contrast */
    position: absolute;
    z-index: 2;
    inset: 0;
}

.momo-hero-content {
    position: relative;
    z-index: 3;
    padding: 1rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.momo-hero h1 {
    font-size: 3.8rem; /* Larger for impact, consistent with other pages */
    margin-bottom: 1rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5); /* Add text shadow for readability */
}

.momo-hero p {
    font-size: 1.3rem; /* Larger font size */
    max-width: 700px;
    margin: 0 auto;
    color: #f0f0f0; /* Lighter white for readability */
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* ===== INFO + IMAGE TABS SECTION ===== */
.momo-info-tabs {
    padding: 6rem 0; /* Increased top padding */
    background: #fdfdff; /* Consistent light background */
    margin-top: 100vh; /* Pushes content down to scroll over fixed hero */
    position: relative;
    z-index: 1; /* Ensures it scrolls on top */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05); /* Subtle shadow for depth */
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem; /* Increased gap */
    align-items: stretch;
}

.info-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.8rem; /* Consistent gap between cards */
}

.info-cards .card {
    background: #fff; /* White background for cards */
    padding: 2rem; /* Increased padding */
    border-radius: 1.25rem; /* More rounded corners */
    box-shadow: 0 8px 25px rgba(0,0,0,0.06); /* Enhanced shadow */
    transition: transform 0.3s ease;
}

.info-cards .card:hover {
    transform: translateY(-8px); /* More pronounced lift effect */
    box-shadow: 0 12px 35px rgba(0,0,0,0.09);
}

.info-cards .card h3 {
    color: #003893; /* Blue for card headings */
    font-size: 1.5rem; /* Larger heading */
    margin-bottom: 0.8rem;
}

.info-cards .card p {
    font-size: 1rem;
    color: #555;
}

.image-tab-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Increased gap */
}

.main-image-card {
    background: #fff;
    border-radius: 1.5rem; /* More rounded corners */
    padding: 1.5rem; /* Increased padding */
    box-shadow: 0 8px 30px rgba(0,0,0,0.08); /* Enhanced shadow */
}

.main-image-card img {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.image-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.tab-thumb {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.3rem; /* Increased padding for outline */
    border-radius: 0.75rem; /* More rounded outline */
    transition: all 0.3s ease;
}

.tab-thumb.active {
    outline: 4px solid #e63946; /* Vibrant red outline */
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(230, 57, 70, 0.2);
}

.tab-thumb:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tab-thumb img {
    width: 80px; /* Larger thumbnails */
    height: 80px;
    border-radius: 0.75rem; /* More rounded image corners */
    object-fit: cover;
}

.momo-add-to-cart {
    padding: 1.5rem;
    background-color: #f8faff; /* Light background for the add to cart section */
    border-radius: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center; /* Center WooCommerce buttons if they appear */
}

/* ===== PRODUCT DESCRIPTION SECTION ===== */
.momo-description {
    background: #fff; /* Consistent background */
    padding: 6rem 0; /* Increased padding */
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    gap: 3rem; /* Increased gap */
    flex-wrap: wrap;
    align-items: center;
}

.desc-image {
    flex: 1;
    min-width: 300px; /* Ensure image takes enough space */
}

.desc-image img {
    width: 100%;
    border-radius: 1.5rem; /* More rounded image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Enhanced shadow */
}

.desc-text {
    flex: 1;
    min-width: 300px;
}

.desc-text h2 {
    color: #e63946; /* Vibrant red heading */
    font-size: 2.8rem; /* Larger heading */
    margin-bottom: 1.2rem;
}

.desc-text p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.desc-text ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.desc-text li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #333;
    position: relative;
}

/* ===== INGREDIENTS SECTION ===== */
.momo-ingredients {
    background: #fdfdff; /* Consistent light background */
    padding: 6rem 0; /* Increased padding */
    text-align: center;
    position: relative;
    z-index: 1;
}

.momo-ingredients h2 {
    color: #003893; /* Blue heading */
    font-size: 2.8rem; /* Larger heading */
    margin-bottom: 2.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted min-width for cards */
    gap: 2.5rem; /* Increased gap */
    margin-top: 2rem;
}

.ingredient-card {
    background: #fff; /* White background for cards */
    padding: 2.5rem; /* Increased padding */
    border-radius: 1.25rem; /* More rounded corners */
    box-shadow: 0 8px 25px rgba(0,0,0,0.06); /* Enhanced shadow */
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.09);
}

.ingredient-card img {
    width: 70px; /* Larger icons */
    height: 70px;
    margin: auto;
    margin-bottom: 1.2rem;
}

.ingredient-card h3 {
    color: #e63946; /* Vibrant red heading */
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.ingredient-card p {
    font-size: 0.98rem;
    color: #666;
}

/* ===== NUTRITION SECTION ===== */
.momo-nutrition {
    background: #f8faff; /* Slightly different light background */
    padding: 6rem 0; /* Increased padding */
    text-align: center;
    position: relative;
    z-index: 1;
}

.momo-nutrition h2 {
    color: #003893; /* Blue heading */
    font-size: 2.8rem; /* Larger heading */
    margin-bottom: 2.5rem;
}

.nutrition-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem; /* Increased gap */
    margin-left: 0;
    margin-right: 0;
    margin-top: 2rem;
    list-style: none;
    padding-left: 0;
}

.nutrition-list li {
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background-color: #eef1f7; /* Light background for list items */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nutrition-list li strong {
    color: #003893; /* Blue for bold labels */
    font-weight: 700;
}


/* ===== CTA SECTION ===== */
.momo-cta {
    background: linear-gradient(135deg, #fce4ec, #e0f2f7); /* Lighter, appealing gradient */
    padding: 5rem 1.5rem; /* Increased padding */
    text-align: center;
    position: relative;
    z-index: 1;
}

.momo-cta h2 {
    color: #e63946; /* Vibrant red heading */
    font-size: 3rem; /* Larger heading */
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #e63946; /* Vibrant red */
    color: #fff;
    padding: 1.2rem 3rem; /* Larger button */
    border-radius: 40px; /* Highly rounded button */
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
    display: inline-block; /* Ensure padding and transform work */
}

.btn-primary:hover {
    background-color: #b31f1f; /* Darker red on hover */
    transform: translateY(-5px); /* More pronounced lift */
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* ===== COOKING INSTRUCTIONS ===== */
.momo-cooking {
    padding: 6rem 1.5rem; /* Increased padding */
    background: #fff; /* Consistent background */
    text-align: center;
    position: relative;
    z-index: 1;
}

.momo-cooking h2 {
    color: #003893; /* Blue heading */
    font-size: 2.8rem; /* Larger heading */
    margin-bottom: 2.5rem;
}

.momo-cooking ol {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.momo-cooking li {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #444;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.momo-cooking p {
    font-size: 1.1rem;
    margin-top: 2rem;
    color: #555;
    font-style: italic;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .momo-hero h1 {
        font-size: 3rem;
    }
    .momo-hero p {
        font-size: 1.1rem;
    }
    .momo-info-tabs,
    .momo-description,
    .momo-ingredients,
    .momo-nutrition,
    .momo-cta,
    .momo-cooking {
        padding: 4rem 1.5rem; /* Adjust padding for medium screens */
    }
    .info-grid {
        gap: 2rem;
    }
    .info-cards .card {
        padding: 1.5rem;
    }
    .main-image-card {
        padding: 1rem;
    }
    .desc-text h2,
    .momo-ingredients h2,
    .momo-nutrition h2,
    .momo-cooking h2 {
        font-size: 2.2rem;
    }
    .momo-cta h2 {
        font-size: 2.5rem;
    }
    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    .tab-thumb img {
        width: 60px;
        height: 60px;
    }
    .ingredient-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .info-grid,
    .content-wrapper {
        flex-direction: column;
        gap: 2rem; /* Reduce gap on smaller screens */
    }
    .image-tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
    .momo-hero h1 {
        font-size: 2.5rem;
    }
    .momo-hero p {
        font-size: 1rem;
    }
    .momo-info-tabs,
    .momo-description,
    .momo-ingredients,
    .momo-nutrition,
    .momo-cta,
    .momo-cooking {
        padding: 3rem 1.5rem; /* Further reduce padding */
    }
    .info-cards,
    .image-tab-wrapper,
    .desc-image,
    .desc-text {
        min-width: unset; /* Remove min-width constraint */
        width: 100%;
    }
    .desc-image img {
        margin-bottom: 1.5rem; /* Add space below image */
    }
    .desc-text h2,
    .momo-ingredients h2,
    .momo-nutrition h2,
    .momo-cooking h2 {
        font-size: 2rem;
    }
    .momo-cta h2 {
        font-size: 2.2rem;
    }
    .btn-primary {
        width: 100%; /* Make button full width */
        max-width: 300px; /* Constrain max width */
    }
    .grid-3 {
        grid-template-columns: 1fr; /* Single column layout for ingredients */
    }
    .ingredient-card {
        padding: 1.5rem;
    }
    .nutrition-list {
        flex-direction: column; /* Stack nutrition items */
        gap: 1rem;
        align-items: center;
    }
    .nutrition-list li {
        width: 80%; /* Make list items wider */
        max-width: 250px;
    }
    .momo-cooking ol {
        text-align: left; /* Ensure list items are left-aligned */
        padding-left: 1rem; /* Adjust padding for mobile */
    }
}

@media (max-width: 480px) {
    .momo-hero h1 {
        font-size: 2rem;
    }
    .momo-hero p {
        font-size: 0.9rem;
    }
    .momo-info-tabs,
    .momo-description,
    .momo-ingredients,
    .momo-nutrition,
    .momo-cta,
    .momo-cooking {
        padding: 2.5rem 1rem; /* Further reduced padding */
    }
    .info-cards .card,
    .main-image-card,
    .ingredient-card {
        padding: 1rem; /* Smaller padding */
    }
    .info-cards .card h3 {
        font-size: 1.3rem;
    }
    .desc-text h2,
    .momo-ingredients h2,
    .momo-nutrition h2,
    .momo-cooking h2 {
        font-size: 1.8rem;
    }
    .momo-cta h2 {
        font-size: 2rem;
    }
    .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    .tab-thumb img {
        width: 50px;
        height: 50px;
    }
    .momo-cooking li {
        font-size: 1.05rem;
    }
}