/*
Theme Name:   Kadence Child
Theme URI:    http://ecohomelife.test
Description:  Child theme of Kadence — Home & Garden Reviews
Author:       EcoHomeLife
Template:     kadence
Version:      1.0.0
Tags:         custom, child-theme
Text Domain:  kadence-child
*/

/* =============================================
   EcoHomeLife — Design System This is commit auto pushed from the design system repo. Do not edit this file directly. hahaaaaa fagdgsdhglksdjgkjsdklj gkajhdlskgjkl HHHihuhuih
   jgkhdsjkghsjd ghjksdhgjkshdjhsdjkgh sd sdhgkjsdhgjksdhgkj gjhskdihgksdghj s weriwhtjk shjkghsjk
   ============================================= */

:root {
    --green-dark:   #2D6A4F;
    --green-mid:    #40916C;
    --green-light:  #52B788;
    --green-tint:   #D8F3DC;
    --orange:       #FF6B35;
    --orange-dark:  #E55A24;
    --text-dark:    #111827;
    --text-body:    #4B5563;
    --text-muted:   #9CA3AF;
    --bg-light:     #F9FAFB;
    --bg-white:     #FFFFFF;
    --border:       #E5E7EB;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md:    0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 10px 40px rgba(0,0,0,.12);
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --transition:   .2s ease;

    /* Kadence palette override */
    --global-palette1: var(--green-dark);
    --global-palette2: var(--green-light);
    --global-palette3: var(--orange);
    --global-palette4: #E8F5E9;
    --global-palette5: var(--text-dark);
    --global-palette6: var(--text-body);
    --global-palette7: var(--bg-white);
    --global-palette8: var(--bg-light);
}

/* ─── GLOBAL ──────────────────────────────────────────────────────────────── */
body { color: var(--text-body); }
a    { color: var(--green-dark); }
a:hover { color: var(--orange); }

.wp-site-blocks { overflow-x: hidden; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary,
.wp-block-button__link {
    background: var(--orange) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    padding: 13px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    min-height: 48px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:hover,
.wp-block-button__link:hover {
    background: var(--orange-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,.35);
}
.btn-outline {
    background: transparent !important;
    color: var(--green-dark) !important;
    border: 2px solid var(--green-dark) !important;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    padding: 11px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    min-height: 48px;
}
.btn-outline:hover {
    background: var(--green-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .btn-full { display: block !important; width: 100%; text-align: center; }
}

/* ─── SECTION LAYOUT ──────────────────────────────────────────────────────── */
.ecohl-section {
    padding: 72px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.ecohl-section-sm { padding: 48px 24px; }
.ecohl-section-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
    line-height: 1.2;
}
.ecohl-section-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 0 40px;
}
.ecohl-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}
.ecohl-view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.ecohl-view-all::after { content: " →"; }
.ecohl-view-all:hover { color: var(--orange); }

/* ─── HERO ────────────────────────────────────────────────────────────────── */
.ecohl-hero {
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
    padding: 80px 24px 72px;
    position: relative;
    overflow: hidden;
}
.ecohl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.ecohl-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .ecohl-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.ecohl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    color: #D8F3DC;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.2);
    letter-spacing: .3px;
}
.ecohl-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -.5px;
}
.ecohl-hero h1 span { color: #74C69D; }
.ecohl-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,.80);
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 480px;
}
.ecohl-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.ecohl-hero-ctas .btn-white {
    background: #fff !important;
    color: var(--green-dark) !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-sm);
    padding: 13px 28px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 48px;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.ecohl-hero-ctas .btn-white:hover {
    background: #F0FFF4 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.ecohl-hero-ctas .btn-ghost {
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    padding: 12px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 48px;
    transition: all var(--transition);
}
.ecohl-hero-ctas .btn-ghost:hover {
    background: rgba(255,255,255,.22) !important;
    border-color: rgba(255,255,255,.5);
}
.ecohl-hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.ecohl-hero-stat { text-align: left; }
.ecohl-hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.ecohl-hero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,.60);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 3px;
    display: block;
}

/* Featured card inside hero */
.ecohl-hero-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.ecohl-hero-card-img {
    background: linear-gradient(135deg, #40916C, #74C69D);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}
.ecohl-hero-card-body { padding: 20px 22px 22px; }
.ecohl-hero-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green-dark);
    background: var(--green-tint);
    padding: 3px 10px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 10px;
}
.ecohl-hero-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0 0 10px;
}
.ecohl-hero-card-stars { color: #F59E0B; font-size: 15px; margin-bottom: 14px; }
.ecohl-hero-card-stars span { color: var(--text-muted); font-size: 13px; margin-left: 4px; }
.ecohl-hero-card-cta {
    display: block;
    background: var(--orange);
    color: #fff !important;
    text-align: center;
    padding: 11px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background var(--transition);
}
.ecohl-hero-card-cta:hover { background: var(--orange-dark); }

/* ─── TRUST BAR ───────────────────────────────────────────────────────────── */
.ecohl-trust-bar {
    background: var(--text-dark);
    padding: 18px 24px;
}
.ecohl-trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ecohl-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}
.ecohl-trust-item svg,
.ecohl-trust-item .icon { color: var(--green-light); font-size: 16px; }

/* ─── REVIEW CARDS GRID ───────────────────────────────────────────────────── */
.ecohl-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ecohl-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .ecohl-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ecohl-grid-3,
    .ecohl-grid-2 { grid-template-columns: 1fr; }
}

