/* ==========================================================================
   1. BASE STYLES & VARIABLES
   ========================================================================== */
:root {
    --primary-color: #0c989f;
    --secondary-color: #FFD700;
    --rose-color: #E07A5F;
    --text-color: #333;
    --text-on-gold: #333;
    --bg-color: #f4f7f6;
    --header-height: 70px;
}

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

html, body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}


/* ==========================================================================
   2. SHARED COMPONENTS (Header, Footer, Buttons)
   ========================================================================== */
.header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}
.logo { font-weight: 700; font-size: 1.5rem; color: var(--primary-color); text-decoration: none; }
.nav-list { display: flex; list-style: none; align-items: center; }
.nav-list li { margin-left: 30px; }
.nav-list a { text-decoration: none; color: var(--text-color); font-weight: 600; transition: color 0.3s ease; }
.nav-list a:hover { color: var(--primary-color); }
.footer { text-align: center; padding: 25px; margin-top: 40px; background-color: #ffffff; color: #aaa; font-size: 0.9rem; border-top: 1px solid #eee; }
.cta-button {
    background-color: var(--secondary-color);
    color: var(--text-on-gold);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.2);
    display: inline-block;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0, 0.25);
}


/* ==========================================================================
   3. BLOG INDEX PAGE STYLES
   ========================================================================== */
