/* ==========================================================================
   2-COLUMN CONTACT US PAGE
   ========================================================================== */
.contact-grid-2col {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

/* Left: Form Card */
.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 48px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.card-header-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.card-header-badge i {
    font-size: 1.45rem;
    color: #58ad51;
}

.card-header-badge h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-primary, #0f172a);
    margin: 0;
}

.form-intro-text {
    color: var(--color-text-muted, #64748b);
    font-size: 0.98rem;
    margin-bottom: 28px;
}

.contact-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-alert-success i {
    font-size: 1.3rem;
    color: #10b981;
    margin-top: 2px;
}

.contact-alert-success p {
    margin: 4px 0 0;
    font-size: 0.92rem;
}

.contact-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-alert-error i {
    font-size: 1.3rem;
    color: #ef4444;
    margin-top: 2px;
}

.contact-alert-error p {
    margin: 4px 0 0;
    font-size: 0.92rem;
}

.btn-contact-submit.is-loading,
.btn-submit-contact.is-loading {
    opacity: 0.75;
    pointer-events: none;
    cursor: not-allowed;
}

.btn-contact-submit .fa-spinner,
.btn-submit-contact .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ef4444;
}

.input-icon-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-icon-wrap .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.contact-form-inner .input-icon-wrap input.form-control,
.contact-form-inner .input-icon-wrap select.form-control,
.input-icon-wrap input,
.input-icon-wrap select {
    width: 100% !important;
    height: 52px !important;
    padding: 10px 18px 10px 52px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    font-size: 0.98rem !important;
    font-family: inherit !important;
    color: #0f172a !important;
    background: #f8fafc !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.contact-form-inner textarea.form-control {
    width: 100% !important;
    height: auto !important;
    padding: 14px 18px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    font-size: 0.98rem !important;
    font-family: inherit !important;
    color: #0f172a !important;
    background: #f8fafc !important;
    resize: vertical !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.contact-form-inner input::placeholder,
.contact-form-inner textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 0.85 !important;
}

.contact-form-inner .input-icon-wrap input:focus,
.contact-form-inner .input-icon-wrap select:focus,
.contact-form-inner textarea:focus {
    outline: none !important;
    border-color: #58ad51 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(88, 173, 81, 0.15) !important;
}

.input-icon-wrap:focus-within .input-icon {
    color: #58ad51 !important;
}

.btn-contact-submit {
    background: linear-gradient(135deg, #58ad51 0%, #3d8837 100%);
    color: #ffffff;
    border: none;
    padding: 15px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(88, 173, 81, 0.3);
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #468f3f 0%, #31722b 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(88, 173, 81, 0.4);
}

.form-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.privacy-note {
    font-size: 0.85rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Right: Store Info Sidebar */
.store-info-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 42px 38px;
    box-shadow: 0 14px 45px -10px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.store-info-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(88, 173, 81, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(88, 173, 81, 0.2);
    border: 1px solid rgba(88, 173, 81, 0.4);
    color: #4ade80;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.store-header h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
}

.store-sub {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 28px;
}

.store-details-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}

.store-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.detail-text strong {
    display: block;
    font-size: 0.92rem;
    color: #f8fafc;
    margin-bottom: 4px;
}

.detail-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.45;
}

.detail-subnote {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
}

.contact-link {
    color: #38bdf8;
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

.contact-sub-link {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 2px;
}

.store-map-action {
    margin-bottom: 28px;
}

.btn-map-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-map-directions:hover {
    background: #58ad51;
    border-color: #58ad51;
    color: #ffffff;
    transform: translateY(-2px);
}

.store-features-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-badge {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-badge i {
    color: #4ade80;
}

/* Helpers Strip at Bottom */
.contact-helpers-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 52px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
}

.helpers-header {
    margin-bottom: 36px;
}

.helpers-header h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-primary, #0f172a);
    margin: 0 0 10px;
}

.helpers-header p {
    color: var(--color-text-muted, #64748b);
    font-size: 1rem;
    margin: 0;
}

.helpers-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.helper-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.3s ease;
    text-decoration: none;
}

.helper-card:hover {
    background: #ffffff;
    border-color: #58ad51;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(88, 173, 81, 0.12);
}