.ecohl-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.ecohl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.ecohl-card-thumb {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}
.ecohl-card-thumb-review  { background: linear-gradient(135deg, #E8F5E9, #B7E4C7); }
.ecohl-card-thumb-guide   { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.ecohl-card-thumb-tips    { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.ecohl-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 4px 10px;
    border-radius: 100px;
}
.ecohl-card-cat-review  { background: var(--green-tint); color: var(--green-dark); }
.ecohl-card-cat-guide   { background: #FFF3E0; color: #E65100; }
.ecohl-card-cat-tips    { background: #E3F2FD; color: #1565C0; }
.ecohl-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ecohl-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.ecohl-stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; }
.ecohl-score { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.ecohl-verdict { font-size: 11px; color: var(--text-muted); }
.ecohl-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 0 0 10px;
    text-decoration: none;
    display: block;
}
.ecohl-card-title:hover { color: var(--green-dark); }
.ecohl-card-excerpt {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ecohl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.ecohl-card-price { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.ecohl-card-price span { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.ecohl-card-btn {
    background: var(--orange);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.ecohl-card-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.ecohl-card-btn-outline {
    background: transparent;
    color: var(--green-dark) !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--green-dark);
    text-decoration: none;
    transition: all var(--transition);
}
.ecohl-card-btn-outline:hover {
    background: var(--green-dark);
    color: #fff !important;
}

/* ─── EDITOR'S TOP PICKS ──────────────────────────────────────────────────── */
.ecohl-picks-bg {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ecohl-pick-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all var(--transition);
}
.ecohl-pick-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
    transform: translateY(-2px);
}
.ecohl-pick-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ecohl-pick-rank-gold { background: #F59E0B; }
.ecohl-pick-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #E8F5E9, #B7E4C7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}
.ecohl-pick-info { flex: 1; min-width: 0; }
.ecohl-pick-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--green-dark);
    background: var(--green-tint);
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 6px;
}
.ecohl-pick-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 5px;
    display: block;
    text-decoration: none;
}
.ecohl-pick-title:hover { color: var(--green-dark); }
.ecohl-pick-stars { color: #F59E0B; font-size: 13px; margin-bottom: 8px; }
.ecohl-pick-stars em { color: var(--text-muted); font-size: 12px; font-style: normal; margin-left: 4px; }
.ecohl-pick-why { font-size: 13px; color: var(--text-body); line-height: 1.5; margin: 0 0 12px; }
.ecohl-pick-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ecohl-pick-price { font-size: 15px; font-weight: 800; color: var(--text-dark); }

/* ─── CATEGORY TILES ──────────────────────────────────────────────────────── */
.ecohl-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 768px) { .ecohl-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .ecohl-cat-grid { grid-template-columns: 1fr 1fr; } }
.ecohl-cat-tile {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 16px 24px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all var(--transition);
}
.ecohl-cat-tile:hover {
    border-color: var(--green-light);
    background: #F0FFF4;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.ecohl-cat-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}
.ecohl-cat-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}
.ecohl-cat-count {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

/* ─── NEWSLETTER ──────────────────────────────────────────────────────────── */
.ecohl-newsletter {
    background: linear-gradient(135deg, #1B4332, #2D6A4F);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ecohl-newsletter::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.ecohl-newsletter h2 { color: #fff; margin: 0 0 10px; font-size: 26px; }
.ecohl-newsletter p  { color: rgba(255,255,255,.75); margin: 0 0 28px; font-size: 15px; }
.ecohl-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}
.ecohl-newsletter-form input {
    flex: 1;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 15px;
    outline: none;
    min-height: 48px;
}
.ecohl-newsletter-form button {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    min-height: 48px;
    transition: background var(--transition);
}
.ecohl-newsletter-form button:hover { background: var(--orange-dark); }
@media (max-width: 480px) {
    .ecohl-newsletter { padding: 36px 24px; }
    .ecohl-newsletter-form { flex-direction: column; }
}

/* ─── FTC DISCLOSURE ──────────────────────────────────────────────────────── */
.ftc-disclosure {
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    padding: 10px 16px;
    font-size: 13px;
    color: #92400E;
    border-radius: 0 4px 4px 0;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ─── SINGLE POST / REVIEW ────────────────────────────────────────────────── */
.verdict-box {
    background: #F0FFF4;
    border: 2px solid var(--green-light);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin: 32px 0;
}
.pros-cons-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}
@media (max-width: 600px) { .pros-cons-wrap { grid-template-columns: 1fr; } }
.pros-box, .cons-box {
    padding: 20px 22px;
    border-radius: var(--radius-sm);
}
.pros-box { background: #E8F5E9; border-left: 4px solid var(--green-dark); }
.cons-box { background: #FFF3F0; border-left: 4px solid #EF4444; }
.pros-box h4 { color: #1B4332; margin-top: 0; font-size: 15px; }
.cons-box h4 { color: #B91C1C; margin-top: 0; font-size: 15px; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box ul li, .cons-box ul li { padding: 5px 0; font-size: 14px; line-height: 1.5; }
.pros-box ul li::before { content: "✅ "; }
.cons-box ul li::before { content: "❌ "; }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer { background: #1B4332 !important; color: #B7D5C4; }
.site-footer a { color: var(--green-light); }
.site-footer a:hover { color: #fff; }
.footer-bottom-wrap { background: #0D2B1D !important; color: #6EAD8A; font-size: 13px; }

/* ─── HEADER ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) { .menu-toggle { min-width: 44px; min-height: 44px; } }
.kadence-breadcrumbs { font-size: 13px; color: var(--text-muted); }
.kadence-breadcrumbs a { color: var(--green-dark); }

/* ─── COMPARISON TABLE ────────────────────────────────────────────────────── */
.wp-block-table table { font-size: 15px; width: 100%; border-collapse: collapse; }
.wp-block-table th { background: var(--green-dark) !important; color: #fff; padding: 12px 16px; text-align: left; }
.wp-block-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.wp-block-table tr:hover td { background: #F0FFF4; }

/* ═══════════════════════════════════════════════
   CUSTOM HEADER
════════════════════════════════════════════════ */

/* ─── Top Bar ────────────────────────────────── */
.ecohl-topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.75);
    font-size: 13px;
    padding: 8px 24px;
    line-height: 1;
}
.ecohl-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.ecohl-topbar-left strong { color: #fff; }
.ecohl-topbar-right { display: flex; align-items: center; gap: 10px; }
.ecohl-topbar-right a { color: rgba(255,255,255,.7); text-decoration: none; transition: color var(--transition); }
.ecohl-topbar-right a:hover { color: #fff; }
.ecohl-topbar-sep { color: rgba(255,255,255,.3); }
@media (max-width: 768px) { .ecohl-topbar { display: none; } }

/* ─── Main Header ────────────────────────────── */
.ecohl-header { position: sticky; top: 0; z-index: 1000; background: #fff; }
.ecohl-header-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s ease;
}
.ecohl-header.is-sticky .ecohl-header-main {
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.ecohl-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
    justify-content: space-between;
}

/* ─── Logo ───────────────────────────────────── */
.ecohl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.ecohl-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(45,106,79,.3);
}
.ecohl-logo-text { display: flex; flex-direction: column; line-height: 1; }
.ecohl-logo-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -.3px;
}
.ecohl-logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ─── Desktop Nav ────────────────────────────── */
.ecohl-nav { flex: 1; }
.ecohl-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.ecohl-nav-item { position: relative; }
.ecohl-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-body);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.ecohl-nav-link:hover,
.ecohl-nav-link.is-active { color: var(--green-dark); background: var(--green-tint); }
.ecohl-nav-chevron { transition: transform .2s; }
.ecohl-nav-item:hover .ecohl-nav-chevron { transform: rotate(180deg); }

/* ─── Dropdown ───────────────────────────────── */
.ecohl-dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 100;
    pointer-events: none;
}
.ecohl-nav-item:hover .ecohl-dropdown,
.ecohl-nav-item:focus-within .ecohl-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.ecohl-dropdown-inner { display: grid; grid-template-columns: 1fr auto; gap: 0; }
.ecohl-dropdown-col { padding: 20px; }
.ecohl-dropdown-col:first-child { border-right: 1px solid var(--border); }
.ecohl-dropdown-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.ecohl-dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13.5px;
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.4;
    transition: background var(--transition), color var(--transition);
}
.ecohl-dropdown-link:hover { background: var(--green-tint); color: var(--green-dark); }
.ecohl-dropdown-icon { flex-shrink: 0; font-size: 16px; line-height: 1.4; }
.ecohl-dropdown-all {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
    padding: 6px 10px;
}
.ecohl-dropdown-all:hover { color: var(--orange); }
.ecohl-dropdown-featured { background: var(--bg-light); border-radius: 0 var(--radius-md) var(--radius-md) 0; min-width: 180px; }
.ecohl-dropdown-pick { display: flex; gap: 12px; align-items: flex-start; }
.ecohl-dropdown-pick-icon { font-size: 28px; line-height: 1; }
.ecohl-dropdown-pick-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); }
.ecohl-dropdown-pick-name { font-size: 14px; font-weight: 700; color: var(--text-dark); margin: 3px 0; }
.ecohl-dropdown-pick-score { font-size: 12px; color: #F59E0B; }

/* ─── Header Actions ─────────────────────────── */
.ecohl-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ecohl-header-cta {
    background: var(--orange);
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 2px 8px rgba(255,107,53,.3);
}
.ecohl-header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ─── Mobile Toggle ──────────────────────────── */
.ecohl-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
}
.ecohl-mobile-toggle:hover { border-color: var(--green-dark); }
.ecohl-toggle-bar {
    width: 20px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
    display: block;
}
.ecohl-mobile-toggle.is-open .ecohl-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ecohl-mobile-toggle.is-open .ecohl-toggle-bar:nth-child(2) { opacity: 0; }
.ecohl-mobile-toggle.is-open .ecohl-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
    .ecohl-nav { display: none; }
    .ecohl-header-cta { display: none; }
    .ecohl-mobile-toggle { display: flex; }
}

/* ─── Mobile Drawer ──────────────────────────── */
.ecohl-mobile-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100dvh;
    background: #fff;
    z-index: 2000;
    overflow-y: auto;
    transition: right .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,.15);
    padding: 80px 0 32px;
}
.ecohl-mobile-menu.is-open { right: 0; }
.ecohl-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}
.ecohl-overlay.is-visible { opacity: 1; visibility: visible; }
.ecohl-mobile-nav { list-style: none; margin: 0; padding: 0; }
.ecohl-mobile-nav > li { border-bottom: 1px solid var(--border); }
.ecohl-mobile-nav > li > a,
.ecohl-mobile-parent {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 24px;
    font-size: 15px; font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    width: 100%; background: none; border: none; cursor: pointer;
    text-align: left;
}
.ecohl-mobile-nav > li > a:hover,
.ecohl-mobile-parent:hover { color: var(--green-dark); background: var(--green-tint); }
.ecohl-mobile-sub {
    list-style: none; margin: 0; padding: 0 0 8px;
    background: var(--bg-light);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
}
.ecohl-mobile-sub li a {
    display: block; padding: 10px 24px 10px 32px;
    font-size: 14px; color: var(--text-body);
    text-decoration: none;
}
.ecohl-mobile-sub li a:hover { color: var(--green-dark); }
.ecohl-mobile-cta-wrap { padding: 20px 24px; border-bottom: none; }
.ecohl-mobile-cta {
    display: block; text-align: center;
    background: var(--orange); color: #fff;
    padding: 13px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 15px;
    text-decoration: none;
}

/* ═══════════════════════════════════════════════
   CUSTOM FOOTER
════════════════════════════════════════════════ */

.ecohl-footer { background: #1A3326; }

/* ─── Main Footer ────────────────────────────── */
.ecohl-footer-main { padding: 64px 24px 48px; }
.ecohl-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}
@media (max-width: 900px) {
    .ecohl-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .ecohl-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* Brand column */
.ecohl-footer-logo {
    display: flex; align-items: center;
    gap: 10px; text-decoration: none; margin-bottom: 16px;
}
.ecohl-footer-logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.ecohl-footer-logo-name { display: block; font-size: 18px; font-weight: 800; color: #fff; }
.ecohl-footer-logo-tag  { display: block; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }
.ecohl-footer-about {
    font-size: 13.5px; color: rgba(255,255,255,.55);
    line-height: 1.7; margin: 0 0 18px;
}
.ecohl-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.ecohl-footer-badge {
    font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    padding: 4px 10px; border-radius: 100px;
}

/* Link columns */
.ecohl-footer-heading {
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    color: rgba(255,255,255,.4);
    margin: 0 0 16px;
}
.ecohl-footer-links { list-style: none; margin: 0; padding: 0; }
.ecohl-footer-links li { margin-bottom: 2px; }
.ecohl-footer-links a {
    display: flex; align-items: flex-start;
    gap: 6px;
    font-size: 13.5px; color: rgba(255,255,255,.6);
    text-decoration: none; padding: 5px 0;
    line-height: 1.4;
    transition: color var(--transition);
}
.ecohl-footer-links a:hover { color: #fff; }
.ecohl-footer-link-all {
    font-size: 13px; font-weight: 700;
    color: var(--green-light) !important;
    margin-top: 8px;
    display: inline-block !important;
    padding: 0 !important;
}
.ecohl-footer-link-all:hover { color: #fff !important; }

/* Newsletter column */
.ecohl-footer-newsletter-desc { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0 0 16px; }
.ecohl-footer-form { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.ecohl-footer-input {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: border-color var(--transition);
}
.ecohl-footer-input::placeholder { color: rgba(255,255,255,.35); }
.ecohl-footer-input:focus { border-color: var(--green-light); }
.ecohl-footer-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background var(--transition);
}
.ecohl-footer-btn:hover { background: var(--orange-dark); }
.ecohl-footer-form-note { font-size: 11px; color: rgba(255,255,255,.3); margin: 0 0 20px; }
.ecohl-footer-amazon {
    font-size: 11.5px;
    color: rgba(255,255,255,.35);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 16px;
}
.ecohl-footer-amazon strong { color: rgba(255,255,255,.5); }

/* ─── Bottom Bar ─────────────────────────────── */
.ecohl-footer-bottom {
    background: #0F1F17;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.ecohl-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ecohl-footer-copyright {
    font-size: 12.5px;
    color: rgba(255,255,255,.35);
}
.ecohl-footer-copyright a { color: rgba(255,255,255,.45); text-decoration: none; }
.ecohl-footer-copyright a:hover { color: #fff; }
.ecohl-footer-ftc {
    font-size: 12px;
    color: rgba(255,255,255,.3);
    max-width: 500px;
    text-align: right;
}
.ecohl-footer-ftc strong { color: rgba(255,255,255,.45); }
@media (max-width: 600px) {
    .ecohl-footer-bottom-inner { flex-direction: column; text-align: center; }
    .ecohl-footer-ftc { text-align: center; }
    .site-container, 
    .site-header-row-layout-contained, 
    .site-footer-row-layout-contained, 
    .entry-hero-layout-contained, 
    .comments-area, .alignfull > .wp-block-cover__inner-container, 
    .alignwide > .wp-block-cover__inner-container { padding: 0 10px;}
}
.wp-block-table tr:first-child td { font-weight: 700; background: #F0FFF4; }

/* ============================================================
   SINGLE POST — FULL PAGE LAYOUT
   ============================================================ */

/* Reading Progress Bar */
.ecohl-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 9999;
}
.ecohl-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green-mid), var(--orange));
    transition: width .1s linear;
}

/* Page wrapper */
.ecohl-single-wrap {
    background: var(--bg-off);
    min-height: 60vh;
}
.ecohl-single-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* ── Article Column ─────────────────────────────────────── */
.ecohl-article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
    overflow: hidden;
}

/* Post Header */
.ecohl-post-header {
    padding: 36px 44px 28px;
    border-bottom: 1px solid var(--border);
}

/* Breadcrumb */
.ecohl-post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.ecohl-post-breadcrumb a { color: var(--green-mid); text-decoration: none; }
.ecohl-post-breadcrumb a:hover { color: var(--green-dark); }
.ecohl-post-breadcrumb span:last-child { color: var(--text-body); }

/* Category badge + meta row */
.ecohl-post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.ecohl-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--green-tint);
    color: var(--green-dark);
}
.ecohl-cat-badge.ecohl-cat-review  { background: #EFF6FF; color: #1D4ED8; }
.ecohl-cat-badge.ecohl-cat-guide   { background: #FFF7ED; color: #C2410C; }
.ecohl-cat-badge.ecohl-cat-tips    { background: var(--green-tint); color: var(--green-dark); }
.ecohl-read-time {
    font-size: 12.5px;
    color: var(--text-muted);
}
.ecohl-post-header-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.ecohl-stars-gold { color: #F59E0B; letter-spacing: 1px; }

/* H1 */
.ecohl-post-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 0 0 20px;
}

/* Author row */
.ecohl-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.ecohl-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ecohl-author-avatar {
    flex-shrink: 0;
}
.ecohl-avatar-img {
    border-radius: 50%;
    display: block;
}
.ecohl-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ecohl-author-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
}
.ecohl-post-dates {
    font-size: 12px;
    color: var(--text-muted);
}

/* Share buttons (top) */
.ecohl-share-top {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ecohl-share-label {
    font-size: 12px;
    color: var(--text-muted);
}
.ecohl-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.ecohl-share-btn:hover { opacity: .8; transform: translateY(-1px); }
.ecohl-share-x    { background: #111; color: #fff; }
.ecohl-share-fb   { background: #1877F2; color: #fff; }
.ecohl-share-mail { background: var(--green-dark); color: #fff; }

/* FTC Bar */
.ecohl-ftc-bar {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    padding: 14px 44px;
    font-size: 13px;
    color: #78350F;
    line-height: 1.5;
}
.ecohl-ftc-bar a { color: #92400E; font-weight: 600; }
.ecohl-ftc-icon { flex-shrink: 0; font-size: 16px; }

/* Table of Contents */
.ecohl-toc {
    margin: 0;
    border-bottom: 1px solid var(--border);
    background: #F8FFF9;
}
.ecohl-toc-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 16px 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
}
.ecohl-toc-toggle:hover { color: var(--green-mid); }
.ecohl-toc-chevron { margin-left: auto; transition: transform .25s; color: var(--text-muted); }
.ecohl-toc-icon { font-size: 16px; }
.ecohl-toc-list {
    list-style: none;
    margin: 0;
    padding: 0 44px 20px 44px;
    counter-reset: toc;
}
.ecohl-toc-list li {
    margin: 0;
    padding: 0;
}
.ecohl-toc-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px dashed var(--border);
    transition: color .2s;
}
.ecohl-toc-list li:last-child a { border-bottom: none; }
.ecohl-toc-list a:hover { color: var(--green-mid); }
.ecohl-toc-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Post Body */
.ecohl-post-body {
    padding: 40px 44px;
    font-size: 16.5px;
    line-height: 1.78;
    color: var(--text-body);
}
.ecohl-post-body h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-tint);
}
.ecohl-post-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 32px 0 12px;
}
.ecohl-post-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.ecohl-post-body p { margin: 0 0 20px; }
.ecohl-post-body ul, .ecohl-post-body ol {
    padding-left: 24px;
    margin: 0 0 20px;
}
.ecohl-post-body li { margin-bottom: 8px; }
.ecohl-post-body a { color: var(--green-mid); font-weight: 500; }
.ecohl-post-body a:hover { color: var(--green-dark); }
.ecohl-post-body strong { color: var(--text-dark); }
.ecohl-post-body img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    margin: 8px 0 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.ecohl-post-body blockquote {
    border-left: 4px solid var(--green-light);
    padding: 12px 20px;
    margin: 24px 0;
    background: var(--green-tint);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--green-dark);
}

/* Verdict box (from content) */
.ecohl-post-body .ecohl-verdict {
    background: linear-gradient(135deg, #F0FFF4, #D8F3DC);
    border: 2px solid var(--green-light);
    border-radius: 16px;
    padding: 0 10px;
    margin: 0;
}
.ecohl-post-body .ecohl-verdict-title {
    font-weight: 800;
    font-size: 1rem;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

/* Pros/Cons (from content) */
.ecohl-post-body .ecohl-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}
.ecohl-post-body .ecohl-pros,
.ecohl-post-body .ecohl-cons {
    border-radius: 12px;
    padding: 20px 22px;
}
.ecohl-post-body .ecohl-pros { background: #F0FFF4; border: 1.5px solid #86EFAC; }
.ecohl-post-body .ecohl-cons { background: #FFF5F5; border: 1.5px solid #FCA5A5; }

/* Buy button in content */
.ecohl-post-body .ecohl-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15.5px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    margin: 8px 4px;
}
.ecohl-post-body .ecohl-buy-btn:hover {
    background: var(--orange-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Tags */
.ecohl-post-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 20px 44px;
    border-top: 1px solid var(--border);
}
.ecohl-tags-label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }
.ecohl-tag {
    display: inline-flex;
    padding: 3px 12px;
    border-radius: 99px;
    background: var(--bg-off);
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-body);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.ecohl-tag:hover { background: var(--green-tint); color: var(--green-dark); border-color: var(--green-light); }

/* Bottom share */
.ecohl-share-bottom {
    padding: 28px 44px;
    border-top: 1px solid var(--border);
    background: #F8FFF9;
    text-align: center;
}
.ecohl-share-bottom .ecohl-share-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.ecohl-share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ecohl-share-full {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
}
.ecohl-share-full:hover { opacity: .85; transform: translateY(-1px); }
.ecohl-share-full.ecohl-share-x   { background: #111; color: #fff; }
.ecohl-share-full.ecohl-share-fb  { background: #1877F2; color: #fff; }
.ecohl-share-full.ecohl-share-pin { background: #E60023; color: #fff; }

/* Author Bio */
.ecohl-author-bio {
    display: flex;
    gap: 20px;
    padding: 32px 44px;
    border-top: 1px solid var(--border);
    background: #fff;
    align-items: flex-start;
}
.ecohl-bio-img {
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    border: 3px solid var(--green-tint);
}
.ecohl-author-bio-content { flex: 1; }
.ecohl-author-bio-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.ecohl-author-bio-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0 0 10px;
}
.ecohl-author-bio-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
}
.ecohl-author-bio-link:hover { color: var(--green-dark); }

/* ── Sticky Sidebar ─────────────────────────────────────── */
.ecohl-single-sidebar {
    /* stays in grid column */
}
.ecohl-sidebar-sticky {
    position: sticky;
    top: 96px; /* below sticky header */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Verdict card */
.ecohl-sidebar-verdict {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    padding: 24px 22px;
    border-top: 4px solid var(--green-mid);
}
.ecohl-sidebar-verdict-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.ecohl-sidebar-verdict-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
}
.ecohl-sidebar-rating-big {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.ecohl-rating-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    color: var(--green-dark);
    line-height: 1;
}
.ecohl-rating-max {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}
.ecohl-sidebar-stars {
    font-size: 22px;
    color: #F59E0B;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Rating breakdown bars */
.ecohl-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ecohl-rbar {
    display: grid;
    grid-template-columns: 100px 1fr 36px;
    align-items: center;
    gap: 10px;
}
.ecohl-rbar-label { font-size: 12.5px; color: var(--text-body); }
.ecohl-rbar-track {
    height: 6px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
}
.ecohl-rbar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-mid), var(--green-light));
    border-radius: 99px;
    transition: width .6s ease;
}
.ecohl-rbar-val { font-size: 12px; font-weight: 700; color: var(--green-dark); text-align: right; }

/* CTA box */
.ecohl-sidebar-cta {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    color: #fff;
}
.ecohl-sidebar-cta-price {
    margin-bottom: 14px;
}
.ecohl-sidebar-cta-from {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .7;
    margin-bottom: 2px;
}
.ecohl-sidebar-cta-source {
    font-size: 16px;
    font-weight: 700;
}
.ecohl-sidebar-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s, transform .15s;
    margin-bottom: 10px;
}
.ecohl-sidebar-cta-btn:hover {
    background: var(--orange-dark);
    color: #fff;
    transform: translateY(-2px);
}
.ecohl-sidebar-cta-note {
    font-size: 11.5px;
    opacity: .65;
    margin: 0;
}

/* Sidebar TOC */
.ecohl-sidebar-toc {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 20px;
}
.ecohl-sidebar-toc-title {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.ecohl-sidebar-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: stoc;
}
.ecohl-sidebar-toc-list li {
    counter-increment: stoc;
}
.ecohl-sidebar-toc-list a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 12.5px;
    color: var(--text-body);
    text-decoration: none;
    border-bottom: 1px dashed var(--border);
    transition: color .2s;
    line-height: 1.45;
}
.ecohl-sidebar-toc-list li:last-child a { border-bottom: none; }
.ecohl-sidebar-toc-list a::before {
    content: counter(stoc);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green-tint);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.ecohl-sidebar-toc-list a:hover { color: var(--green-mid); }

/* Sidebar share */
.ecohl-sidebar-share {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 18px 20px;
}
.ecohl-sidebar-share-title {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.ecohl-sidebar-share-btns {
    display: flex;
    gap: 8px;
}
.ecohl-ss-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
}
.ecohl-ss-btn:hover { opacity: .8; transform: translateY(-1px); }
.ecohl-ss-x   { background: #111; color: #fff; }
.ecohl-ss-fb  { background: #1877F2; color: #fff; }
.ecohl-ss-pin { background: #E60023; color: #fff; }
.ecohl-ss-mail{ background: var(--green-dark); color: #fff; font-size: 16px; }

/* ── Related Posts ──────────────────────────────────────── */
.ecohl-related {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}
.ecohl-related-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}
.ecohl-related-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 32px;
}
.ecohl-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Mobile Sticky Bottom CTA ───────────────────────────── */
.ecohl-mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    transform: translateY(100%);
    transition: transform .3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.ecohl-mobile-cta-bar.is-visible { transform: translateY(0); }
.ecohl-mobile-cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--green-dark);
    color: #fff;
}
.ecohl-mobile-cta-bar-title {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.ecohl-mobile-cta-bar-stars {
    font-size: 11px;
    color: #FCD34D;
    margin-top: 2px;
}
.ecohl-mobile-cta-bar-btn {
    flex-shrink: 0;
    background: var(--orange);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}
.ecohl-mobile-cta-bar-btn:hover { background: var(--orange-dark); color: #fff; }

/* ── Responsive — Single Post ───────────────────────────── */
@media (max-width: 1060px) {
    .ecohl-single-container {
        grid-template-columns: 1fr;
        max-width: 780px;
    }
    .ecohl-single-sidebar {
        order: -1; /* sidebar on top mobile */
    }
    .ecohl-sidebar-sticky {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .ecohl-sidebar-verdict { grid-column: 1 / -1; }
    .ecohl-mobile-cta-bar { display: block; }
}

@media (max-width: 680px) {
    .ecohl-post-header { padding: 24px 20px 20px; }
    .ecohl-ftc-bar     { padding: 12px 20px; }
    .ecohl-toc-toggle  { padding: 14px 20px; }
    .ecohl-toc-list    { padding: 0 20px 16px 20px; }
    .ecohl-post-body   { padding: 28px 20px; font-size: 15.5px; }
    .ecohl-post-tags   { padding: 16px 20px; }
    .ecohl-share-bottom{ padding: 22px 20px; }
    .ecohl-author-bio  { padding: 24px 20px; flex-direction: column; }
    .ecohl-post-title  { font-size: 1.55rem; }
    .ecohl-share-top   { display: none; } /* avoid clutter on small phones */
    .ecohl-post-meta   { flex-direction: column; align-items: flex-start; }
    .ecohl-sidebar-sticky { grid-template-columns: 1fr; }
    .ecohl-related-grid  { grid-template-columns: 1fr; }
    .ecohl-post-body .ecohl-pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .ecohl-single-container { padding: 20px 12px 40px; }
    .ecohl-share-buttons { flex-direction: column; align-items: center; }
}

/* ============================================================
   SHORTCODE ELEMENTS
   ============================================================ */

/* [cta] — nút mua hàng */
.ecohl-cta-wrap {
    text-align: center;
    margin: 28px 0;
}
.ecohl-cta-note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 7px;
}

/* [verdict] — hộp kết luận */
.ecohl-verdict {
    background: linear-gradient(135deg, #F0FFF4, #D8F3DC);
    border: 2px solid var(--green-light);
    border-radius: 16px;
    padding: 0 10px;
    margin: 0;
}
.ecohl-verdict-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.ecohl-verdict-score {
    font-size: 22px;
    color: #F59E0B;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.ecohl-verdict-score strong {
    font-size: 16px;
    color: var(--text-dark);
}
.ecohl-verdict-body {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-body);
}
.ecohl-verdict-body p:last-child { margin-bottom: 0; }

/* [proscons] + [pros] + [cons] */
.ecohl-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}
.ecohl-pros,
.ecohl-cons {
    border-radius: 12px;
    padding: 20px 22px;
}
.ecohl-pros { background: #F0FFF4; border: 1.5px solid #86EFAC; }
.ecohl-cons { background: #FFF5F5; border: 1.5px solid #FCA5A5; }
.ecohl-pc-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.ecohl-pros ul,
.ecohl-cons ul {
    margin: 0;
    padding-left: 18px;
}
.ecohl-pros li,
.ecohl-cons li {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 6px;
    color: var(--text-body);
}
@media (max-width: 580px) {
    .ecohl-pros-cons { grid-template-columns: 1fr; }
}

/* [rating] — inline rating bar */
.ecohl-inline-rating {
    display: grid;
    grid-template-columns: 130px 1fr 50px;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
}
.ecohl-inline-rating-label {
    font-size: 13.5px;
    color: var(--text-body);
}

/* [highlight] — info/tip/warning box */
.ecohl-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 14.5px;
    line-height: 1.6;
}
.ecohl-highlight-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ecohl-highlight-info    { background: #EFF6FF; border-left: 4px solid #3B82F6; }
.ecohl-highlight-tip     { background: #F0FFF4; border-left: 4px solid var(--green-light); }
.ecohl-highlight-warning { background: #FFFBEB; border-left: 4px solid #F59E0B; }
.ecohl-highlight p:last-child { margin-bottom: 0; }

/* ============================================================
   SIDEBAR WIDGETS — contextual blocks
   ============================================================ */

/* Verdict header extension */
.ecohl-sidebar-verdict-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--green-mid);
    background: var(--green-tint);
    padding: 2px 8px;
    border-radius: 99px;
}

/* Related posts list */
.ecohl-sidebar-posts-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}
.ecohl-sidebar-post-item {
    border-bottom: 1px dashed var(--border);
}
.ecohl-sidebar-post-item:last-child { border-bottom: none; }
.ecohl-sidebar-post-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    font-size: 12.5px;
    color: var(--text-body);
    text-decoration: none;
    line-height: 1.4;
    transition: color .2s;
}
.ecohl-sidebar-post-link:hover { color: var(--green-mid); }
.ecohl-sidebar-post-title { flex: 1; }
.ecohl-sidebar-post-score {
    flex-shrink: 0;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green-dark);
    white-space: nowrap;
}
.ecohl-sidebar-view-all {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
    transition: color .2s;
}
.ecohl-sidebar-view-all:hover { color: var(--orange); }

/* Our Promise widget */
.ecohl-widget-promise {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 20px;
    text-align: center;
}
.ecohl-widget-promise-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}
.ecohl-widget-promise-title {
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.ecohl-widget-promise-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    text-align: left;
}
.ecohl-widget-promise-list li {
    font-size: 12.5px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
    line-height: 1.4;
}
.ecohl-widget-promise-list li::before {
    content: "✔ ";
    color: var(--green-mid);
    font-weight: 700;
}
.ecohl-widget-promise-list li:last-child { border-bottom: none; }
.ecohl-widget-promise-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green-dark);
    text-decoration: none;
    transition: color .2s;
}
.ecohl-widget-promise-link:hover { color: var(--orange); }

