/* ==========================================
   BLOG TEMPLATE STYLES
   Design System: Asia Agro Exports
   Colors: #2E7D32 (Primary), #F9A825 (Accent)
   Typography: Montserrat (Headings), Lato (Body)
   ========================================== */

/* ROOT VARIABLES */
:root {
    --primary-green: #2E7D32;
    --accent-gold: #F9A825;
    --text-dark: #1A1A1A;
    --text-body: #333333;
    --text-muted: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --border-color: #E0E0E0;
    --shadow-sm: 0px 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0px 8px 16px rgba(0,0,0,0.08);
}

/* BREADCRUMBS */
.breadcrumbs {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Lato', sans-serif;
    color: var(--text-muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--primary-green);
}

.breadcrumbs li:last-child {
    color: var(--text-body);
    font-weight: 600;
}

/* MAIN BLOG LAYOUT */
.blog-main {
    background: var(--bg-white);
    padding: 3rem 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* ARTICLE CONTENT (Left Column) */
.blog-content {
    background: white;
}

/* ARTICLE HEADER */
.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-tag {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.article-meta time {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: 'Lato', sans-serif;
}

.article-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.article-subheader .excerpt {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-body);
    font-family: 'Lato', sans-serif;
    margin: 0;
}

/* FEATURED IMAGE */
.featured-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.featured-image figcaption {
    padding: 0.75rem;
    background: var(--bg-light);
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* PRODUCT HERO BANNER */
.product-hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.1);
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(46, 125, 50, 0.85) 0%,
        rgba(27, 94, 32, 0.7) 40%,
        rgba(46, 125, 50, 0.6) 70%,
        rgba(27, 94, 32, 0.75) 100%
    );
    backdrop-filter: blur(2px);
}

.product-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem;
    color: white;
    z-index: 2;
}

.product-hero-top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-hero-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.product-hero-middle {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: auto;
    padding-bottom: 1rem;
}

.product-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: white;
    max-width: 90%;
}

.product-hero-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-spec-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.125rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Lato', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-spec-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ARTICLE BODY */
.article-body {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.article-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem 0;
    line-height: 1.3;
}

.article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

.article-body p {
    margin: 0 0 1.5rem 0;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    padding-left: 1.5rem;
    position: relative;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* DATA TABLE */
.data-table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Lato', sans-serif;
}

.spec-table caption {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem;
    background: var(--bg-light);
    text-align: left;
    border-bottom: 2px solid var(--primary-green);
}

.spec-table thead {
    background: var(--primary-green);
    color: white;
}

.spec-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.spec-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.spec-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.spec-table td {
    padding: 1rem;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* INLINE CTA */
.inline-cta {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
    border-left: 4px solid var(--primary-green);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.cta-icon {
    flex-shrink: 0;
}

.cta-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
}

.cta-content p {
    margin: 0 0 1rem 0;
    color: var(--text-body);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ARTICLE FOOTER */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.tags {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-family: 'Lato', sans-serif;
}

.tags strong {
    color: var(--text-dark);
}

.tags .tag {
    background: var(--bg-light);
    color: var(--text-body);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.875rem;
    display: inline-block;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons strong {
    color: var(--text-dark);
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    transition: all 0.2s;
}

.share-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* RELATED ARTICLES */
.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.related-articles h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Old Related Card Styles (deprecated) */
.related-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.related-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.related-card .read-more {
    display: block;
    padding: 0 1rem 1rem 1rem;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
}

/* New Related Card with Overlay - B2B Focused */
.related-card-overlay {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-card-overlay:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.related-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-overlay:hover .related-card-image {
    transform: scale(1.05);
}

.related-card-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(46, 125, 50, 0.85) 100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.related-card-overlay:hover .related-card-overlay-bg {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(46, 125, 50, 0.7) 50%,
        rgba(46, 125, 50, 0.95) 100%
    );
}

.related-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.related-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 15px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.35);
    width: fit-content;
}

.related-card-content h3 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.35;
    margin: 0;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-overlay {
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.related-card-overlay:hover .read-more-overlay {
    gap: 0.75rem;
}

/* SIDEBAR */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 1rem 0;
    color: var(--text-dark);
}

/* SEARCH WIDGET */
.search-widget form {
    position: relative;
}

.search-widget input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.search-widget input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.search-widget button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.search-widget button:hover {
    color: var(--primary-green);
}

/* CATEGORIES WIDGET */
.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 0.75rem;
}

