.archive h2{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0e4e6;
    padding-bottom: 0.5rem;
}
.archive .seasonal_recipe_details h2{
    margin-bottom: unset;
    border-bottom: unset;
    padding-bottom: unset;
}
.archive section {
    margin: 3rem 0;
}
.breadcrumb-section{
    display: flex;
    flex-direction: column;
}
.breadcrumb-section h1{
    margin-bottom: 10px;
}
.breadcrumb-section ol { list-style: none; margin: unset; padding: 0; display: flex; gap: 8px; color: #888; }
.breadcrumb-section li:not(:last-child)::after { content: '>'; margin-left: 8px; }
.featured-image-container img { width: 100%; height: auto; border-radius: 8px; }
.intro-paragraph { font-size: 1.1rem; color: #555; max-width: 800px; margin: 2rem auto; text-align: center; }

/* --- [FEATURE 6] Filter Dropdowns --- */
.advanced-search-section .filter-area-wrapper {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
}
.filter-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.filter-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}
/*Favourite Button*/
.recipe-card .simplefavorite-button{
    position: absolute;
    top: 0;
    z-index: 999999;
    right: 15px;
    font-size: 25px;
    background: #ffffff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-top: 10px;
}
/* --- Recipe Grid & Cards --- */
/*.recipe-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
/*    gap: 1rem;*/
/*}*/
/*.recipe-grid { display: flex; flex-wrap: wrap; gap: 1rem; }*/
.recipe-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}
.recipe-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease-in-out;
    max-width: 403.31px;
}
.highlights_wrapper{
    margin-top: 15px;
}
.recipe-card:hover { transform: translateY(-5px); }
.full-card-link { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
.recipe-card img { width: 100%; height: 250px; object-fit: cover; display: block; }
.recipe-card-content { padding: 1rem; }

/* --- Pagination --- */
.gy_pagination { text-align: center; margin: 2rem 0; }
.gy_pagination a, .gy_pagination span {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border: 1px solid #ddd;
    text-decoration: none;
    border-radius: 4px;
}
.gy_pagination .current { background-color: var(--global-palette1); color: white; border-color: var(--global-palette1); }

.recipe_rating_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- [FEATURE 2] CSS Recipe Carousel --- */
.recipe-carousel-wrapper { overflow: hidden; position: relative; }
.recipe-carousel {
    /*display: flex;*/
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 0 20px 0;
    scrollbar-width: thin;
}
.recipe-carousel::-webkit-scrollbar { height: 8px; }
.recipe-carousel::-webkit-scrollbar-track { background: #f1f1f1; }
.recipe-carousel::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
/*.recipe-carousel .recipe-card {*/
/*    flex: 0 0 80%;*/
/*    max-width: 300px;*/
/*    scroll-snap-align: start;*/
/*}*/
@media (min-width: 600px) { .recipe-carousel .recipe-card { flex-basis: 40%; } }
@media (min-width: 992px) { .recipe-carousel .recipe-card { flex-basis: 30%; } }

/* --- [FEATURE 4 & 5] Classic Editor Content --- */
.classic-editor-content, .classic-editor-content-final { padding: 1.5rem; background: #fafafa; border-left: 4px solid #d6336c; }

/* --- Other Sections --- */
.knowledge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.knowledge-card { background: white; border: 1px solid #eee; border-radius: 8px; overflow: hidden; position: relative; }
.knowledge-card-image-placeholder img { width: 100%; height: 180px; object-fit: cover; }
.knowledge-card-content { padding: 1rem; }

.still-hungry-section { text-align: center; background: var(--light-pink-bg); padding: 2rem; border-radius: 8px; margin-top: 3rem; }
.category-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 1.5rem 0; }
.category-links a { background: white; padding: 0.75rem 1.5rem; border-radius: 20px; text-decoration: none; font-weight: bold; border: 1px solid #eee; }
.mocktail-search-form { display: flex; max-width: 500px; margin: 1rem auto; }
.search-field { flex-grow: 1; border: 1px solid #ccc; padding: 1rem; border-radius: 4px 0 0 4px; font-size: 1rem; }
.search-submit { background-color: var(--brand-color); color: white; border: none; padding: 1rem 1.5rem; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: bold; }
.stats-table-container { border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.stats-table { width: 100%; border-collapse: collapse; text-align: left; }
.stats-table th, .stats-table td { padding: 1rem; border-bottom: 1px solid #eee; }
.stats-table th { background: #f9f9f9; }
.stats-table tr:last-child td { border-bottom: none; }

/* --- [FEATURE 1] FAQ Section --- */
.faq-accordion .faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-question { padding: 1.5rem 0; font-weight: bold; font-size: 1.1rem; cursor: pointer; list-style: none; position: relative; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; position: absolute; right: 1rem; font-size: 1.5rem; transition: transform 0.2s; }
details[open] > summary.faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1rem 1.5rem 1rem; line-height: 1.6; color: #555; }

/* --- [FEATURE 7] Mobile Tab Navigation --- */
.mobile-tab-nav {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; height: 60px;
    background-color: #ffffff; border-top: 1px solid #e0e0e0; z-index: 1000;
    justify-content: space-around; align-items: center; box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.tab-nav-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #333; text-decoration: none; font-size: 12px; font-weight: bold;
    flex-grow: 1; height: 100%; background: none; border: none; padding: 0; cursor: pointer;
}
.gy_more_terms{
    background: #fdf6f7;
    border-radius: 15px;
    padding: 50px 0px;
}
.gy_more_terms .terms_wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.gy_more_terms .terms_wrapper .gy_cat_term {
    width: 32%;
    margin-bottom: 25px;
}
.gy_more_terms .terms_wrapper .gy_cat_term img{
    border-radius: 15px;
    height: 270px;
    width: 100%;
    object-fit: cover;
}
.gy_more_terms .terms_wrapper .gy_cat_term a{
    text-decoration: none;
}
.gy_more_terms .terms_wrapper .gy_cat_term h4{
    text-align: center;
    margin-top: 15px;
    color: var(--global-palette1);
}
@media (max-width: 768px) { .mobile-tab-nav { display: flex; } }

.gy-search-submit { color: var(--global-palette-btn-hover); background: var(--global-palette-btn-bg-hover); padding: 6.4px 24px;
}
.still-hungry-section .mocktail-search-form label, .still-hungry-section .mocktail-search-form .search-field { width: 100%; }
.still-hungry-section .mocktail-search-form .search-field { border-radius: 3px 0 0 3px; height: 100%; border-right: 0; }
.still-hungry-section .category-links a { border-radius: 50px; }
.rating-stats-section .stats-table { margin-bottom: 0; }
.gy-cake-page .recipe-carousel { overflow: visible; }
.gy-cake-page .recipe-carousel .recipe-card { margin: 5px 8px 15px; }
.gy-cake-page .slick-dots li { margin: 0; }
.gy-cake-page .slick-dots li button:before { font-size: 12px; }
.gy-cake-page .category-description.bottom-description.bg-light-pink { background: #fdf6f7; padding: 48px 48px 32px; border-radius: 8px; margin-top: 60px; }
@media (max-width: 479px) { .gy-cake-page .slick-slider ul.slick-dots { width: 100%; } 
    .gy-cake-page .slick-dotted.slick-slider { padding-bottom: 0; }
    .still-hungry-section { padding: 10px 0; }
    .gy-cake-page .category-description.bottom-description.bg-light-pink { padding: 30px 10px 13px; }
}
@media(max-width: 480px){
    .gy-cake-page{
        margin-top: 1rem !important;
    }
    .archive section {
        margin: 2rem 0;
    }
    .gy-container{
        padding: 15px !important;
    }
    .breadcrumb-section{
        margin: unset !important;
        gap: 20px;
        align-items: center;
        flex-direction: column-reverse;
    }
    .breadcrumb-section h1{
        text-align: center;
    }
    .gy_more_terms{
        padding: 20px 0px 0px;
    }
    .gy_more_terms .terms_wrapper .gy_cat_term {
        width: 30%;
    }
    .gy_more_terms .terms_wrapper .gy_cat_term img{
        height: 100px;
    }
    .gy_more_terms .terms_wrapper .gy_cat_term h4{
        font-weight: 900;
        font-size: 14px;
        margin-top: 8px;
    }
    .recipe-grid{
        grid-template-columns: 1fr;
    }
}