/* ==========================================================================
   FEEDY.VN CULINARY MODERN CSS SYSTEM
   ========================================================================== */

:root {
    --primary-orange: #f97316;
    --primary-orange-hover: #ea580c;
    --primary-light: #fff7ed;
    --secondary-mint: #10b981;
    --secondary-dark: #059669;
    --text-slate-900: #0f172a;
    --text-slate-700: #334155;
    --text-slate-500: #64748b;
    --bg-cream: #fcfbf9;
    --bg-warm: #fef7ee;
    --card-white: #ffffff;
    --border-color: #f1f5f9;
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 12px 30px -4px rgba(249, 115, 22, 0.15);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', 'Plus Jakarta Sans', Georgia, serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-slate-900);
    background-color: var(--bg-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.feedy-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER & TOPBAR
   ========================================================================== */
.feedy-topbar {
    background-color: #1e293b;
    color: #e2e8f0;
    font-size: 0.85rem;
    padding: 8px 0;
}
.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-tag {
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar-suggestion-link {
    color: #fed7aa;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.topbar-suggestion-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(254, 215, 170, 0.4);
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.topbar-links a {
    color: #cbd5e1;
    font-weight: 500;
}
.topbar-links a:hover {
    color: var(--primary-orange);
}
.topbar-links .sep {
    margin: 0 8px;
    color: #475569;
}

@media (max-width: 768px) {
    .feedy-topbar {
        padding: 5px 0;
        font-size: 0.78rem;
    }
    .topbar-flex {
        flex-direction: column;
        gap: 3px;
        text-align: center;
    }
    .topbar-links {
        display: none;
    }
    .topbar-tag {
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

.feedy-navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}
.feedy-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.feedy-logo-img {
    height: 54px;
    width: auto;
    max-width: 175px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}
.feedy-logo:hover .feedy-logo-img {
    transform: scale(1.03);
}
.footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 14px;
}
.footer-logo-img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}
.footer-logo:hover .footer-logo-img {
    transform: scale(1.03);
}

.feedy-nav-menu .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 22px;
}
.nav-item {
    position: relative;
    flex-shrink: 0;
}
.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-slate-700);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 2px;
    white-space: nowrap;
    line-height: 1.2;
}
.nav-link:hover {
    color: var(--primary-orange);
}
.badge-hot {
    background-color: #fee2e2;
    color: #991b1b;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-weight: 700;
    margin-left: 2px;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    padding: 10px 0;
    min-width: 240px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 0.9rem;
    color: var(--text-slate-700);
    font-weight: 500;
}
.dropdown-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-orange);
}

/* Header Actions */
.feedy-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.btn-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-slate-700);
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
}
.btn-search-toggle:hover {
    background: var(--primary-light);
    color: var(--primary-orange);
}
.btn-dinner-spin {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    border: none;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-dinner-spin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}
.btn-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.btn-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-slate-900);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 50px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-cream) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: #9a3412;
    border: 1px solid #fed7aa;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 18px;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
}
.text-gradient {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-tagline {
    font-size: 1.25rem;
    font-weight: 800;
    color: #c2410c;
    margin: -6px 0 16px 0;
    letter-spacing: -0.2px;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-slate-700);
    margin-bottom: 28px;
    max-width: 540px;
}

/* Hero Filter Card */
.hero-filter-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}
.filter-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: var(--text-slate-900);
    margin-bottom: 14px;
}
.filter-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: flex-end;
}
.control-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-slate-700);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.control-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-slate-700);
    cursor: pointer;
}
.btn-filter-submit {
    background: var(--text-slate-900);
    color: #ffffff;
    border: none;
    padding: 11px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-filter-submit:hover {
    background: var(--primary-orange);
}

/* Spotlight Card */
.spotlight-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s;
}
.spotlight-card:hover {
    transform: translateY(-4px);
}
.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    backdrop-filter: blur(4px);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
}
.spotlight-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.budget-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #c2410c;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.spotlight-body {
    padding: 24px;
}
.recipe-meta-row {
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--text-slate-700);
    font-weight: 600;
    margin-bottom: 10px;
}
.spotlight-title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 10px;
}
.spotlight-desc {
    font-size: 0.95rem;
    color: var(--text-slate-700);
    margin-bottom: 20px;
}
.spotlight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}
.chef-signature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}
.btn-read-recipe {
    background: var(--primary-light);
    color: #9a3412;
    border: 1px solid #fed7aa;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}
.btn-read-recipe:hover {
    background: #c2410c;
    color: #ffffff;
}

/* ==========================================================================
   SECTIONS & RECIPE CARDS GRID
   ========================================================================== */
.section-pillar {
    padding: 70px 0;
}
.bg-warm {
    background-color: var(--bg-warm);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #c2410c;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.section-tag.affiliate-tag {
    color: #b91c1c;
}
.section-tag.tool-tag {
    color: #1d4ed8;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.view-all-link {
    font-weight: 700;
    font-size: 0.95rem;
    color: #c2410c;
}
.header-desc {
    font-size: 1rem;
    color: var(--text-slate-700);
    margin-top: 6px;
}
.text-center {
    text-align: center;
}
.section-header.text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 35px;
}
.section-header.text-center .section-tag {
    margin-bottom: 8px;
    text-align: center;
}
.section-header.text-center .section-title {
    border-left: none !important;
    padding-left: 0 !important;
    margin: 8px auto 12px;
    text-align: center;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    max-width: 800px;
    line-height: 1.3;
}
.section-header.text-center .header-desc {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Nút liên kết chuyên mục Silo động theo nguyên liệu */
.ingredient-more-cta {
    margin-top: 36px;
    text-align: center;
}
.btn-category-silo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #c2410c;
    color: #c2410c;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.12);
    text-decoration: none;
}
.btn-category-silo:hover {
    background: #c2410c;
    border-color: #c2410c;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(194, 65, 12, 0.25);
    transform: translateY(-2px);
}