.categories-widget a {
    color: var(--text-body);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
    transition: color 0.2s;
}

.categories-widget a:hover {
    color: var(--primary-green);
    padding-left: 0.5rem;
}

/* CTA WIDGET */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1B5E20 100%);
    color: white;
    border: none;
}

.cta-widget h3 {
    color: white;
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.btn-cta {
    display: block;
    background: var(--accent-gold);
    color: var(--text-dark);
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #FFB300;
    transform: translateY(-2px);
}

/* CERTIFICATIONS WIDGET */
.cert-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.cert-badges img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.cert-badges img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* POPULAR POSTS WIDGET */
.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.popular-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-list a {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-body);
    transition: color 0.2s;
}

.popular-list a:hover {
    color: var(--primary-green);
}

.popular-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.popular-list span {
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Modern Popular Posts with Overlay - B2B Focused */
.popular-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-card {
    position: relative;
    display: block;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.popular-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.popular-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.popular-card:hover .popular-card-image {
    transform: scale(1.08);
}

.popular-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(46, 125, 50, 0.92) 0%,
        rgba(46, 125, 50, 0.75) 50%,
        rgba(46, 125, 50, 0.5) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.popular-card:hover .popular-card-overlay {
    background: linear-gradient(
        90deg,
        rgba(46, 125, 50, 0.95) 0%,
        rgba(46, 125, 50, 0.85) 50%,
        rgba(46, 125, 50, 0.65) 100%
    );
}

.popular-card-content {
    position: relative;
    height: 100%;
    padding: 1.125rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    opacity: 0.95;
}

.popular-title {
    color: white;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* STICKY MOBILE CTA */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.btn-sticky {
    display: block;
    background: var(--accent-gold);
    color: var(--text-dark);
    text-align: center;
    padding: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* RESPONSIVE DESIGN */

/* Tablet Layout (1024px and below) */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .blog-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    /* Related Cards Overlay - Tablet */
    .related-card-overlay {
        height: 260px;
    }

    .related-card-content h3 {
        font-size: 1.0625rem;
    }

    .article-header h1 {
        font-size: 2.25rem;
    }

    .blog-main {
        padding: 2rem 0;
    }
}

/* Mobile Layout (768px and below) */
@media (max-width: 768px) {
    .breadcrumbs .container {
        padding: 0 1rem;
    }

    .breadcrumbs ol {
        font-size: 0.8125rem;
    }

    .blog-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .blog-main {
        padding: 1.5rem 0 6rem 0;
    }

    /* Blog Content - Add bottom padding */
    .blog-content {
        padding-bottom: 2rem;
    }

    /* Article Header */
    .article-header {
        margin-bottom: 1.5rem;
    }

    .article-header h1 {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .article-subheader .excerpt {
        font-size: 1rem;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Article Body */
    .article-body {
        font-size: 0.9375rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.875rem 0;
    }

    .article-body h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .article-body p {
        margin: 0 0 1.25rem 0;
    }

    .article-body ul,
    .article-body ol {
        margin: 1.25rem 0;
        padding-left: 1.5rem;
    }

    /* Featured Image */
    .featured-image {
        margin: 1.5rem 0;
        border-radius: 6px;
    }

    .featured-image img {
        aspect-ratio: 4 / 3;
    }

    /* Product Hero Banner */
    .product-hero-banner {
        height: 400px;
        margin: 1.5rem 0;
        border-radius: 8px;
    }

    .product-hero-content {
        padding: 2rem;
    }

    .product-hero-title {
        font-size: 1.875rem;
        max-width: 100%;
    }

    .product-hero-category {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .product-spec-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

    /* Inline CTA */
    .inline-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
        margin: 2rem 0;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .cta-content h3 {
        font-size: 1.125rem;
    }

    .cta-content p {
        font-size: 0.875rem;
    }

    /* Data Table */
    .data-table-wrapper {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .spec-table {
        min-width: 100%;
    }

    .spec-table th,
    .spec-table td {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .spec-table td:first-child {
        padding-left: 1rem;
    }

    .spec-table th:first-child {
        padding-left: 1rem;
    }

    .spec-table caption {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }

    /* Article Footer */
    .article-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .tags {
        font-size: 0.875rem;
    }

    .share-buttons {
        margin-top: 1rem;
        gap: 0.75rem;
    }

    /* Related Articles */
    .related-articles {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .related-articles h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .related-card h3 {
        font-size: 0.9375rem;
    }

    /* Related Cards Overlay - Mobile */
    .related-card-overlay {
        height: 240px;
    }

    .related-card-content {
        padding: 1.25rem;
    }

    .related-card-content h3 {
        font-size: 1rem;
    }

    /* Popular Posts - Mobile */
    .popular-card {
        height: 110px;
    }

    .popular-card-content {
        padding: 1rem;
    }

    .popular-number {
        font-size: 1.25rem;
    }

    .popular-title {
        font-size: 0.8125rem;
    }

    /* Sidebar */
    .sidebar-widget {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .sidebar-widget h3 {
        font-size: 1rem;
    }

    /* Sticky Mobile CTA */
    .sticky-cta-mobile {
        display: block;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .breadcrumbs .container {
        padding: 0 0.75rem;
    }

    .breadcrumbs ol {
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .blog-container {
        padding: 0 0.75rem;
    }

    .blog-main {
        padding: 1rem 0 7rem 0;
    }

    /* Blog Content - Add more bottom padding */
    .blog-content {
        padding-bottom: 2.5rem;
    }

    /* Article Header */
    .article-header h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 0 0 0.75rem 0;
    }

    .article-subheader .excerpt {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .category-tag {
        font-size: 0.6875rem;
        padding: 0.25rem 0.625rem;
    }

    .article-meta time {
        font-size: 0.8125rem;
    }

    /* Article Body */
    .article-body {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    .article-body h2 {
        font-size: 1.375rem;
        margin: 1.75rem 0 0.75rem 0;
    }

    .article-body h3 {
        font-size: 1.125rem;
        margin: 1.25rem 0 0.625rem 0;
    }

    .article-body ul,
    .article-body ol {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }

    .article-body li {
        margin-bottom: 0.5rem;
    }

    .content-list li {
        padding-left: 1.25rem;
        font-size: 0.9375rem;
    }

    /* Product Hero Banner */
    .product-hero-banner {
        height: 350px;
        margin: 1.25rem 0;
        border-radius: 6px;
    }

    .product-hero-content {
        padding: 1.5rem;
    }

    .product-hero-title {
        font-size: 1.5rem;
    }

    .product-hero-category {
        font-size: 0.6875rem;
        padding: 0.5rem 0.875rem;
        letter-spacing: 1px;
    }

    .product-hero-specs {
        gap: 0.5rem;
    }

    .product-spec-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    /* Inline CTA */
    .inline-cta {
        padding: 1.25rem;
        margin: 1.5rem -0.75rem;
        border-radius: 0;
    }

    .cta-content h3 {
        font-size: 1rem;
    }

    .cta-content p {
        font-size: 0.8125rem;
    }

    .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Data Table */
    .data-table-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .spec-table {
        font-size: 0.8125rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 0.625rem 0.75rem;
        font-size: 0.8125rem;
    }

    .spec-table td:first-child {
        padding-left: 0.875rem;
    }

    .spec-table th:first-child {
        padding-left: 0.875rem;
    }

    .spec-table caption {
        font-size: 0.9375rem;
        padding: 0.75rem 0.875rem;
    }

    /* Article Footer */
    .tags {
        font-size: 0.8125rem;
    }

    .tags .tag {
        padding: 0.375rem 0.625rem;
        font-size: 0.8125rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .share-buttons a {
        width: 32px;
        height: 32px;
    }

    .share-buttons svg {
        width: 16px;
        height: 16px;
    }

    /* Related Articles */
    .related-articles h2 {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .related-card img {
        height: 120px;
    }

    .related-card h3 {
        font-size: 0.875rem;
        padding: 0.875rem;
    }

    .related-card .read-more {
        padding: 0 0.875rem 0.875rem 0.875rem;
        font-size: 0.8125rem;
    }

    /* Related Cards Overlay - Small Mobile */
    .related-card-overlay {
        height: 220px;
    }

    .related-card-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .related-category {
        font-size: 0.625rem;
        padding: 0.3rem 0.75rem;
    }

    .related-card-content h3 {
        font-size: 0.9375rem;
    }

    .read-more-overlay {
        font-size: 0.8125rem;
    }

    /* Popular Posts - Small Mobile */
    .popular-card {
        height: 100px;
    }

    .popular-card-content {
        padding: 0.875rem;
    }

    .popular-number {
        font-size: 1.125rem;
    }

    .popular-title {
        font-size: 0.75rem;
    }

    /* Sidebar */
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }

    .sidebar-widget h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.875rem;
    }

    .cta-widget p {
        font-size: 0.8125rem;
    }

    .btn-cta {
        padding: 0.625rem 0.875rem;
        font-size: 0.875rem;
    }

    .cert-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .popular-list img {
        width: 50px;
        height: 50px;
    }

    .popular-list span {
        font-size: 0.8125rem;
    }

    /* Sticky Mobile CTA */
    .sticky-cta-mobile {
        padding: 0.875rem;
    }

    .btn-sticky {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
}

/* PRODUCT POSTERS */
.product-posters-section {
    margin: 3rem 0;
    padding: 2rem 0;
    background: var(--bg-light);
    border-radius: 8px;
}

.product-posters-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
}

.poster-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.poster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.poster-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
}

.poster-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: white;
    z-index: 2;
}

.poster-top {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.poster-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.poster-commodity {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
}

.poster-middle {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poster-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Lato', sans-serif;
}

.poster-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Lato', sans-serif;
}

.poster-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.poster-location {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.location-label {
    font-size: 0.7rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.location-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.poster-cta {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
}

.poster-cta:hover {
    transform: scale(1.05);
    background: #FFB300;
}

/* Color Variants */
.poster-card.peanuts .poster-overlay {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.75) 0%, rgba(101, 67, 33, 0.55) 100%);
}

.poster-card.cumin .poster-overlay {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.75) 0%, rgba(139, 101, 8, 0.55) 100%);
}

.poster-card.guar-gum .poster-overlay {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.75) 0%, rgba(0, 100, 0, 0.55) 100%);
}

.poster-card.mustard .poster-overlay {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.75) 0%, rgba(184, 134, 11, 0.55) 100%);
}

.poster-card.psyllium .poster-overlay {
    background: linear-gradient(135deg, rgba(72, 61, 139, 0.75) 0%, rgba(106, 90, 205, 0.55) 100%);
}

.poster-card.castor .poster-overlay {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.75) 0%, rgba(139, 0, 0, 0.55) 100%);
}

@media (max-width: 768px) {
    .product-posters-section {
        padding: 1.5rem 0;
        margin: 2rem 0;
    }

    .poster-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .poster-commodity {
        font-size: 1.5rem;
    }

    .poster-title {
        font-size: 1rem;
    }

    .poster-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-posters-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .poster-grid {
        padding: 0 0.75rem;
    }

    .poster-commodity {
        font-size: 1.375rem;
    }

    .poster-content {
        padding: 1.25rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .article-header h1 {
        font-size: 1.375rem;
    }

    .article-body h2 {
        font-size: 1.25rem;
    }

    .article-body h3 {
        font-size: 1.0625rem;
    }

    .related-grid {
        gap: 0.875rem;
    }

    .inline-cta {
        padding: 1rem;
    }

    .cta-icon svg {
        width: 36px;
        height: 36px;
    }
}
