/* bw-blog-article.css — extracted from inline <style> during CSS centralisation.
 * Loaded alongside bw-base.css. Cascade order: bw-base.css first,
 * this file second (page-type rules win where they overlap).
 */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }

        .skip-link { position: absolute; top: -40px; left: 0; background: #000; color: #fff; padding: 0.6rem 1rem; z-index: 10000; text-decoration: none; border-radius: 0 0 4px 0; }
        .skip-link:focus { top: 0; outline: 2px solid #FDB827; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            background: #fafafa;
            color: #1a1a1a;
            overflow-x: hidden;
            line-height: 1.6;
        }

        :root {
            --blue: #009CD9;
            --green: #3BB54A;
            --amber: #FDB827;
            --red: #EE3826;
            --purple: #7E3FB0;
            --text-dark: #1a1a1a;
            --text-body: #4a4a4a;
            --text-muted: #6b7280;
            --line: #e6e6e6;
        }

        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }

        /* NAVBAR (matches site standard, dark) */
        .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0.6rem 2rem; background: rgba(15,15,15,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: flex; justify-content: space-between; align-items: center; transition: padding 0.3s; border-bottom: 1px solid rgba(255,255,255,0.04); }
        .navbar.scrolled { padding: 0.4rem 2rem; background: rgba(15,15,15,0.98); }
        .navbar-logo img { height: 56px; width: auto; }
        .nav-links { display: flex; list-style: none; gap: 1.8rem; align-items: center; }
        .nav-links a { color: rgba(255,255,255,0.92); font-size: 0.92rem; font-weight: 500; padding: 0.5rem 0; position: relative; transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--amber); }
        .nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--amber); transform: scaleX(0); transform-origin: center; transition: transform 0.3s; }
        .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

        .menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
        .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15,15,15,0.98); z-index: 999; flex-direction: column; padding: 6rem 2rem 2rem; gap: 0.4rem; transform: translateX(-100%); transition: transform 0.4s ease-in-out; }
        .mobile-menu.open { display: flex; transform: translateX(0); }
        .mobile-menu a { color: white; font-size: 1.1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); text-decoration: none; }
        .mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .menu-toggle { display: block; }
        }

        /* PAGE HEADER */
        .page-header { position: relative; background: #0f0f0f url('images/hero/hero-3.jpg') center/cover no-repeat; background-attachment: fixed; color: white; padding: 9rem 2rem 5rem; text-align: center; overflow: hidden; }
        .page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.85) 100%), radial-gradient(circle at 30% 50%, rgba(0,156,217,0.2) 0%, transparent 60%), radial-gradient(circle at 70% 50%, rgba(253,184,39,0.15) 0%, transparent 60%); pointer-events: none; }
        .page-header-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
        .breadcrumb { display: inline-flex; justify-content: center; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
        .breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
        .breadcrumb a:hover { color: var(--amber); }
        .breadcrumb i { font-size: 0.65rem; opacity: 0.5; }
        .page-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; margin-bottom: 1.25rem; line-height: 1.05; letter-spacing: -0.02em; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
        .page-subtitle { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255,255,255,0.9); max-width: 650px; margin: 0 auto; line-height: 1.7; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }

        @media (max-width: 768px) {
            .page-header { padding: 6rem 1.25rem 3rem; background-attachment: scroll; }
            .page-title { font-size: 2.1rem; }
            .page-subtitle { font-size: 0.95rem; }
        }

        /* BLOG GRID */
        .blog-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 2rem; }
        .blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 18px rgba(0,0,0,0.05); transition: transform 0.35s ease, box-shadow 0.35s ease; border: 1px solid var(--line); display: flex; flex-direction: column; }
        .blog-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,0.12); }
        .blog-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
        .blog-card-image { height: 200px; background-size: cover; background-position: center; position: relative; }
        .blog-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.25)); }

        .blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
        .blog-card-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.85rem; }
        .blog-card-meta i { margin-right: 0.3rem; opacity: 0.8; }
        .blog-card-body h2 { font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.85rem; color: var(--text-dark); }
        .blog-card-body p { font-size: 0.92rem; color: var(--text-body); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
        .blog-card-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: #9a6d09; transition: gap 0.3s; }
        .blog-card-cta i { font-size: 0.75rem; transition: transform 0.3s; }
        .blog-card:hover .blog-card-cta { gap: 0.7rem; }
        .blog-card:hover .blog-card-cta i { transform: translateX(3px); }

        /* FOOTER */
        .footer { background: #0a0a0a; color: rgba(255,255,255,0.65); margin-top: 4rem; }
        .footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3.5rem 2rem; max-width: 1200px; margin: 0 auto; align-items: center; }
        .footer-main img { max-width: 280px; opacity: 0.85; }
        .footer-search h3 { color: white; font-size: 1.2rem; margin-bottom: 0.75rem; font-weight: 600; }
        .footer-search p { font-size: 0.92rem; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }
        .footer-search .search-form { display: flex; gap: 0; }
        .footer-search input { flex: 1; padding: 0.7rem 0.9rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); color: white; font-size: 0.9rem; border-radius: 6px 0 0 6px; outline: none; }
        .footer-search input::placeholder { color: rgba(255,255,255,0.4); }
        .footer-search button { padding: 0.7rem 1.5rem; background: #1f6b27; color: white; border: none; cursor: pointer; font-size: 0.9rem; font-weight: 700; border-radius: 0 6px 6px 0; }
        .footer-search button:hover { background: #185220; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 2rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
        .footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.3s; }
        .footer-bottom a:hover { color: var(--amber); }

        @media (max-width: 768px) {
            .footer-main { grid-template-columns: 1fr; gap: 2rem; text-align: center; padding: 2.5rem 1.25rem; }
            .footer-main > div:first-child { display: flex; justify-content: center; }
        }

        /* ARTICLE PAGE */
        .article-wrapper { max-width: 760px; margin: 0 auto; padding: 5rem 1.5rem 4rem; }
        .article-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; transition: color 0.3s; }
        .article-back:hover { color: #9a6d09; }
        .article-back i { font-size: 0.75rem; }

        .article-header { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line); }
        .article-meta-strip { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
        .article-meta-strip i { margin-right: 0.35rem; }

        .article-header h1 { font-size: 2.6rem; font-weight: 800; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.02em; }
        .article-header .lead { font-size: 1.1rem; color: var(--text-body); line-height: 1.65; }

        .article-body { font-size: 1.05rem; color: #2a2a2a; line-height: 1.8; }
        .article-body > p:first-child { font-size: 1.18rem; color: #1a1a1a; line-height: 1.7; }
        .article-body p { margin-bottom: 1.4rem; }
        .article-body h2 { font-size: 1.7rem; font-weight: 700; line-height: 1.25; margin: 2.5rem 0 1rem; color: var(--text-dark); }
        .article-body h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; margin: 1.75rem 0 0.75rem; color: var(--text-dark); }
        .article-body ul, .article-body ol { margin: 0 0 1.5rem 1.5rem; }
        .article-body li { margin-bottom: 0.6rem; line-height: 1.7; }
        .article-body strong { color: var(--text-dark); font-weight: 700; }
        .article-body a { color: #6f4e07; border-bottom: 1px solid rgba(111,78,7,0.45); transition: color 0.2s, border-color 0.2s; font-weight: 600; }
        .article-body a:hover { color: #4a3504; border-bottom-color: #4a3504; }
        .article-body blockquote { border-left: 4px solid var(--amber); margin: 1.75rem 0; padding: 1rem 1.5rem; font-style: italic; color: var(--text-body); background: #fafafa; }

        /* HERO IMAGE */
        .article-hero-img { width: 100%; height: 380px; background-size: cover; background-position: center; border-radius: 12px; margin-bottom: 2rem; position: relative; }
        .article-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.15)); border-radius: 12px; }

        /* FAQ SECTION */
        .faq-section { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
        .faq-section h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 1.5rem; }
        .faq-item { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
        .faq-item:last-child { border-bottom: none; }
        .faq-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text-dark); }
        .faq-item p { color: var(--text-body); line-height: 1.7; margin-bottom: 0; }

        /* RELATED PRODUCTS */
        .related-products-section { margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
        .related-products-section h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 1.5rem; }
        .related-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 1.5rem; margin-top: 1rem; }
        .related-product-card { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 1.25rem; transition: transform 0.3s, box-shadow 0.3s; display: block; color: inherit; }
        .related-product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
        .related-product-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; margin-bottom: 0.85rem; background: #f0f0f0; }
        .related-product-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text-dark); border: none; padding: 0; }
        .related-product-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; margin: 0; }

        /* CTA BOX */
        .article-cta { background: linear-gradient(135deg, #1a1a1a, #232323); color: white; padding: 2.5rem 2rem; border-radius: 12px; margin: 3rem 0 2rem; text-align: center; }
        .article-cta h2 { font-size: 1.6rem; margin-bottom: 0.6rem; color: white; font-weight: 700; }
        .article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-size: 0.98rem; }
        .article-cta-buttons { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }
        .article-cta a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.5rem; border-radius: 6px; font-weight: 600; font-size: 0.92rem; transition: transform 0.2s, background 0.2s; border-bottom: none; }
        .article-cta a.btn-primary { background: var(--amber); color: #1a1a1a; }
        .article-cta a.btn-primary:hover { background: #f5a900; transform: translateY(-2px); color: #1a1a1a; border-color: transparent; }
        .article-cta a.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); padding: calc(0.7rem - 2px) calc(1.5rem - 2px); }
        .article-cta a.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); color: white; }

        /* RELATED POSTS */
        .related-posts-section { margin-top: 3rem; }
        .related-posts-section h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.25rem; }
        .related-posts-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .related-post-link { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 1.25rem; transition: border-color 0.3s; display: flex; gap: 0.85rem; align-items: center; color: inherit; }
        .related-post-link:hover { border-color: var(--amber); }
        .related-post-link i { font-size: 1.2rem; color: var(--amber); border-bottom: none; }
        .related-post-link span { font-size: 0.92rem; font-weight: 600; line-height: 1.4; }

        @media (max-width: 768px) {
            .article-wrapper { padding: 5rem 1.25rem 3rem; }
            .article-header h1 { font-size: 1.85rem; }
            .article-header .lead { font-size: 1rem; }
            .article-body { font-size: 1rem; }
            .article-body h2 { font-size: 1.4rem; }
            .article-body h3 { font-size: 1.1rem; }
            .article-hero-img { height: 240px; }
            .related-posts-list { grid-template-columns: 1fr; }
            .article-cta { padding: 2rem 1.25rem; }
            .article-cta h2 { font-size: 1.3rem; }
        }

        /* Products dropdown */
        .nav-links > li { position: relative; }
        .nav-links .has-dropdown > a .chev { font-size: 0.6rem; margin-left: 0.4rem; transition: transform 0.25s; opacity: 0.75; }
        .nav-links .has-dropdown:hover > a .chev { transform: rotate(180deg); opacity: 1; }
        .dropdown { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-6px); background: rgba(15,15,15,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); min-width: 230px; padding: 0.4rem 0; border-radius: 10px; list-style: none; box-shadow: 0 18px 45px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06); opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; pointer-events: none; }
        .nav-links .has-dropdown:hover > .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
        .dropdown li { padding: 0; }
        .nav-links .dropdown a { display: block; padding: 0.7rem 1.5rem; font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.88); border-left: 3px solid transparent; transition: background 0.15s, color 0.15s, border-left-color 0.15s; }
        .nav-links .dropdown a:hover { background: rgba(255,255,255,0.04); color: var(--amber, #FDB827); border-left-color: var(--amber, #FDB827); }
        .nav-links .dropdown a::after { display: none !important; }
        .dropdown-divider { border-top: 1px solid rgba(255,255,255,0.08); margin: 0.35rem 0; pointer-events: none; }
        .mobile-section { font-weight: 700 !important; }
        .mobile-sub { padding-left: 1.25rem !important; font-size: 0.95rem !important; opacity: 0.92; }