/* Recipe Card */
.recipe-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.recipe-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.card-thumb-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.recipe-card:hover .card-thumb {
    transform: scale(1.05);
}
.cost-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}
.citable-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #7b1fa2;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}
.card-content {
    padding: 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-meta {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-slate-500);
    font-weight: 600;
    margin-bottom: 8px;
}
.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.card-title a:hover {
    color: var(--primary-orange);
}
.card-excerpt {
    font-size: 0.85rem;
    color: var(--text-slate-500);
    line-height: 1.5;
    margin-top: auto;
}

/* ==========================================================================
   INGREDIENT PILLS FILTER
   ========================================================================== */
.ingredient-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.pill-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-slate-700);
    cursor: pointer;
    transition: all 0.2s ease;
}
.pill-btn:hover, .pill-btn.active {
    background: #c2410c;
    color: #ffffff;
    border-color: #c2410c;
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.25);
}

/* ==========================================================================
   AFFILIATE PRODUCTS GRID (ĐỒNG NHẤT 3 CARD)
   ========================================================================== */
.affiliate-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
@media (max-width: 992px) {
    .affiliate-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
@media (max-width: 640px) {
    .affiliate-products-grid {
        grid-template-columns: 1fr;
    }
}
.affiliate-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.affiliate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: #fed7aa;
}
.badge-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fee2e2;
    color: #dc2626;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.badge-ribbon.badge-red {
    background: #fee2e2;
    color: #991b1b;
}
.badge-ribbon.badge-blue {
    background: #e0f2fe;
    color: #075985;
}
.badge-ribbon.badge-orange {
    background: #ffedd5;
    color: #9a3412;
}
.product-thumb {
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    background: #f8fafc;
}
.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.affiliate-card:hover .prod-img {
    transform: scale(1.03);
}
.product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.rating-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.rating-stars span {
    color: var(--text-slate-500);
    font-weight: 500;
}
.prod-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 2.8rem;
}
.prod-desc {
    font-size: 0.88rem;
    color: var(--text-slate-700);
    margin-bottom: 14px;
    line-height: 1.5;
    min-height: 3.8rem;
}
.prod-points {
    list-style: none;
    font-size: 0.84rem;
    color: #475569;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 5.5rem;
}
.prod-points li {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
}
.product-cta-group {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.btn-cta-shopee {
    background: #c2410c;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 0;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(194, 65, 12, 0.25);
    text-decoration: none;
    transition: background 0.2s ease;
}
.btn-cta-shopee:hover {
    background: #9a3412;
    color: #ffffff;
}
.btn-view-review {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-slate-500);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}
.btn-view-review:hover {
    color: var(--primary-orange);
}

/* ==========================================================================
   CALCULATOR WIDGET
   ========================================================================== */
.calculator-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    padding: 36px;
    max-width: 960px;
    margin: 0 auto;
}
.calculator-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}
.preset-buttons {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}
.calc-btn-preset {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-slate-700);
    cursor: pointer;
}
.calc-btn-preset.active, .calc-btn-preset:hover {
    background: var(--text-slate-900);
    color: #ffffff;
    border-color: var(--text-slate-900);
}
.custom-input-group input {
    width: 90px;
    padding: 8px 12px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin-top: 6px;
}
.calculator-results {
    padding-top: 24px;
}
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.result-header h4 {
    font-size: 1.15rem;
    font-weight: 800;
}
.disclaimer-badge {
    background: #e2e8f0;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.result-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}
.res-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.res-icon {
    font-size: 1.8rem;
}
.res-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-slate-600);
}
.res-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}
.text-orange {
    color: #c2410c;
}

/* ==========================================================================
   F&B FOOD COST BANNER
   ========================================================================== */
.fnb-banner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
.fnb-badge {
    background: rgba(249, 115, 22, 0.2);
    color: var(--primary-orange);
    border: 1px solid rgba(249, 115, 22, 0.4);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 14px;
}
.fnb-title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}
.fnb-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 22px;
}
.fnb-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 28px;
}
.fnb-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.btn-fnb-download {
    background: #c2410c;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(194, 65, 12, 0.4);
}
.btn-fnb-download:hover {
    background: #9a3412;
}
.fnb-more-link {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
}
.fnb-more-link:hover {
    color: #ffffff;
}

/* Excel Mockup Card */
.excel-mockup-card {
    background: #ffffff;
    color: var(--text-slate-900);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.mockup-header {
    background: #f1f5f9;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.mockup-title {
    margin-left: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}
.mockup-table {
    padding: 14px;
    font-size: 0.85rem;
}
.mock-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 8px 10px;
    border-bottom: 1px solid #f1f5f9;
}
.mock-row.head {
    font-weight: 700;
    color: #334155;
    border-bottom: 2px solid #e2e8f0;
}
.mock-row .profit {
    color: #15803d;
    font-weight: 700;
}

/* ==========================================================================
   E-E-A-T AUTHOR BOX
   ========================================================================== */
.section-author {
    padding: 40px 0 80px;
}
.author-spotlight-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 36px;
    align-items: center;
}
.author-avatar-col {
    text-align: center;
}
.author-portrait {
    width: 130px;
    height: 130px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 12px;
    border: 3px solid var(--primary-orange);
}
.author-verified {
    font-size: 0.75rem;
    font-weight: 700;
    color: #15803d;
    background: #dcfce7;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
}
.bio-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c2410c;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.bio-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.bio-text {
    font-size: 0.95rem;
    color: var(--text-slate-700);
    line-height: 1.6;
    margin-bottom: 18px;
}
.bio-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-slate-700);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.feedy-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #1e293b;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}
.brand-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}
.chef-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e293b;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.chef-badge-card .chef-avatar {
    font-size: 1.8rem;
}
.chef-badge-card .chef-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
}
.chef-badge-card .chef-role {
    font-size: 0.75rem;
    color: #94a3b8;
}
.social-icons {
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
    font-weight: 600;
}
.social-icons a:hover {
    color: var(--primary-orange);
}
.col-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    font-size: 0.9rem;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}
.newsletter-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 12px;
}
.footer-newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    border: 1px solid #334155;
    background: #1e293b;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.85rem;
}
.footer-newsletter-form button {
    background: #c2410c;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
}
.contact-meta {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.6;
}
.footer-bottom {
    padding: 24px 0;
    font-size: 0.85rem;
    color: #94a3b8;
}
.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom-links {
    display: flex;
    gap: 20px;
}
.bottom-links a {
    color: #94a3b8;
    text-decoration: none;
}
.bottom-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   SINGLE RECIPE STYLES
   ========================================================================== */