/* Newsletter sidebar widget */
.ecohl-widget-newsletter {
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    color: #fff;
}
.ecohl-widget-newsletter-icon {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}
.ecohl-widget-newsletter-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.ecohl-widget-newsletter-desc {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    line-height: 1.55;
    margin: 0 0 14px;
}
.ecohl-widget-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ecohl-widget-newsletter-input {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 13px;
    padding: 10px 12px;
    outline: none;
    text-align: center;
    transition: border-color .2s;
    width: 100%;
    box-sizing: border-box;
}
.ecohl-widget-newsletter-input::placeholder { color: rgba(255,255,255,.45); }
.ecohl-widget-newsletter-input:focus { border-color: rgba(255,255,255,.5); }
.ecohl-widget-newsletter-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
}
.ecohl-widget-newsletter-btn:hover { background: var(--orange-dark); }
.ecohl-widget-newsletter-note {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin: 8px 0 0;
}

/* ============================================================
   CATEGORY ARCHIVE PAGE
   ============================================================ */

/* ── Hero Banner ──────────────────────────────────────────── */
.ecohl-cat-hero {
    padding: 52px 24px 48px;
    position: relative;
    overflow: hidden;
}
.ecohl-cat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.ecohl-cat-hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.ecohl-cat-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
}
.ecohl-cat-breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
}
.ecohl-cat-breadcrumb a:hover { color: #fff; }
.ecohl-cat-hero-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}
.ecohl-cat-hero-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.9rem, 5vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
}
.ecohl-cat-hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.ecohl-cat-hero-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ecohl-cat-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.9);
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
    backdrop-filter: blur(4px);
}