.helper-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #58ad51 0%, #3d8837 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(88, 173, 81, 0.25);
}

.helper-info h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--color-primary, #0f172a);
    margin: 0 0 6px;
}

.helper-info p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 10px;
}

.helper-link-text {
    font-size: 0.84rem;
    font-weight: 700;
    color: #58ad51;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   BLOG ARCHIVE (3-COLUMN) & SINGLE POST LAYOUT
   ========================================================================== */
.blog-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.82rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-card-meta i {
    color: #58ad51;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
}

.blog-card-title a {
    color: var(--color-primary, #0f172a);
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #58ad51;
}

.blog-card-excerpt {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: #58ad51;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* ==========================================================================
   SINGLE POST DETAIL PAGE (2-COLUMN EDITORIAL LAYOUT)
   ========================================================================== */
.single-post-wrapper {
    background-color: #f8fafc;
}

.single-post-hero-banner {
    padding: 38px 0 32px;
    margin-bottom: 36px;
}

.single-post-meta-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.post-cat-badge a {
    background: #eaf6ea;
    color: var(--brand-green, #58ad51);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: 1px solid rgba(88, 173, 81, 0.25);
    transition: all 0.2s ease;
}

.post-cat-badge a:hover {
    background: var(--brand-green, #58ad51);
    color: #ffffff;
}

.post-date-badge,
.post-read-time-badge {
    color: #64748b;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-date-badge i,
.post-read-time-badge i {
    color: #94a3b8;
}

.single-post-hero-banner .page-hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

/* 2-Column Layout Grid */
.single-post-container {
    max-width: 1260px;
    margin: 0 auto;
}

.single-post-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* Main Article Card */
.single-article-main {
    background: #ffffff;
    border-radius: 16px;
    padding: 44px 48px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Refined, Centered, Contained Featured Image (Chuẩn - Chỉnh) */
.single-post-featured-image {
    text-align: center;
    margin: 0 auto 36px;
    max-width: 600px;
}

.single-post-featured-image img,
.single-featured-img {
    max-width: 100%;
    max-height: 440px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 6px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: inline-block;
    transition: transform 0.25s ease;
}

.single-post-featured-image img:hover {
    transform: scale(1.015);
}

/* Article Entry Content Typography */
.single-article-main .entry-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #334155;
}

.single-article-main .entry-content h2,
.single-article-main .entry-content h3,
.single-article-main .entry-content h4 {
    font-family: 'Barlow', sans-serif;
    color: #0f172a;
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.single-article-main .entry-content h2 {
    font-size: 1.7rem;
    border-left: 4px solid var(--brand-green, #58ad51);
    padding-left: 14px;
}

.single-article-main .entry-content h3 {
    font-size: 1.35rem;
}

.single-article-main .entry-content p {
    margin-bottom: 1.4rem;
}

.single-article-main .entry-content blockquote {
    background: #f8fafc;
    border-left: 4px solid var(--brand-green, #58ad51);
    border-radius: 0 10px 10px 0;
    padding: 18px 24px;
    margin: 28px 0;
    font-style: italic;
    color: #475569;
}

/* Article Tags */
.single-post-tags {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.88rem;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-pill a {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-pill a:hover {
    background: var(--brand-green, #58ad51);
    color: #ffffff;
}

/* Previous & Next Post Navigation */
.single-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.post-nav-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.25s ease;
}

.post-nav-card:hover {
    border-color: var(--brand-green, #58ad51);
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(88, 173, 81, 0.1);
    transform: translateY(-2px);
}

.post-nav-card.nav-next {
    text-align: right;
}

.nav-direction {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-green, #58ad51);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.post-nav-card.nav-next .nav-direction {
    justify-content: flex-end;
}

.nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-post-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-outline-blog {
    border: 1.5px solid #cbd5e1;
    color: #334155;
    background: #f8fafc;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-outline-blog:hover {
    background: var(--brand-green, #58ad51);
    border-color: var(--brand-green, #58ad51);
    color: #ffffff;
}

/* --- STICKY SIDEBAR & WIDGETS --- */
.single-sidebar {
    position: sticky;
    top: 95px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.sidebar-widget .widget-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-widget .widget-title i {
    color: var(--brand-green, #58ad51);
    font-size: 1rem;
}

/* Widget 1: Store Promo */
.widget-store-promo {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-color: #d1e7dd;
    text-align: center;
}

.widget-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eaf6ea;
    color: var(--brand-green, #58ad51);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.promo-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    font-family: 'Barlow', sans-serif;
}

.promo-img-wrap {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.promo-img-wrap img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    display: block;
    margin: 0 !important;
    box-shadow: none !important;
}

.promo-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 14px;
}

.promo-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    text-align: left;
}

.promo-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.promo-perks li i {
    color: var(--brand-green, #58ad51);
    font-size: 0.85rem;
}

.btn-promo-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #58ad51 0%, #43923c 100%);
    color: #ffffff !important;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(88, 173, 81, 0.35);
    transition: all 0.25s ease;
}

.btn-promo-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(88, 173, 81, 0.45);
    color: #ffffff !important;
}

/* Widget 2: Recent Articles */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    transition: transform 0.2s ease;
}

.recent-post-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item:hover {
    transform: translateX(4px);
}

.recent-post-thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
    box-shadow: none !important;
}

.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.recent-post-date {
    font-size: 0.78rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.recent-post-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.recent-post-item:hover .recent-post-title {
    color: var(--brand-green, #58ad51);
}

/* Widget 3: Categories */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8fafc;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.categories-list li a:hover {
    background: #eaf6ea;
    color: var(--brand-green, #58ad51);
    transform: translateX(3px);
}

.cat-count {
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.categories-list li a:hover .cat-count {
    background: var(--brand-green, #58ad51);
    color: #ffffff;
}

/* Widget 4: ETDFL Card */
.widget-etdfl-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    text-align: center;
}

.etdfl-mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.18);
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.widget-etdfl-card h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    font-family: 'Barlow', sans-serif;
}

.widget-etdfl-card p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0 0 16px;
}

.btn-etdfl-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #58ad51 0%, #43923c 100%);
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(88, 173, 81, 0.35);
    transition: all 0.2s ease;
}

.btn-etdfl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 173, 81, 0.5);
    color: #ffffff !important;
}

/* Responsive Adjustments for Single Posts */
@media (max-width: 991px) {
    .single-post-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .single-article-main {
        padding: 32px 24px;
    }
    .single-post-hero-banner .page-hero-title {
        font-size: 2rem;
    }
    .single-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .single-article-main {
        padding: 24px 18px;
    }
    .single-post-nav {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .post-nav-card.nav-next {
        text-align: left;
    }
    .post-nav-card.nav-next .nav-direction {
        justify-content: flex-start;
    }
    .single-post-hero-banner .page-hero-title {
        font-size: 1.65rem;
    }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE RULES FOR SUBPAGES
   ========================================================================== */
@media (max-width: 992px) {
    .contact-grid-2col {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .helpers-grid-3col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .page-card-wide {
        padding: 36px 30px;
    }
    .contact-form-card {
        padding: 32px 28px;
    }
    .store-info-card {
        padding: 32px 28px;
    }
}

@media (max-width: 640px) {
    .page-hero-title {
        font-size: 2rem;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .page-card-wide {
        padding: 24px 18px;
    }
    .contact-form-card {
        padding: 24px 18px;
    }
    .blog-grid-3col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   VIDEO TUTORIALS SECTION (OLD WEB STYLE FOR SUBPAGES)
   ========================================================================== */
.site-video-tutorials-section {
    padding: 30px 0 10px;
    background: transparent;
}

.site-video-tutorials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.vcard-grid {
    display: grid;
    gap: 18px;
}

.vcard-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 18px;
}

.vcard-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
}

.vcard-item {
    position: relative;
    display: block;
    height: 230px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    background: #0f172a;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.vcard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.vcard-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.vcard-item:hover .vcard-bg {
    transform: scale(1.06);
}

.vcard-overlay {
    position: absolute;
    inset: 0;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 2;
}

.vcard-top-desc {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
    max-width: 95%;
    letter-spacing: 0.01em;
}

.vcard-bottom-bar {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 14px;
}

.vcard-title {
    color: #ffffff;
    font-size: 1.28rem;
    font-weight: 800;
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0;
    text-align: right;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.02em;
}

.vcard-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0, 0, 0, 0.15);
}

.vcard-play-btn svg {
    display: block;
    width: 24px;
    height: 24px;
}

.vcard-item:hover .vcard-play-btn {
    background: #58ad51;
    border-color: #58ad51;
    color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 0 16px rgba(88, 173, 81, 0.7);
}

.vcard-section-divider {
    border: none;
    height: 2px;
    background: #58ad51;
    margin: 28px 0 15px;
    opacity: 0.95;
}

/* Subpages Responsive adjustments for video tutorial cards */
@media (max-width: 992px) {
    .vcard-grid-3,
    .vcard-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .vcard-item {
        height: 210px;
    }
    .vcard-title {
        font-size: 1.12rem;
    }
    .vcard-top-desc {
        font-size: 0.88rem;
    }
}

@media (max-width: 640px) {
    .vcard-grid-3,
    .vcard-grid-2 {
        grid-template-columns: 1fr;
    }
    .vcard-item {
        height: 195px;
    }
    .vcard-title {
        font-size: 1.05rem;
    }
    .vcard-play-btn {
        width: 38px;
        height: 38px;
    }
    .vcard-play-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   FEATURE SHOWCASE CAROUSELS & FACTORY PROGRAMS TICKER (SUBPAGES)
   ========================================================================== */
.feature-carousels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.feature-carousel-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-carousel-title {
    font-size: 1.32rem;
    font-weight: 800;
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    color: #2c3e50;
    margin: 0 0 16px;
    text-align: center;
    letter-spacing: 0.02em;
}

.feature-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcarousel-stage {
    width: 100%;
    height: 200px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcarousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.fcarousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, transform 0.45s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
}

.fcarousel-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.fcarousel-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

.fcarousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    color: #58ad51;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.82rem;
    padding: 0;
}

.fcarousel-prev {
    left: -15px;
}

.fcarousel-next {
    right: -15px;
}

.fcarousel-btn:hover {
    background: #58ad51;
    color: #ffffff;
    border-color: #58ad51;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 4px 14px rgba(88, 173, 81, 0.35);
}

/* Programs Ticker & Trust Badges Bottom Bar */
.programs-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0 25px;
    margin-top: 10px;
}

.programs-ticker-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.52rem;
    font-weight: 800;
    line-height: 1.25;
}

.programs-ticker-prefix {
    color: #58ad51;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.programs-ticker-text {
    color: #1e293b;
    font-weight: 800;
    display: inline-block;
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
}

.programs-ticker-text.ticker-exit {
    opacity: 0;
    transform: translateY(-8px);
}

.programs-ticker-text.ticker-enter {
    opacity: 0;
    transform: translateY(8px);
}

.trust-badges-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.secure-trust-badges {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
}

@media (max-width: 992px) {
    .feature-carousels-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .programs-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .programs-ticker-wrap {
        font-size: 1.35rem;
    }
    .secure-trust-badges {
        height: 46px;
    }
}

@media (max-width: 640px) {
    .fcarousel-stage {
        height: 180px;
    }
    .fcarousel-prev {
        left: -8px;
    }
    .fcarousel-next {
        right: -8px;
    }
    .programs-ticker-wrap {
        font-size: 1.12rem;
        flex-wrap: wrap;
    }
    .programs-ticker-prefix {
        white-space: normal;
    }
    .secure-trust-badges {
        height: 40px;
    }
}

/* ==========================================================================
   SUBPAGE LAYOUTS: FAQ, DISCLAIMER, ETDFL & PROFESSIONAL RIFE MACHINE
   ========================================================================== */

/* --- 1. FAQ ACCORDION & DISTRIBUTOR STYLES --- */
.faq-page-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf6ea;
    color: var(--brand-green, #58ad51);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(88, 173, 81, 0.25);
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 10px;
    font-family: 'Barlow', sans-serif;
}

.faq-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

.faq-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.faq-card.is-active {
    border-color: var(--brand-green, #58ad51);
    border-left: 4px solid var(--brand-green, #58ad51);
    box-shadow: 0 8px 24px rgba(88, 173, 81, 0.08);
}

.faq-card > p {
    margin: 0 !important;
    padding: 0 !important;
}

.faq-question-btn {
    width: 100% !important;
    background: none !important;
    border: none !important;
    padding: 20px 24px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    text-align: left !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    transition: color 0.2s ease !important;
}

.faq-question-btn br {
    display: none !important;
}

.faq-card.is-active .faq-question-btn {
    color: var(--brand-green, #58ad51) !important;
}

.faq-q-text {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 12px !important;
    padding-right: 16px !important;
    line-height: 1.35 !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
}

.faq-q-text i {
    color: var(--brand-green, #58ad51) !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
}

.faq-icon-arrow {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    color: #64748b !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease !important;
}

.faq-card.is-active .faq-icon-arrow {
    transform: rotate(180deg) !important;
    background: #eaf6ea !important;
    color: var(--brand-green, #58ad51) !important;
}

.faq-answer-pane {
    padding: 0 24px 22px 58px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #475569;
    display: none;
}

.faq-card.is-active .faq-answer-pane {
    display: block;
    animation: fadeInPane 0.25s ease-out;
}

@keyframes fadeInPane {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer-pane p:last-child {
    margin-bottom: 0;
}

.faq-answer-pane ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.faq-answer-pane li {
    margin-bottom: 6px;
}

/* FAQ Distributor / Store Channels Card */
.faq-distributors-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 32px;
    margin: 45px auto 0;
    max-width: 960px;
}

.distributor-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px;
}

.distributor-header .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0284c7;
    background: #e0f2fe;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.distributor-header h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    font-family: 'Barlow', sans-serif;
}

.distributor-header p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.distributor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.distributor-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.distributor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.dist-icon {
    font-size: 2rem;
    color: var(--brand-green, #58ad51);
    margin-bottom: 12px;
}

.distributor-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    font-family: 'Barlow', sans-serif;
}

.distributor-item p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0 0 16px;
    flex: 1;
}

.dist-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-green, #58ad51);
    background: #eaf6ea;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dist-link:hover {
    background: var(--brand-green, #58ad51);
    color: #ffffff;
}

/* --- 2. DISCLAIMER STYLES --- */
.disclaimer-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-alert-banner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-left: 6px solid #d97706;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 36px;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.08);
}

.alert-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 2px solid #fde68a;
}

.alert-text-box h3 {
    margin: 0 0 4px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #92400e;
    font-family: 'Barlow', sans-serif;
}

.alert-text-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #b45309;
    line-height: 1.5;
}

.disclaimer-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disclaimer-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease;
}

.disclaimer-section:hover {
    border-color: #cbd5e1;
}

.disclaimer-section h4 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
}

.disclaimer-section h4 i {
    color: var(--brand-green, #58ad51);
    font-size: 1.05rem;
}

.disclaimer-section p {
    margin: 0;
    line-height: 1.75;
    color: #475569;
    font-size: 1.02rem;
}

.disclaimer-summary-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 22px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 10px;
}

.disclaimer-summary-box .summary-icon {
    color: #16a34a;
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.disclaimer-summary-box .summary-text {
    color: #166534;
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --- 3. ETDFL FREQUENCY COMPENDIUM STYLES --- */
.etdfl-page-wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.etdfl-hero-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 48px;
    color: #ffffff;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.3);
    margin-bottom: 36px;
    position: relative;
    overflow: hidden;
}

.etdfl-hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 45px;
    align-items: center;
}

.etdfl-book-3d {
    position: relative;
    text-align: center;
}

.etdfl-badge-year {
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, #58ad51 0%, #38bdf8 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.etdfl-book-img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.etdfl-book-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.etdfl-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.entry-content .etdfl-hero-card .etdfl-headline,
.etdfl-hero-card h2.etdfl-headline,
.etdfl-headline {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 1.25;
    margin: 0 0 12px;
    font-family: 'Barlow', sans-serif;
}

.etdfl-subhead {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.etdfl-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.etdfl-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.etdfl-highlight-item i {
    color: var(--brand-green, #58ad51);
}

.etdfl-actions-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-etdfl-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #58ad51 0%, #43923c 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(88, 173, 81, 0.35);
    transition: all 0.25s ease;
}

.btn-etdfl-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(88, 173, 81, 0.5);
    color: #ffffff !important;
}

.btn-etdfl-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-etdfl-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.etdfl-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.etdfl-feature-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.etdfl-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eaf6ea;
    color: var(--brand-green, #58ad51);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.etdfl-feature-box h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Barlow', sans-serif;
}

.etdfl-feature-box p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: #64748b;
}

.etdfl-languages-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 34px 32px;
}

.etdfl-lang-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
}

.etdfl-lang-header h3 i {
    color: var(--brand-green, #58ad51);
}

.etdfl-lang-header p {
    color: #64748b;
    margin: 0 0 20px;
    font-size: 0.95rem;
}

.etdfl-lang-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.lang-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #334155;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.lang-flag {
    font-size: 1.15rem;
}

.etdfl-lang-note {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.etdfl-lang-note a {
    color: var(--brand-green, #58ad51);
    text-decoration: none;
}

.etdfl-lang-note a:hover {
    text-decoration: underline;
}

/* --- 4. PROFESSIONAL RIFE MACHINE SHOWCASE STYLES --- */
.pro-showcase-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.pro-hero-section {
    margin-bottom: 44px;
}

.pro-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
    align-items: center;
}

.pro-main-img-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.pro-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #58ad51 0%, #388432 100%);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pro-main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.pro-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-green, #58ad51);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pro-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.2;
    font-family: 'Barlow', sans-serif;
}

.pro-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #334155;
    margin-bottom: 20px;
}

.pro-price-tagline {
    background: #eaf6ea;
    border-left: 4px solid var(--brand-green, #58ad51);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    margin-bottom: 22px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #255d20;
    line-height: 1.5;
}

.pro-price-tagline i {
    color: var(--brand-green, #58ad51);
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pro-spec-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.pro-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #475569;
}

.pro-spec-item i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--brand-green, #58ad51);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.btn-pro-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #58ad51 0%, #43923c 100%);
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 34px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(88, 173, 81, 0.38);
    transition: all 0.25s ease;
}

.btn-pro-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(88, 173, 81, 0.5);
    color: #ffffff !important;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.pro-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.pro-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--brand-green, #58ad51);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.pro-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
    font-family: 'Barlow', sans-serif;
}

.pro-feature-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
}

.pro-gallery-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 32px;
    margin-bottom: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.gallery-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
}