.single-main {
    padding: 36px 0 80px;
}
.feedy-container.single-layout {
    max-width: 1400px;
}
.single-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: stretch;
}
.single-layout.layout-two-column {
    grid-template-columns: minmax(0, 1fr) 340px;
}
.single-sidebar-left,
.single-article,
.single-sidebar,
.main-col-recipe,
.sidebar-col-recipe {
    min-width: 0;
}
.single-sidebar-left {
    height: auto;
}
.single-sidebar {
    height: auto;
}
.recipe-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}
@media (max-width: 992px) {
    .recipe-two-column-layout {
        grid-template-columns: 1fr !important;
    }
}
.feedy-sticky-toc,
.feedy-sticky-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #fed7aa transparent;
}
.feedy-sticky-toc::-webkit-scrollbar,
.feedy-sticky-sidebar::-webkit-scrollbar {
    width: 4px;
}
.feedy-sticky-toc::-webkit-scrollbar-track,
.feedy-sticky-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.feedy-sticky-toc::-webkit-scrollbar-thumb,
.feedy-sticky-sidebar::-webkit-scrollbar-thumb {
    background: #fed7aa;
    border-radius: 4px;
}
.feedy-sticky-toc::-webkit-scrollbar-thumb:hover,
.feedy-sticky-sidebar::-webkit-scrollbar-thumb:hover {
    background: #fdba74;
}
.feedy-toc-widget {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}
.feedy-toc-widget .widget-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-slate-800);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 8px;
}
.table-responsive,
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 28px 0 36px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    background: #ffffff;
}
.feedy-table, 
.culinary-styled-table, 
.feedy-styled-table,
.single-article table,
table.table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0;
}
.feedy-table th, 
.culinary-styled-table th, 
.feedy-styled-table th,
.single-article table th,
table.table th {
    background: #fff7ed;
    color: #9a3412;
    font-weight: 700;
    padding: 14px 18px;
    border: 1px solid #fed7aa;
    border-bottom: 2px solid #ea580c;
    text-align: left;
    white-space: nowrap;
}
.feedy-table td, 
.culinary-styled-table td, 
.feedy-styled-table td,
.single-article table td,
table.table td {
    padding: 14px 18px;
    border: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}
.feedy-table tr:nth-child(even), 
.culinary-styled-table tr:nth-child(even), 
.feedy-styled-table tr:nth-child(even),
.single-article table tr:nth-child(even),
table.table tr:nth-child(even) {
    background: #fafaf9;
}
.feedy-table tr:hover, 
.culinary-styled-table tr:hover, 
.feedy-styled-table tr:hover,
.single-article table tr:hover,
table.table tr:hover {
    background: #fffbeb;
    transition: background 0.15s ease;
}
.feedy-table td strong,
.feedy-styled-table td strong {
    color: #0f172a;
    font-weight: 700;
}

/* Responsive Table Mobile Enhancements (Option 1: Sticky First Column & Swipe Hint) */
.table-scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .table-responsive,
    .table-responsive-wrapper,
    .wp-block-table {
        position: relative;
        overflow-x: auto !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
        margin: 16px 0 24px;
        border-radius: 12px;
        border: 1px solid #fed7aa;
        background: #ffffff;
    }

    /* Đảm bảo đường viền ô không bị lệch/giật và sticky hoạt động trơn tru trên mobile */
    .table-responsive table,
    .table-responsive-wrapper table,
    .wp-block-table table,
    .recipe-data-table,
    .feedy-table,
    .culinary-styled-table,
    .feedy-styled-table,
    .single-article table,
    article table,
    main table {
        border-collapse: separate !important;
        border-spacing: 0 !important;
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        width: 100%;
        min-width: 480px;
    }

    /* Padding và font chữ tối ưu cho mobile */
    .table-responsive table th,
    .table-responsive table td,
    .table-responsive-wrapper table th,
    .table-responsive-wrapper table td,
    .recipe-data-table th,
    .recipe-data-table td,
    .feedy-table th,
    .feedy-table td,
    article table th,
    article table td {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    /* CỐ ĐỊNH CỘT ĐẦU TIÊN (OPTION 1 - STICKY FIRST COLUMN) CHO TẤT CẢ CÁC BẢNG */
    .table-responsive table th:first-child,
    .table-responsive-wrapper table th:first-child,
    .wp-block-table table th:first-child,
    .recipe-data-table th:first-child,
    .feedy-table th:first-child,
    .single-article table th:first-child,
    article table th:first-child,
    .recipe-section table th:first-child,
    main table th:first-child {
        position: -webkit-sticky !important;
        position: sticky !important;
        left: 0 !important;
        z-index: 3 !important;
        background: #fff7ed !important;
        color: #9a3412 !important;
        box-shadow: 3px 0 8px -2px rgba(0, 0, 0, 0.12);
        max-width: 135px;
        min-width: 105px;
        word-break: break-word;
        white-space: normal;
        border-right: 1px solid #fed7aa !important;
    }

    .table-responsive table td:first-child,
    .table-responsive-wrapper table td:first-child,
    .wp-block-table table td:first-child,
    .recipe-data-table td:first-child,
    .feedy-table td:first-child,
    .single-article table td:first-child,
    article table td:first-child,
    .recipe-section table td:first-child,
    main table td:first-child {
        position: -webkit-sticky !important;
        position: sticky !important;
        left: 0 !important;
        z-index: 2 !important;
        background: #ffffff !important;
        box-shadow: 3px 0 8px -2px rgba(0, 0, 0, 0.12);
        max-width: 135px;
        min-width: 105px;
        word-break: break-word;
        white-space: normal;
        border-right: 1px solid #fed7aa !important;
    }

    .table-responsive table tr:nth-child(even) td:first-child,
    .table-responsive-wrapper table tr:nth-child(even) td:first-child,
    .wp-block-table table tr:nth-child(even) td:first-child,
    .recipe-data-table tr:nth-child(even) td:first-child,
    .feedy-table tr:nth-child(even) td:first-child,
    .single-article table tr:nth-child(even) td:first-child,
    article table tr:nth-child(even) td:first-child,
    .recipe-section table tr:nth-child(even) td:first-child,
    main table tr:nth-child(even) td:first-child {
        background: #fafaf9 !important;
    }

    .table-responsive table tr:hover td:first-child,
    .table-responsive-wrapper table tr:hover td:first-child,
    .wp-block-table table tr:hover td:first-child,
    .recipe-data-table tr:hover td:first-child,
    .feedy-table tr:hover td:first-child,
    article table tr:hover td:first-child {
        background: #fffbeb !important;
    }

    /* Swipe Hint Bar */
    .table-scroll-hint {
        position: -webkit-sticky;
        position: sticky;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 14px;
        background: #fff7ed;
        border-bottom: 1px dashed #fed7aa;
        font-size: 0.8rem;
        color: #c2410c;
        font-weight: 600;
        border-top-left-radius: 11px;
        border-top-right-radius: 11px;
        transition: opacity 0.3s ease;
        box-sizing: border-box;
        z-index: 4;
    }

    .table-scroll-hint .hint-icon {
        animation: pulseSwipe 1.5s infinite ease-in-out;
        display: inline-block;
    }

    @keyframes pulseSwipe {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(4px); }
    }
}