/* ── Toolbar ──────────────────────────────────────────────── */
.ecohl-cat-toolbar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}
.ecohl-cat-toolbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.ecohl-cat-toolbar-count {
    font-size: 13.5px;
    color: var(--text-muted);
}
.ecohl-cat-toolbar-count strong { color: var(--text-dark); }
.ecohl-cat-toolbar-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ecohl-cat-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 600;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--text-body);
    text-decoration: none;
    transition: all .2s;
}
.ecohl-cat-tag-pill:hover {
    background: var(--green-tint);
    border-color: var(--green-light);
    color: var(--green-dark);
}

/* ── Main content area ────────────────────────────────────── */
.ecohl-cat-wrap {
    background: var(--bg-light);
    padding: 40px 20px 60px;
}
.ecohl-cat-content {
    max-width: 1180px;
    margin: 0 auto;
}

/* ── Post Grid ────────────────────────────────────────────── */
.ecohl-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
@media (max-width: 960px) {
    .ecohl-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
    .ecohl-cat-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Card extensions ──────────────────────────────────────── */
.ecohl-cat-card {
    /* inherits all .ecohl-card styles */
}
.ecohl-cat-thumb-link {
    display: block;
    text-decoration: none;
}
.ecohl-cat-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--green-tint);
}
.ecohl-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.ecohl-cat-card:hover .ecohl-cat-img { transform: scale(1.04); }
/* Category badge overlaid on real image */
.ecohl-cat-img-wrap .ecohl-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
}
/* Card meta row: date + read time */
.ecohl-cat-card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.ecohl-cat-meta-dot { opacity: .5; }
/* Score badge in card footer */
.ecohl-cat-card-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    background: var(--green-tint);
    padding: 3px 10px;
    border-radius: 99px;
}

