/* bw-products-list.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).
 */

/* ========== RESET & BASE ========== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 100px; }

        /* Skip-to-main accessibility link */
        .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: #ffffff;
            color: #1a1a1a;
            overflow-x: hidden;
        }

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

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

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0.6rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.4s ease;
            background: rgba(15, 15, 15, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .navbar.scrolled {
            background: rgba(15, 15, 15, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }
        .navbar-logo img { height: 56px; width: auto; }
        .nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex;
            gap: 1.8rem;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--amber); }
        .nav-links a.active { color: var(--amber); }
        .nav-links a.active::after,
        .nav-links a:hover::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: var(--amber);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; right: -100%;
            width: 80%; max-width: 300px;
            height: 100vh;
            background: #0f0f0f;
            z-index: 1500;
            padding: 5rem 2rem 2rem;
            transition: right 0.4s ease;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        }
        .mobile-menu.open { right: 0; }
        .mobile-menu a {
            display: block;
            color: white;
            padding: 1rem 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .mobile-menu-close {
            position: absolute;
            top: 1rem; right: 1rem;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ========== PAGE HEADER ========== */
        .page-header {
            position: relative;
            padding: 9rem 2rem 5rem;
            background: #0f0f0f url('images/hero/hero-2.jpg') center/cover no-repeat;
            background-attachment: fixed;
            overflow: hidden;
            text-align: center;
            color: white;
        }
        .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.20) 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;
            align-items: center;
            gap: 0.5rem;
            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;
            letter-spacing: -0.02em;
            line-height: 1.05;
            margin-bottom: 1.25rem;
            color: white;
            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.85);
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
        }
        .page-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 2.5rem;
            flex-wrap: wrap;
        }
        .stat-block { text-align: center; }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
            color: var(--amber);
        }
        .stat-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255,255,255,0.7);
            margin-top: 0.4rem;
        }

        /* ========== CATEGORIES (alternating rows) ========== */
        .categories {
            padding: 5.5rem 2rem;
            background: #ffffff;
            color: var(--text-dark);
        }
        .categories-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 5rem;
        }
        .category-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .category-row:nth-child(even) .category-visual { order: 2; }
        .category-row:nth-child(even) .category-text { order: 1; }
        .category-visual {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            display: block;
            box-shadow: 0 14px 40px rgba(0,0,0,0.10);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            background: var(--light-alt);
        }
        .category-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
            display: block;
        }
        .category-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.45) 100%);
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .category-visual:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 60px rgba(0,0,0,0.16);
        }
        .category-visual:hover .category-photo { transform: scale(1.06); }
        .category-tag {
            position: absolute;
            bottom: 1.25rem;
            left: 1.25rem;
            z-index: 2;
            padding: 0.4rem 0.85rem;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(6px);
        }
        .category-row[data-color="blue"]   .category-tag { color: #006c99; }
        .category-row[data-color="amber"]  .category-tag { color: #946000; }
        .category-row[data-color="red"]    .category-tag { color: #b8200f; }
        .category-row[data-color="green"]  .category-tag { color: #1f7a2c; }
        .category-row[data-color="purple"] .category-tag { color: #5C2C84; }
        .category-text { padding: 0; }
        .category-number {
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.3em;
            color: var(--text-muted);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-transform: uppercase;
        }
        .category-number::after {
            content: '';
            width: 60px;
            height: 1px;
            background: var(--line);
        }
        .category-name {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.05;
            margin-bottom: 1.25rem;
            text-transform: uppercase;
        }
        .category-row[data-color="blue"]   .category-name { color: #006c99; }
        .category-row[data-color="amber"]  .category-name { color: #946000; }
        .category-row[data-color="red"]    .category-name { color: #b8200f; }
        .category-row[data-color="green"]  .category-name { color: #1f7a2c; }
        .category-row[data-color="purple"] .category-name { color: #5C2C84; }
        .category-description {
            font-size: 1rem;
            line-height: 1.75;
            color: var(--text-body);
            margin-bottom: 1.5rem;
        }
        .product-highlights {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.55rem 1.5rem;
            margin-bottom: 1.75rem;
            padding: 1.25rem 1.4rem;
            background: var(--light-alt);
            border-radius: 10px;
            border-left: 3px solid;
        }
        .category-row[data-color="blue"]   .product-highlights { border-left-color: var(--blue); }
        .category-row[data-color="amber"]  .product-highlights { border-left-color: var(--amber); }
        .category-row[data-color="red"]    .product-highlights { border-left-color: var(--red); }
        .category-row[data-color="green"]  .product-highlights { border-left-color: var(--green); }
        .category-row[data-color="purple"] .product-highlights { border-left-color: var(--purple); }
        .product-highlights li {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            font-weight: 500;
        }
        .product-highlights li i { font-size: 0.5rem; opacity: 0.6; }
        .category-row[data-color="blue"]   .product-highlights li i { color: var(--blue); opacity: 1; }
        .category-row[data-color="amber"]  .product-highlights li i { color: var(--amber); opacity: 1; }
        .category-row[data-color="red"]    .product-highlights li i { color: var(--red); opacity: 1; }
        .category-row[data-color="green"]  .product-highlights li i { color: var(--green); opacity: 1; }
        .category-row[data-color="purple"] .product-highlights li i { color: var(--purple); opacity: 1; }
        .category-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .product-count {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--text-muted);
        }
        .product-count i { font-size: 0.7rem; }
        .category-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.95rem 1.85rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            transition: all 0.3s ease;
            border: 2px solid;
            background: transparent;
        }
        .category-cta i { font-size: 0.8rem; transition: transform 0.3s ease; }
        .category-cta:hover i { transform: translateX(4px); }
        .category-row[data-color="blue"]   .category-cta { color: #006c99; border-color: #006c99; }
        .category-row[data-color="blue"]   .category-cta:hover { background: #006c99; color: #ffffff; }
        .category-row[data-color="amber"]  .category-cta { color: #946000; border-color: #946000; }
        .category-row[data-color="amber"]  .category-cta:hover { background: #946000; color: #ffffff; }
        .category-row[data-color="red"]    .category-cta { color: #b8200f; border-color: #b8200f; }
        .category-row[data-color="red"]    .category-cta:hover { background: #b8200f; color: #ffffff; }
        .category-row[data-color="green"]  .category-cta { color: #1f7a2c; border-color: #1f7a2c; }
        .category-row[data-color="green"]  .category-cta:hover { background: #1f7a2c; color: #ffffff; }
        .category-row[data-color="purple"] .category-cta { color: #5C2C84; border-color: #5C2C84; }
        .category-row[data-color="purple"] .category-cta:hover { background: #5C2C84; color: #ffffff; }



        /* ========== VIEW ALL CTA (slim bar under hero) ========== */
        .view-all-cta { padding: 1.25rem 2rem; background: var(--light-alt); border-bottom: 1px solid var(--line); }
        .view-all-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 1.25rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .view-all-text { font-size: 0.92rem; color: var(--text-body); margin: 0; flex: 1; min-width: 240px; }
        .btn-view-all-products { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.4rem; background: #1f6b27; color: white; border-radius: 6px; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; transition: all 0.25s ease; white-space: nowrap; }
        .btn-view-all-products:hover { background: #185220; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(59,181,74,0.3); }
        .btn-view-all-products i { transition: transform 0.25s ease; font-size: 0.75rem; }
        .btn-view-all-products:hover i { transform: translateX(4px); }
        @media (max-width: 600px) {
            .view-all-cta { padding: 1rem 1.25rem; }
            .view-all-inner { gap: 0.75rem; }
            .view-all-text { font-size: 0.85rem; }
        }

        /* ========== HELP CTA ========== */
        .help-cta {
            background: linear-gradient(135deg, #1a1a1a 0%, #232323 100%);
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
            color: white;
        }
        .help-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 50%, rgba(0,156,217,0.15) 0%, transparent 45%),
                radial-gradient(circle at 85% 50%, rgba(59,181,74,0.12) 0%, transparent 45%);
        }
        .help-cta-inner {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .help-cta-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--amber);
            margin-bottom: 1rem;
        }
        .help-cta-title {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.25rem;
            color: white;
        }
        .help-cta-text {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            margin-bottom: 2.25rem;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }
        .help-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.95rem 2rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        .btn-primary {
            background: var(--amber);
            color: #0f0f0f;
            border-color: var(--amber);
        }
        .btn-primary:hover {
            background: transparent;
            color: var(--amber);
        }
        .btn-outline {
            background: transparent;
            border-color: rgba(255,255,255,0.4);
            color: white;
        }
        .btn-outline:hover {
            background: white;
            color: #0f0f0f;
            border-color: white;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #0a0a0a;
            color: white;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.5rem 2rem;
            align-items: center;
        }
        .footer-main img {
            max-width: 280px;
            opacity: 0.85;
        }
        .footer-search h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: white;
        }
        .footer-search p {
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.05);
            color: white;
            border-radius: 4px;
            font-size: 0.9rem;
            font-family: inherit;
        }
        .search-form input::placeholder { color: rgba(255,255,255,0.5); }
        .search-form input:focus { outline: none; border-color: var(--green); }
        .btn-green {
            background: var(--green);
            color: #0f0f0f;
            border: 2px solid var(--green);
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-green:hover { background: transparent; color: var(--green); }
        .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); transition: color 0.3s; }
        .footer-bottom a:hover { color: var(--amber); }

        /* ========== BACK TO TOP & SOCIAL ========== */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px; height: 48px;
            background: var(--amber);
            color: #0f0f0f;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
            font-size: 1rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover { background: white; }

        .social-sidebar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            z-index: 50;
            background: rgba(15,15,15,0.85);
            padding: 0.75rem 0.5rem;
            border-radius: 0 8px 8px 0;
            backdrop-filter: blur(8px);
        }
        .social-sidebar a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px; height: 36px;
            color: white;
            font-size: 1rem;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .social-sidebar a:hover { background: var(--amber); color: #0f0f0f; }

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

            .page-header { background-attachment: scroll; padding: 7.5rem 1.5rem 4rem; }
            .categories { padding: 3.5rem 1.25rem; }
            .help-cta { padding: 4rem 1.5rem; }

            .category-row {
                grid-template-columns: 1fr;
                gap: 1.75rem;
            }
            .category-row:nth-child(even) .category-visual,
            .category-row:nth-child(even) .category-text {
                order: unset;
            }
            .category-visual { aspect-ratio: 5 / 3; }

            .product-highlights {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .footer-main > div:first-child { display: flex; justify-content: center; }

            .social-sidebar { display: none; }
            .page-stats { gap: 2rem; }
            .stat-number { font-size: 2rem; }
            .categories-inner { gap: 3.5rem; }
        }
        @media (max-width: 500px) {
            .navbar { padding: 0.5rem 1rem; }
            .navbar-logo img { height: 44px; }
        }
        /* 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; }