/* ==========================================================================
   BREADCRUMBS GLOBAL COMPONENT (Feedy Standard)
   ========================================================================== */
.feedy-breadcrumbs,
.recipe-breadcrumbs,
.breadcrumb-nav,
nav[aria-label="Breadcrumb"],
nav[aria-label="Breadcrumbs"] {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.88rem !important;
    color: var(--text-slate-500, #64748b) !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}

.feedy-breadcrumbs a,
.recipe-breadcrumbs a,
.breadcrumb-nav a,
nav[aria-label="Breadcrumb"] a,
nav[aria-label="Breadcrumbs"] a {
    color: var(--text-slate-600, #475569) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: color 0.2s ease !important;
}

.feedy-breadcrumbs a:hover,
.recipe-breadcrumbs a:hover,
.breadcrumb-nav a:hover,
nav[aria-label="Breadcrumb"] a:hover,
nav[aria-label="Breadcrumbs"] a:hover {
    color: var(--primary-orange, #ea580c) !important;
}

.feedy-breadcrumbs span,
.recipe-breadcrumbs span,
.breadcrumb-nav span,
nav[aria-label="Breadcrumb"] span,
nav[aria-label="Breadcrumbs"] span,
.recipe-breadcrumbs .sep,
.feedy-breadcrumbs .sep {
    color: var(--text-slate-400, #94a3b8) !important;
    margin: 0 3px !important;
}

/* Reset any <ol> and <li> used inside breadcrumb navs to prevent numbered/bullet list rendering */
.single-article .feedy-breadcrumbs ol,
.single-article .recipe-breadcrumbs ol,
.single-article .breadcrumb-nav ol,
.feedy-breadcrumbs ol,
.recipe-breadcrumbs ol,
.breadcrumb-nav ol,
nav[aria-label="Breadcrumb"] ol,
nav[aria-label="Breadcrumbs"] ol {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-left: 0 !important;
    gap: 6px !important;
}

.single-article .feedy-breadcrumbs li,
.single-article .recipe-breadcrumbs li,
.single-article .breadcrumb-nav li,
.feedy-breadcrumbs li,
.recipe-breadcrumbs li,
.breadcrumb-nav li,
nav[aria-label="Breadcrumb"] li,
nav[aria-label="Breadcrumbs"] li {
    display: inline-flex !important;
    align-items: center !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    color: var(--text-slate-600, #475569) !important;
    font-size: 0.88rem !important;
}

.feedy-breadcrumbs .current,
.recipe-breadcrumbs .current,
.breadcrumb-nav .current,
nav[aria-label="Breadcrumb"] .current,
nav[aria-label="Breadcrumbs"] .current {
    color: var(--text-slate-800, #1e293b) !important;
    font-weight: 600 !important;
}
.category-pill {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.single-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}
.single-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}
.author-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chef-icon {
    font-size: 2rem;
}
.post-date {
    display: block;
    font-size: 0.75rem;
    color: var(--text-slate-500);
}
.recipe-quick-specs {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
}
.single-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
}
.recipe-entry-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-slate-900);
    margin: 16px 0 20px;
}
.recipe-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
}
.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: #475569;
}
.meta-badge.author-badge {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
}
.meta-badge.verified-badge {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}
.spec-item {
    display: flex;
    flex-direction: column;
}
.spec-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}
.spec-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-slate-900);
}
.spec-val.highlight-price {
    color: var(--primary-orange);
}
.recipe-hero-container {
    margin-bottom: 30px;
}
.recipe-hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}
.img-caption {
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    font-style: italic;
    margin-top: 8px;
}
.recipe-article-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-slate-900);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #fed7aa;
}
.recipe-article-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-slate-800);
    margin: 24px 0 12px;
}
.recipe-step-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    text-align: left !important;
}
.recipe-step-item .step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}
.recipe-step-item .step-number-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ea580c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(234, 88, 12, 0.35);
}
.recipe-step-item .step-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    text-align: left !important;
}
.recipe-step-item p {
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: left !important;
}
.recipe-step-item .step-figure-box,
.recipe-step-item figure {
    margin: 16px auto 4px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    text-align: center !important;
}
.recipe-step-item .step-img,
.recipe-step-item .recipe-step-img,
.recipe-step-item img {
    width: 100%;
    max-width: 680px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    display: block;
    margin: 0 auto;
}
.recipe-step-item figcaption {
    font-size: 0.88rem;
    color: #64748b;
    font-style: italic;
    text-align: center !important;
    margin-top: 10px;
    padding: 0 12px;
    line-height: 1.55;
    width: 100%;
    max-width: 680px;
}
.step-guide-content {
    text-align: left !important;
    width: 100%;
}
.step-guide-content h3 {
    text-align: left !important;
}
.step-guide-content p {
    text-align: left !important;
}
.faq-accordion .faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 14px;
}
.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: #9a3412;
    margin: 0 0 8px;
}
.faq-answer p {
    margin: 0;
    color: #475569;
}
.silo-reverse-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 36px;
}
.silo-reverse-box h3 {
    margin-top: 0;
    color: #9a3412;
}
.silo-links-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.silo-links-list li {
    padding: 6px 0;
}
.silo-links-list a {
    color: var(--primary-orange);
    font-weight: 600;
}