/* ── Pagination ───────────────────────────────────────────── */
.ecohl-cat-pagination { margin-top: 0; }
.ecohl-cat-pagination-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.ecohl-cat-pagination-inner .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-body);
    transition: all .2s;
}
.ecohl-cat-pagination-inner .page-numbers:hover {
    background: var(--green-tint);
    border-color: var(--green-light);
    color: var(--green-dark);
}
.ecohl-cat-pagination-inner .page-numbers.current {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}
.ecohl-cat-pagination-inner .page-numbers.dots {
    border: none;
    background: none;
    pointer-events: none;
    color: var(--text-muted);
}

/* ── Empty state ──────────────────────────────────────────── */
.ecohl-cat-empty {
    text-align: center;
    padding: 64px 24px;
}
.ecohl-cat-empty-icon { font-size: 56px; margin-bottom: 20px; }
.ecohl-cat-empty-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}
.ecohl-cat-empty-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 24px;
}

/* ── Newsletter wrap ──────────────────────────────────────── */
.ecohl-cat-newsletter-wrap {
    background: #fff;
    padding: 48px 24px 64px;
    border-top: 1px solid var(--border);
}
.ecohl-cat-newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
}

/* ── Mobile tweaks ────────────────────────────────────────── */
@media (max-width: 640px) {
    .ecohl-cat-hero { padding: 36px 16px 32px; }
    .ecohl-cat-hero-icon { font-size: 36px; }
    .ecohl-cat-hero-chips { gap: 8px; }
    .ecohl-cat-hero-chip { font-size: 11.5px; padding: 4px 10px; }
    .ecohl-cat-toolbar-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ecohl-cat-wrap { padding: 24px 12px 40px; }
    .ecohl-cat-img-wrap { height: 180px; }
    .ecohl-cat-newsletter-wrap { padding: 36px 16px 48px; }
}