.gallery-title i {
    color: var(--brand-green, #58ad51);
}

.gallery-subtitle {
    color: #64748b;
    margin: 0 0 24px;
    font-size: 0.95rem;
}

.pro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #ffffff;
    padding: 16px;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: block;
}

.item-caption {
    padding: 12px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-caption strong {
    color: #1e293b;
    font-size: 0.92rem;
}

.item-caption span {
    color: #64748b;
    font-size: 0.82rem;
}

.pro-cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 38px 32px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.cta-banner-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
    font-family: 'Barlow', sans-serif;
}

.cta-banner-content p {
    color: #94a3b8;
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto 22px;
    line-height: 1.6;
}

.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #58ad51 0%, #43923c 100%);
    color: #ffffff !important;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(88, 173, 81, 0.4);
    transition: all 0.25s ease;
}

.btn-cta-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(88, 173, 81, 0.6);
    color: #ffffff !important;
}

/* --- RESPONSIVE ADJUSTMENTS FOR SUBPAGES --- */
@media (max-width: 991px) {
    .etdfl-hero-grid,
    .pro-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .etdfl-book-3d,
    .pro-hero-media {
        max-width: 380px;
        margin: 0 auto;
    }
    .pro-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .etdfl-content-grid,
    .distributor-grid,
    .pro-gallery-grid {
        grid-template-columns: 1fr;
    }
    .etdfl-lang-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .page-card-wide {
        padding: 28px 20px;
    }
    .faq-title {
        font-size: 1.7rem;
    }
    .faq-question-btn {
        padding: 16px 18px;
        font-size: 1.05rem;
    }
    .faq-answer-pane {
        padding: 0 18px 18px 46px;
    }
    .etdfl-hero-card {
        padding: 30px 20px;
    }
    .etdfl-headline,
    .pro-title {
        font-size: 1.7rem;
    }
    .etdfl-highlights-list {
        grid-template-columns: 1fr;
    }
    .etdfl-lang-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pro-features-grid {
        grid-template-columns: 1fr;
    }
}