.recipe-ai-summary {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 18px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.summary-header .badge {
    color: #1d4ed8;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.ingredients-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    margin-bottom: 35px;
}
.box-title, .steps-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.ingredients-list {
    list-style: none;
}
.ingredients-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.95rem;
}
.ingredients-list label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.recipe-steps {
    margin-bottom: 40px;
}
.step-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #ffffff;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}
.step-card.step-card-horizontal {
    flex-direction: row;
    gap: 20px;
}
.feedy-toc-widget a:hover {
    color: var(--primary-orange) !important;
    font-weight: 700 !important;
    padding-left: 4px;
}
.feedy-toc-widget li {
    transition: all 0.2s ease;
}
.in-article-toc {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0 30px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.06);
}
.step-num {
    width: 38px;
    height: 38px;
    background: var(--primary-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}
.step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.recipe-affiliate-box {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 35px;
}
.aff-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.aff-header .icon {
    font-size: 2rem;
}
.aff-header h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #9f1239;
}
.aff-header p {
    font-size: 0.85rem;
    color: #881337;
}
.aff-card-mini {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.mini-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    object-fit: cover;
}
.mini-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
}
.mini-price {
    font-size: 0.8rem;
    color: #e11d48;
    font-weight: 600;
}
.btn-buy-mini {
    margin-left: auto;
    background: #ee4d2d;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
}
.silo-links-box {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid #e2e8f0;
}
.silo-links-box h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.silo-links-box ul {
    list-style: none;
}
.silo-links-box li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.silo-links-box a:hover {
    color: var(--primary-orange);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}
.author-card-widget {
    text-align: center;
}
.widget-avatar {
    font-size: 3.5rem;
    margin-bottom: 10px;
}
.author-card-widget h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.author-card-widget p {
    font-size: 0.85rem;
    color: var(--text-slate-500);
}
.widget-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.widget-list {
    list-style: none;
    font-size: 0.9rem;
}
.widget-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}
.widget-list a:hover {
    color: var(--primary-orange);
}
.feedy-widget {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}
.category-silo-list, .recipe-toc-nav ul {
    list-style: none;
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
}
.category-silo-list li, .recipe-toc-nav li {
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}
.category-silo-list a:hover, .recipe-toc-nav a:hover {
    color: var(--primary-orange);
}
.author-card-content {
    display: flex;
    gap: 16px;
    align-items: center;
    text-align: left;
}
.author-avatar {
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}


/* ==========================================================================
   RANDOM MEAL GENERATOR MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal-overlay.active {
    display: flex;
}
.modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #64748b;
}
.modal-badge {
    background: var(--primary-light);
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}
.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 8px;
}
.modal-body {
    margin: 24px 0;
    min-height: 120px;
}
.meal-result-card {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md);
    padding: 16px;
}
.meal-result-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #9a3412;
    margin-bottom: 6px;
}
.meal-result-meta {
    font-size: 0.85rem;
    color: #c2410c;
    margin-bottom: 8px;
}
.modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
.btn-spin-again {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
}
.btn-view-selected-recipe {
    background: var(--primary-orange);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ========================================================================== */