.home .page-hero-section {
    display: none;
}

.home .content-area {
    margin-top: 0;
}

/* ─── FEATURED IMAGE IN HOMEPAGE CARDS ───────────────────────────────────────
   .ecohl-card-thumb-img: khi post có featured image thay vì emoji
   Ảnh dùng position:absolute để fill đầy vùng thumbnail (170px),
   tương tự category archive (.ecohl-cat-img).
──────────────────────────────────────────────────────────────────────────── */
.ecohl-card-thumb-img {
    overflow: hidden;
    background: var(--green-tint);
    /* giữ lại height và position:relative từ .ecohl-card-thumb */
}
.ecohl-card-thumb-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: transform .35s ease;
}
.ecohl-card:hover .ecohl-card-thumb-img img {
    transform: scale(1.04);
}
/* badge category vẫn nổi trên ảnh */
.ecohl-card-thumb-img .ecohl-card-cat {
    z-index: 1;
}

/* Hero card — featured image fill đầy vùng 180px */
.ecohl-hero-card-img-thumb {
    overflow: hidden;
    background: var(--green-tint);
    padding: 0;
}
.ecohl-hero-card-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
}

/* Top picks — featured image trong ô vuông 72×72 */
.ecohl-pick-thumb-img {
    overflow: hidden;
    background: var(--green-tint);
}
.ecohl-pick-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}