.blog-index-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-hero {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}
.blog-hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 10px; }
.blog-hero p { font-size: 1.1rem; color: #777; max-width: 600px; margin: 0 auto; }

.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.category-dropdown { position: relative; }
.category-dropdown summary {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.category-dropdown summary::-webkit-details-marker { display: none; }
.category-dropdown summary i { transition: transform 0.3s ease; }
.category-dropdown[open] summary i { transform: rotate(180deg); }
.category-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px;
    width: 250px;
    z-index: 10;
}
.category-dropdown-menu ul { list-style: none; }
.category-dropdown-menu a { display: block; padding: 8px 12px; text-decoration: none; color: var(--text-color); border-radius: 6px; font-size: 0.95rem; }
.category-dropdown-menu a:hover { background: var(--bg-color); }
.category-dropdown-menu .child-category a { padding-left: 25px; font-size: 0.9rem; color: #555; }

.view-toggle button {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}
.view-toggle button.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

.articles-wrapper { display: flex; flex-direction: column; gap: 30px; }
.articles-container { display: grid; gap: 30px; transition: all 0.3s ease-in-out; }
.articles-container.grid-view { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.articles-container.list-view { grid-template-columns: 1fr; }

.article-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.article-card-image a { display: block; }
.article-card-image img { width: 100%; height: 200px; object-fit: cover; }
.article-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.article-card-category { color: var(--primary-color); font-size: 0.8rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.article-card-title { font-size: 1.3rem; margin-bottom: 15px; }
.article-card-title a { text-decoration: none; color: var(--text-color); }
.article-card-excerpt { color: #777; font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.article-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #999; }
.article-card-meta .read-time { display: flex; align-items: center; gap: 5px; }
.article-card-meta a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

.articles-container.list-view .article-card { flex-direction: row; }
.articles-container.list-view .article-card-image { width: 250px; flex-shrink: 0; }
.articles-container.list-view .article-card-image img { height: 100%; }

.article-card.featured { flex-direction: row; align-items: stretch; grid-column: 1 / -1; }
.article-card.featured .article-card-image { width: 50%; flex-shrink: 0; }
.article-card.featured .article-card-image img { height: 100%; }
.article-card.featured .article-card-content { width: 50%; display: flex; flex-direction: column; justify-content: center; }
.article-card.featured .article-card-title { font-size: 2rem; }

#loader { text-align: center; padding: 20px; display: none; }
.spinner { border: 4px solid rgba(0, 0, 0, 0.1); width: 36px; height: 36px; border-radius: 50%; border-left-color: var(--primary-color); animation: spin 1s ease infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }


/* ==========================================================================
   4. BLOG DETAIL PAGE STYLES
   ========================================================================== */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--primary-color);
    width: 0%;
    z-index: 2000;
    transition: width 0.1s linear;
}
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
main { /* Reset styles from index page */
    background: none; padding: 0; border-radius: 0; box-shadow: none;
}
.breadcrumbs { margin-bottom: 20px; font-size: 0.9rem; }
.breadcrumbs a { color: var(--primary-color); text-decoration: none; }
.breadcrumbs span { color: #999; }
.article-header h1 { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 15px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; font-size: 0.9rem; color: #777; margin-bottom: 25px; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-meta i { color: var(--rose-color); }
.featured-image { margin-bottom: 30px; }
.featured-image img { width: 100%; height: auto; border-radius: 10px; }

/* Article Content & Components */
.article-content h2 { font-size: 1.8rem; margin: 40px 0 15px; padding-bottom: 5px; border-bottom: 2px solid #eee; }
.article-content h3 { font-size: 1.4rem; margin: 30px 0 15px; }
.article-content p, .article-content li { font-size: 1.05rem; margin-bottom: 20px; }
.article-content a { color: var(--primary-color); text-decoration: none; font-weight: 600; border-bottom: 2px solid transparent; transition: border-color 0.3s; }
.article-content a:hover { border-color: var(--primary-color); }
.article-content blockquote { margin: 25px 0; padding: 20px; background: #f8f9fa; border-left: 4px solid var(--rose-color); font-style: italic; font-size: 1.1rem; color: #555; }
.article-content table { width: 100%; border-collapse: collapse; margin: 25px 0; font-size: 0.95rem; box-shadow: 0 5px 25px rgba(0,0,0,0.07); border-radius: 8px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch;}

.article-content th, .article-content td { padding: 12px 15px; border: 1px solid #ddd; text-align: left; }
.article-content th { background-color: var(--bg-color); font-weight: 600; }
.article-content tr:nth-child(even) { background-color: #fdfdfd; }


/* CSS for the new 'one-liner' element */
.article-card-one-liner {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1; 
}

/* Adjustments for existing elements to make space */
.article-card-title { 
    margin-bottom: 8px; 
}

.article-card-excerpt { 
    /* Remove flex-grow from here as the one-liner now handles it */
}


.article-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; }
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.article-tags a { background: #eee; color: #555; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; text-decoration: none; transition: all 0.3s; }
.article-tags a:hover { background: var(--primary-color); color: #fff; }
.social-share { display: flex; align-items: center; gap: 15px; }
.social-share a { color: var(--text-color); font-size: 1.5rem; transition: color 0.3s, transform 0.3s; }
.social-share a:hover { transform: scale(1.1); }
.social-share .fa-facebook:hover { color: #1877F2; }

.author-box { margin-top: 40px; padding: 25px; background: #f8f9fa; border-radius: 10px; display: flex; align-items: center; gap: 20px; }
.author-box img { width: 80px; height: 80px; border-radius: 50%; }
.author-box h4 { font-size: 1.2rem; margin-bottom: 5px; }
.author-box p { font-size: 0.9rem; color: #555; }

/* Sidebar */
aside { position: sticky; top: 20px; align-self: start; }
.sidebar-widget { background: #fff; padding: 25px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); margin-bottom: 25px; }
.sidebar-widget h3 { font-size: 1.2rem; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.toc ul { list-style: none; padding: 0;}
.toc ul li a { text-decoration: none; color: var(--text-color); font-size: 0.95rem; padding: 5px 0; display: block; border-left: 2px solid transparent; padding-left: 10px; transition: all 0.3s; }
.toc ul li a:hover, .toc ul li a.active { color: var(--primary-color); background: #f4f7f6; border-left-color: var(--primary-color); }
.widget-cta { background: linear-gradient(135deg, #FFD700, #F0C300); color: var(--text-on-gold); text-align: center; }
.widget-cta .cta-button { background: #fff; color: var(--primary-color); }

/* Post Navigation & Comments */
.post-navigation { margin-top: 40px; padding-top: 25px; border-top: 1px solid #eee; display: flex; justify-content: space-between; gap: 20px; }
.post-navigation a { display: flex; align-items: center; gap: 15px; text-decoration: none; color: var(--text-color); padding: 15px; border-radius: 10px; transition: background-color 0.3s, box-shadow 0.3s; width: 50%; }
.post-navigation a:hover { background-color: #f8f9fa; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.post-navigation .next-post { text-align: right; justify-content: flex-end; }
.post-navigation i { font-size: 1.5rem; color: var(--primary-color); }
.post-navigation span { font-size: 0.8rem; color: #777; display: block; margin-bottom: 2px; }
.post-navigation h4 { font-size: 1rem; margin: 0; font-weight: 600; }

.comments-section { margin-top: 40px; background: #fff; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
.comment-accordion-header { width: 100%; background: none; border: none; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Poppins', sans-serif; }
.comment-accordion-header h3 { margin: 0; font-size: 1.3rem; display: flex; align-items: center; gap: 10px; color: var(--primary-color); }
.comment-accordion-header .toggle-icon { font-size: 1.2rem; transition: transform 0.4s ease; }
.comment-accordion-header[aria-expanded="true"] .toggle-icon { transform: rotate(180deg); }
.comment-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; padding: 0 30px; }
.comment-accordion-content.open { max-height: 2000px; }
.comment-accordion-content > div { padding-bottom: 30px; }
.comment-form h4 { font-size: 1.2rem; margin-bottom: 5px; }
.comment-form p { font-size: 0.9rem; color: #777; margin-bottom: 15px; }
.comment-form textarea, .comment-form input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 15px; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.comment-form .form-row { display: flex; gap: 15px; }
.comment-form .submit-button { background: var(--primary-color); color: #fff; width: auto; padding: 10px 25px; border: none; font-weight: 600; cursor: pointer; }
.comment-list { margin-top: 40px; }
.comment { display: flex; gap: 15px; margin-bottom: 25px; }
.comment.replied { margin-left: 50px; }
.comment img { width: 50px; height: 50px; border-radius: 50%; }
.comment-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.comment-header strong { font-size: 1rem; }
.comment-header .comment-date { font-size: 0.8rem; color: #999; }
.comment-body p { margin-bottom: 8px; }
.reply-link { font-size: 0.85rem; font-weight: 600; text-decoration: none; color: var(--primary-color); }

/* ==========================================================================
   5. SHARED CTA & PROMO STYLES
   ========================================================================== */
.promo-banner {
    background: linear-gradient(135deg, var(--primary-color), #0a7f86);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.promo-banner h3 { font-size: 1.6rem; margin: 0; }
.promo-banner p { margin: 0; opacity: 0.9; }
.promo-banner .promo-button { background: #fff; color: var(--primary-color); text-decoration: none; padding: 12px 25px; border-radius: 50px; font-weight: 600; white-space: nowrap; }

.cta-inline-box {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), #0a7f86);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(12, 152, 159, 0.3);
}
.cta-inline-box h3 { font-size: 1.6rem; margin-bottom: 10px; }
.cta-inline-box p { margin-bottom: 25px; opacity: 0.9; }

/* --- Blog Content Components (Steps) --- */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.step-number {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step-item h3 {
    margin-top: 0;
    margin-bottom: 5px;
}
.step-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #555;
}

/* Additional CTA box styles from templates */
.cta-box {
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
}
.cta-box h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.cta-box p { margin-bottom: 24px; }
.cta-box .cta-button {
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: none;
}
.cta-box .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0, 0.15);
}

/* Violet Promo Box (Meal Prep Guide) */
.cta-box.promo-violet {
    background-color: #f5f3ff;
    border: 2px solid #c4b5fd;
}
.cta-box.promo-violet h3 { color: #5b21b6; }
.cta-box.promo-violet p { color: #6d28d9; }
.cta-box.promo-violet .cta-button { background-color: #8b5cf6; color: white; }
.cta-box.promo-violet .cta-button:hover { background-color: #7c3aed; }

/* Yellow Promo Box (Diet Plan Guide) */
.cta-box.promo-yellow {
    background-color: #fefce8;
    border: 2px solid #facc15;
}
.cta-box.promo-yellow h3 { color: #713f12; }
.cta-box.promo-yellow p { color: #854d0e; }
.cta-box.promo-yellow .cta-button { background-color: #eab308; color: white; }
.cta-box.promo-yellow .cta-button:hover { background-color: #ca8a04; }

/* Blue Promo Box (Myths Guide) */
.cta-box.promo-blue {
    background-color: #f0f9ff;
    border: 2px solid #bae6fd;
}
.cta-box.promo-blue h3 { color: #0c4a6e; }
.cta-box.promo-blue p { color: #075985; }
.cta-box.promo-blue .cta-button { background-color: #0ea5e9; color: white; }
.cta-box.promo-blue .cta-button:hover { background-color: #0284c7; }

/* --- End of Added Styles --- */


/* Post Navigation & Comments */
.post-navigation { margin-top: 40px; padding-top: 25px; border-top: 1px solid #eee; display: flex; justify-content: space-between; gap: 20px; }
.post-navigation a { display: flex; align-items: center; gap: 15px; text-decoration: none; color: var(--text-color); padding: 15px; border-radius: 10px; transition: background-color 0.3s, box-shadow 0.3s; width: 50%; }
.post-navigation a:hover { background-color: #f8f9fa; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.post-navigation .next-post { text-align: right; justify-content: flex-end; }
.post-navigation i { font-size: 1.5rem; color: var(--primary-color); }
.post-navigation span { font-size: 0.8rem; color: #777; display: block; margin-bottom: 2px; }
.post-navigation h4 { font-size: 1rem; margin: 0; font-weight: 600; }

.comments-section { margin-top: 40px; background: #fff; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.05); }
.comment-accordion-header { width: 100%; background: none; border: none; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Poppins', sans-serif; }
.comment-accordion-header h3 { margin: 0; font-size: 1.3rem; display: flex; align-items: center; gap: 10px; color: var(--primary-color); }
.comment-accordion-header .toggle-icon { font-size: 1.2rem; transition: transform 0.4s ease; }
.comment-accordion-header[aria-expanded="true"] .toggle-icon { transform: rotate(180deg); }
.comment-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; padding: 0 30px; }
.comment-accordion-content.open { max-height: 2000px; }
.comment-accordion-content > div { padding-bottom: 30px; }
.comment-form h4 { font-size: 1.2rem; margin-bottom: 5px; }
.comment-form p { font-size: 0.9rem; color: #777; margin-bottom: 15px; }
.comment-form textarea, .comment-form input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 15px; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.comment-form .form-row { display: flex; gap: 15px; }
.comment-form .submit-button { background: var(--primary-color); color: #fff; width: auto; padding: 10px 25px; border: none; font-weight: 600; cursor: pointer; }
.comment-list { margin-top: 40px; }
.comment { display: flex; gap: 15px; margin-bottom: 25px; }
.comment.replied { margin-left: 50px; }
.comment img { width: 50px; height: 50px; border-radius: 50%; }
.comment-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.comment-header strong { font-size: 1rem; }
.comment-header .comment-date { font-size: 0.8rem; color: #999; }
.comment-body p { margin-bottom: 8px; }
.reply-link { font-size: 0.85rem; font-weight: 600; text-decoration: none; color: var(--primary-color); }



/* ==========================================================================
   6. RECIPE CARD STYLES (New Addition)
   ========================================================================== */
.recipe-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.recipe-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.recipe-header h3 { font-size: 1.6rem; margin: 0; }
.recipe-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; font-size: 0.9rem; color: #555; flex-shrink: 0; text-align: right; }
.recipe-meta span { display: flex; align-items: center; gap: 6px; }
.recipe-meta .fa-solid { color: var(--primary-color); }
.recipe-body ul { padding-left: 20px; margin-bottom: 0; }
.recipe-body li { margin-bottom: 10px !important; }

/* ==========================================================================
   7. RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 992px) {
    /* Detail Page */
    .blog-container { grid-template-columns: 1fr; }
    aside { position: static; margin-top: 30px; }
    
    /* Index Page */
    .article-card.featured { flex-direction: column; }
    .article-card.featured .article-card-image,
    .article-card.featured .article-card-content { width: 100%; }
    .article-card.featured .article-card-image img { height: 250px; }
}

@media(max-width: 768px) {

    .blog-container {
        grid-template-columns: 1fr;
        padding: 20px; /* Reduce padding for smaller screens */
        margin: 20px auto; /* Adjust margins */
        max-width: 100%; /* Ensure it doesn't exceed viewport width */
        box-sizing: border-box; /* Crucial for padding/border inclusion in width */
    }
    main {
        padding: 0; /* Remove padding if blog-container handles it */
    }
    aside {
        position: static;
        margin-top: 30px;
    }

    /* Detail Page */
    main { padding: 25px; }
    .article-header h1 { font-size: 2.2rem; }
    .post-navigation { flex-direction: column; }
    .post-navigation a { width: 100%; }
    .comment.replied { margin-left: 20px; }
    .comment-form .form-row { flex-direction: column; gap: 0; }
    
    /* Index Page */
    .articles-container.grid-view { grid-template-columns: 1fr; }
    .articles-container.list-view .article-card { flex-direction: column; }
    .articles-container.list-view .article-card-image { width: 100%; }
    .articles-container.list-view .article-card-image img { height: 200px; }
    .controls-bar { flex-direction: column; align-items: flex-start; }
    .promo-banner { flex-direction: column; text-align: center; }
}


/* ================================================================
   8. Breadcrumb Bar Styling ---   
   ================================================================ */

/* */
.breadcrumb-bar {
    background-color: #f8f9fa; /* A light, clean background color */
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef; /* A subtle separator line */
    width: 100%;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between items */
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color); /* Use your theme's primary color */
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: #6c757d; /* A neutral color for separators and the current page */
}