@media (min-width: 1101px) and (max-width: 1280px) {
    .single-layout {
        grid-template-columns: 230px minmax(0, 1fr) 290px;
        gap: 24px;
    }
}
@media (min-width: 993px) and (max-width: 1100px) {
    .single-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 28px;
    }
    .single-sidebar-left {
        display: none !important;
    }
}
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-spotlight {
        max-width: 600px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .single-layout,
    .feedy-container.single-layout,
    div[style*="grid-template-columns: minmax(0, 1fr) 340px"],
    div[style*="grid-template-columns: 1fr 340px"] {
        grid-template-columns: 1fr !important;
        display: block !important;
        gap: 24px !important;
    }
    .single-sidebar-left,
    aside.single-sidebar-left {
        display: none !important;
    }
    .affiliate-products-grid {
        grid-template-columns: 1fr;
    }
    .fnb-banner-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .single-article {
        padding: 24px 18px !important;
        border-radius: 14px !important;
    }
    .feedy-logo-img {
        height: 44px;
        max-width: 140px;
    }
    .feedy-nav-menu {
        display: none;
    }
    .btn-mobile-toggle {
        display: flex;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .filter-controls {
        grid-template-columns: 1fr;
    }
    .calculator-inputs {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .author-spotlight-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   ARTICLE & SINGLE RECIPE SYSTEM
   ========================================================================== */
.single-recipe-wrap { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.single-article { flex: 1; min-width: 0; }
.entry-title { font-family: var(--font-serif); font-size: 2.3rem; line-height: 1.3; color: var(--text-slate-900); margin-bottom: 24px; }
.single-article .section-title, .single-recipe-wrap .section-title, .recipe-content-section .section-title { font-size: 1.5rem; color: var(--text-slate-900); margin: 36px 0 16px; border-left: 4px solid var(--primary-orange); padding-left: 12px; }
.subsection-title { font-size: 1.2rem; color: #1e293b; margin: 24px 0 12px; }
.author-badge-top { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #fed7aa; padding: 12px 18px; border-radius: var(--radius-md); margin-bottom: 28px; box-shadow: 0 4px 12px rgba(249,115,22,0.06); }
.author-badge-icon { font-size: 2.2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.author-badge-icon img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-orange); display: block; }
.widget-avatar img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 3px solid var(--primary-orange); display: block; box-shadow: 0 4px 14px rgba(234, 88, 12, 0.18); }
.chef-badge-card .chef-avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-orange); display: block; }
.author-avatar-col .author-portrait { overflow: hidden; border: 3px solid var(--primary-orange); }
.author-avatar-col .author-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chef-avatar-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.author-badge-name { font-weight: 700; color: #0f172a; font-size: 1.05rem; }
.author-badge-meta { font-size: 0.85rem; color: #64748b; }
.feedy-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.feedy-table th { background: #fff7ed; color: #9a3412; font-weight: 700; padding: 12px 16px; text-align: left; border-bottom: 2px solid #fed7aa; }
.feedy-table td { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; color: #334155; }
.alert { padding: 16px 20px; border-radius: 10px; margin: 20px 0; }
.alert-tip { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-note { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-important { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.article-hero-picture,
.article-body-picture {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 24px auto !important;
    text-align: center !important;
}
.article-hero-picture img,
.article-body-picture img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.aligncenter,
img.aligncenter {
    clear: both;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}
.feedy-hr { border: 0; height: 1px; background: #e2e8f0; margin: 32px 0; }
.single-article p { line-height: 1.8; color: #334155; margin-bottom: 18px; font-size: 1.05rem; }
.single-article ul, .single-article ol { margin-bottom: 20px; padding-left: 24px; color: #334155; line-height: 1.8; }
.single-article li { margin-bottom: 8px; }

/* Search Modal & Quick Tags */
.search-modal-card { max-width: 620px; width: 92%; }
.quick-tag-btn { transition: all 0.2s ease; }
.quick-tag-btn:hover { background: #ea580c !important; color: #ffffff !important; border-color: #ea580c !important; }
.search-results-list a:hover { background: #fff7ed !important; border-color: #fdba74 !important; transform: translateX(3px); }
.search-results-list a:hover h4 { color: #ea580c !important; }

/* Laptop & Tablet Landscape Menu Optimization */
@media (min-width: 993px) and (max-width: 1240px) {
    .feedy-nav-menu .nav-list {
        gap: 14px;
    }
    .nav-link {
        font-size: 0.86rem;
        gap: 3px;
    }
    .btn-dinner-spin {
        padding: 8px 12px;
        font-size: 0.82rem;
    }
    .feedy-logo-img {
        height: 48px;
        max-width: 155px;
    }
}

/* Mobile Menu Enhanced */
@media (max-width: 992px) {
    .btn-mobile-toggle { display: flex !important; }
    .feedy-nav-menu { display: none; }
    .feedy-nav-menu.mobile-active { display: block !important; }
    .feedy-nav-menu .nav-list { flex-direction: column; gap: 8px; }
    .feedy-nav-menu .nav-item { width: 100%; }
    .feedy-nav-menu .nav-link { display: flex; justify-content: space-between; width: 100%; padding: 10px 0; border-bottom: 1px solid #f1f5f9; white-space: normal; }
    .feedy-nav-menu .dropdown-menu { display: none; position: static; box-shadow: none; border-radius: 0; padding: 4px 0 8px 16px; background: transparent; }
    .feedy-nav-menu .dropdown-menu li a { padding: 6px 0; font-size: 0.95rem; color: #475569; }
}


.author-meta-img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; vertical-align: middle; margin-right: 6px; display: inline-block; border: 1.5px solid var(--primary-orange); }
.chef-icon img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; vertical-align: middle; border: 1.5px solid var(--primary-orange); }
.author-bio-box { display: flex; gap: 20px; align-items: center; background: #fff7ed; border: 1px solid #fed7aa; padding: 20px; border-radius: 12px; margin: 35px 0; box-shadow: 0 4px 12px rgba(249, 115, 22, 0.05); }
.author-bio-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary-orange); flex-shrink: 0; box-shadow: 0 4px 10px rgba(234, 88, 12, 0.2); }


/* Semantic HTML5 Enhancements */
.feedy-infogain-box .infogain-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 8px 0 12px;
    color: #0f172a;
}
.feedy-table caption {
    font-size: 0.95rem;
    font-weight: 700;
    color: #9a3412;
    background: #fff7ed;
    padding: 10px 16px;
    text-align: left;
    border-bottom: 2px solid #fed7aa;
    caption-side: top;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/* ==========================================================================
   RECIPE & ARTICLE IMAGES & CAPTIONS SYSTEM (CENTERED & STYLED)
   ========================================================================== */

/* All Figure Containers in Articles & Recipe Templates */
.single-article figure,
.recipe-featured-figure,
figure.recipe-step-figure,
.recipe-process-image,
.recipe-hero-image,
.single-featured-image,
.wp-block-image {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 32px auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Picture Element Centering */
.single-article figure picture,
.recipe-step-figure picture,
.recipe-featured-figure picture,
.recipe-process-image picture,
.recipe-hero-image picture {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* In-Content Step & Process Images */
.single-article figure img,
.recipe-step-figure img,
.recipe-process-image img,
.wp-block-image img {
    display: block !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 14px !important;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08) !important;
}

/* Featured / Hero Top Images */
.recipe-featured-figure img,
.recipe-featured-img,
.recipe-hero-image img,
.single-featured-image img {
    display: block !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 24px -4px rgba(15, 23, 42, 0.1) !important;
}

/* Image Captions (Centered, Italic, Smaller Font Size, Elegant Muted Slate) */
.single-article figure figcaption,
.recipe-featured-figure figcaption,
.recipe-step-figure figcaption,
.recipe-process-image figcaption,
.recipe-hero-image figcaption,
.single-featured-image figcaption,
.image-caption,
.img-caption,
.wp-caption-text {
    display: block !important;
    width: 100% !important;
    max-width: 720px !important;
    margin: 10px auto 0 !important;
    padding: 0 12px !important;
    background: transparent !important;
    border: none !important;
    text-align: center !important;
    font-style: italic !important;
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: #64748b !important;
}


/* ==========================================================================
   RECIPE SINGLE POST CANONICAL COMPONENTS
   ========================================================================== */

/* Recipe Specs Card & Columns */
.recipe-specs-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md, 12px);
    padding: 16px 20px;
    margin-bottom: 24px;
}
.recipe-specs-card .spec-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.recipe-specs-card .spec-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}
.recipe-specs-card .spec-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-slate-900, #0f172a);
}



/* Direct Answer / Sapo Box */
.recipe-direct-answer {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 18px 24px;
    border-radius: 0 var(--radius-md, 12px) var(--radius-md, 12px) 0;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: #1e3a8a;
}
.recipe-direct-answer p {
    margin: 0;
}
.recipe-direct-answer strong {
    color: #1e40af;
}

/* Content Sections & Headers */
.recipe-content-section {
    margin-bottom: 36px;
}
.recipe-content-section .section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-slate-900, #0f172a);
    margin: 30px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fed7aa;
}
.recipe-content-section p {
    line-height: 1.75;
    color: #334155;
    margin-bottom: 16px;
}
.recipe-content-section ul,
.recipe-content-section ol {
    padding-left: 24px;
    margin-bottom: 20px;
    line-height: 1.75;
    color: #334155;
}
.recipe-content-section li {
    margin-bottom: 10px;
}



/* In-Content TOC */
.in-content-toc {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 16px 0 28px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.05);
}
.in-content-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.in-content-toc li {
    padding: 6px 0;
    border-bottom: 1px dashed #fed7aa;
    margin: 0;
}
.in-content-toc li:last-child {
    border-bottom: none;
}
.in-content-toc a {
    color: #9a3412;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.in-content-toc a:hover {
    color: var(--primary-orange, #ea580c);
    padding-left: 6px;
}

/* Reverse Silo Box */
.silo-bottom-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius-md, 12px);
    padding: 24px;
    margin-top: 36px;
}
.silo-bottom-box h4 {
    margin: 0 0 16px;
    color: #9a3412;
    font-size: 1.15rem;
    font-weight: 700;
}
.silo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}
.silo-link-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    color: #9a3412;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}
.silo-link-item:hover {
    background: #ffedd5;
    border-color: #ea580c;
    color: #ea580c;
    transform: translateY(-1px);
}

/* Sidebar Popular / Silo Posts List */
.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.popular-posts-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #f1f5f9;
}
.popular-posts-list li:last-child {
    border-bottom: none;
}
.popular-posts-list a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.popular-posts-list strong {
    font-size: 0.92rem;
    color: var(--text-slate-800, #1e293b);
    transition: color 0.2s ease;
}
.popular-posts-list a:hover strong {
    color: var(--primary-orange, #ea580c);
}
.popular-posts-list span {
    font-size: 0.78rem;
    color: #64748b;
}

/* Sidebar TOC Widget List */
.feedy-toc-widget .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feedy-toc-widget .toc-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}
.feedy-toc-widget .toc-list li:last-child {
    border-bottom: none;
}
.feedy-toc-widget .toc-list a {
    color: #475569;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    display: block;
}
.feedy-toc-widget .toc-list a:hover,
.feedy-toc-widget .toc-list a.active {
    color: var(--primary-orange, #ea580c) !important;
    font-weight: 700;
    padding-left: 6px;
    border-left: 2px solid var(--primary-orange);
}

/* ==========================================================================
   INTERACTIVE RECIPE RATING WIDGET (OPTION B)
   ========================================================================== */
.feedy-recipe-rating-widget {
    background: #fffbf5;
    border: 1.5px solid #fed7aa;
    border-radius: 14px;
    padding: 24px 28px;
    margin: 35px 0 25px;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.05);
}
.rating-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.rating-title-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.rating-badge-icon {
    font-size: 1.8rem;
    line-height: 1;
}
.rating-widget-title {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #9a3412;
}
.rating-widget-subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: #7c2d12;
    line-height: 1.5;
}
.rating-interaction-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #ffedd5;
}
.rating-stars-picker {
    display: flex;
    gap: 6px;
}
.rating-stars-picker .star-btn {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    line-height: 1;
    border-radius: 4px;
    transition: transform 0.15s ease;
}
.rating-stars-picker .star-btn:hover {
    transform: scale(1.2);
}
.rating-stars-picker .star-btn .star-icon {
    fill: #cbd5e1;
    transition: fill 0.2s ease;
}
.rating-stars-picker .star-btn.active .star-icon {
    fill: #f59e0b;
}
.rating-summary-text {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
}
.rating-summary-text .score-highlight {
    font-size: 1.25rem;
    font-weight: 800;
    color: #b45309;
}
.rating-summary-text .count-badge {
    color: #64748b;
    font-weight: 500;
    font-size: 0.88rem;
}
.rating-summary-text .first-vote-prompt {
    color: #9a3412;
    font-style: italic;
    font-weight: 500;
}
.rating-feedback-msg {
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}
.rating-feedback-msg.success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.rating-feedback-msg.already-voted {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}
.rating-feedback-msg.sending {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
}
.rating-feedback-msg.error {
    background: #fef2f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
}




/* ==========================================================================
   FEEDY HIGH-CONVERTING AFFILIATE CALLOUT & BUY BOX (CRO ENGINE)
   ========================================================================== */
.feedy-aff-box {
    position: relative;
    background: #ffffff;
    border: 2px solid #fed7aa;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0 28px;
    box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    font-family: inherit;
    box-sizing: border-box;
}
.feedy-aff-box:hover {
    border-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -6px rgba(234, 88, 12, 0.16), 0 6px 12px -2px rgba(0, 0, 0, 0.06);
}

/* Badge Ribbons */
.feedy-aff-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.feedy-aff-badge-orange { background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%); }
.feedy-aff-badge-gold   { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); }
.feedy-aff-badge-green  { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); }
.feedy-aff-badge-blue   { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.feedy-aff-badge-purple { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.feedy-aff-badge-red    { background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); }

/* Layout Body */
.feedy-aff-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 8px;
}
.feedy-aff-media {
    flex: 0 0 240px;
    width: 240px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feedy-aff-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.feedy-aff-box:hover .feedy-aff-img {
    transform: scale(1.04);
}
.feedy-aff-discount-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc2626;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
    z-index: 1;
}

/* Content */
.feedy-aff-content {
    flex: 1;
    min-width: 0;
}
.feedy-aff-brand {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 4px;
}
.feedy-aff-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

/* Rating & Social Proof */
.feedy-aff-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 0.9rem;
}
.feedy-aff-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1;
}
.feedy-aff-score {
    color: #334155;
    font-weight: 700;
}
.feedy-aff-reviews {
    color: #64748b;
    font-size: 0.85rem;
}
.feedy-aff-verified-pill {
    background: #ecfdf5;
    color: #065f46;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #a7f3d0;
    margin-left: 4px;
}

/* Pricing Block */
.feedy-aff-pricing {
    background: #fff7ed;
    border: 1.5px dashed #fed7aa;
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 16px;
}
.feedy-aff-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.feedy-aff-current-price {
    font-size: 1.65rem;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: -0.5px;
}
.feedy-aff-old-price {
    color: #94a3b8;
    font-size: 1.05rem;
    text-decoration: line-through;
}
.feedy-aff-deal-note {
    color: #ea580c;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 4px;
}

/* Selling Points */
.feedy-aff-points {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 18px 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feedy-aff-points li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.45;
    margin: 0 !important;
    padding: 0 !important;
}
.feedy-aff-points .feedy-aff-check {
    color: #16a34a;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1.2;
    flex-shrink: 0;
}

/* Multi-Platform CTAs */
.feedy-aff-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.feedy-aff-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 700;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    min-height: 52px;
}
.feedy-aff-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    animation: feedyAffShimmer 3.5s infinite;
}
@keyframes feedyAffShimmer {
    0% { left: -100%; }
    25% { left: 150%; }
    100% { left: 150%; }
}
.feedy-aff-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    filter: brightness(1.06);
    color: #ffffff !important;
}
.feedy-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}
.feedy-btn-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.feedy-btn-main {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.25;
}
.feedy-btn-sub {
    font-size: 0.78rem;
    font-weight: 400;
    opacity: 0.92;
    margin-top: 2px;
}
.feedy-btn-arrow {
    font-size: 1.15rem;
    margin-left: 10px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.feedy-aff-btn:hover .feedy-btn-arrow {
    transform: translateX(4px);
}

/* Brand Colors */
.feedy-btn-shopee {
    background: linear-gradient(135deg, #f05d40 0%, #ee4d2d 100%);
}
.feedy-btn-lazada {
    background: linear-gradient(135deg, #0f146d 0%, #001080 100%);
}
.feedy-btn-tiki {
    background: linear-gradient(135deg, #0b74e5 0%, #1a94ff 100%);
}
.feedy-btn-official {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* Guarantees & Social Proof */
.feedy-aff-guarantees {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

/* Disclosure */
.feedy-aff-disclosure {
    margin-top: 18px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.feedy-aff-disclosure-icon {
    flex-shrink: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .feedy-aff-box {
        padding: 20px 16px;
    }
    .feedy-aff-badge {
        left: 16px;
        top: -12px;
        font-size: 0.78rem;
        padding: 4px 12px;
    }
    .feedy-aff-body {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    .feedy-aff-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 280px;
    }
    .feedy-aff-content {
        width: 100%;
    }
    .feedy-aff-title {
        font-size: 1.2rem;
    }
    .feedy-aff-current-price {
        font-size: 1.45rem;
    }
    .feedy-aff-guarantees {
        justify-content: center;
    }
}

/* ==========================================================================
   LATEST MENUS 5-CARD GRID SECTION (#pillar-thuc-don-moi-nhat)
   ========================================================================== */
.latest-menus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.latest-menus-grid .latest-menu-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-soft, 0 4px 6px -1px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--border-color, #e2e8f0);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.latest-menus-grid .latest-menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
}
.latest-menus-grid .card-thumb-wrap {
    position: relative;
    height: 155px;
    overflow: hidden;
    background: #f8fafc;
}
.latest-menus-grid .card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.latest-menus-grid .latest-menu-card:hover .card-thumb {
    transform: scale(1.05);
}
.latest-menus-grid .card-content {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.latest-menus-grid .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
}
.latest-menus-grid .card-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest-menus-grid .card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}
.latest-menus-grid .card-title a:hover {
    color: var(--primary-orange, #ea580c);
}
.latest-menus-grid .card-excerpt {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1100px) and (min-width: 768px) {
    .latest-menus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (max-width: 767px) and (min-width: 480px) {
    .latest-menus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 479px) {
    .latest-menus-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

