.page-banner {
            background: linear-gradient(135deg, #001229 0%, var(--color-primary) 55%, #0a2850 100%);
            padding: calc(74px + 38px + 3rem) 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(174,218,31,0.1) 0%, transparent 60%);
        }
        .page-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .page-banner-eyebrow {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--color-accent);
            background: rgba(174,218,31,0.12);
            padding: 0.4rem 1rem;
            border-radius: 3px;
            margin-bottom: 1rem;
        }
        .page-banner-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
        .page-banner-desc {
            font-size: 1.05rem;
            color: rgba(248,250,252,0.72);
            max-width: 800px;
            line-height: 1.6;
        }
        .breadcrumbs {
            font-size: 0.85rem;
            color: rgba(248,250,252,0.5);
        }
        .breadcrumbs a {
            color: rgba(248,250,252,0.6);
        }
        .breadcrumbs a:hover {
            color: var(--color-accent);
        }
        
        .product-category-section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-subtitle {
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-accent);
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin: 0 auto;
        }
        
        .product-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .product-item {
            display: flex !important;
            flex-direction: column !important;
            background: #ffffff !important;
            border: 1px solid rgba(0, 31, 71, 0.1) !important;
            overflow: hidden !important;
            cursor: pointer !important;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }
        
        .product-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 31, 71, 0.4);
        }
        
        .product-item-img {
            position: relative !important;
            overflow: hidden !important;
            background: #f4f6f9 !important;
           /* aspect-ratio: 1 / 1 !important;*/
            height: auto !important;
        }
        
        .product-item-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 12px;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .product-item:hover .product-item-img img {
            transform: scale(1.06);
        }
        
        .product-item-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.4rem 1rem;
            background: var(--color-accent);
            color: var(--color-primary);
            font-family: var(--font-heading);
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 4px;
            z-index: 2;
        }
        
        .product-item-body {
            padding: 1.5rem !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: flex-start !important;
            position: relative !important;
        }
        
        .product-item-tag {
            display: inline-block;
            padding: 0.35rem 1rem;
            background: rgba(174, 218, 31, 0.15);
            color: var(--color-accent);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            border-radius: 999px;
            margin-bottom: 1.25rem;
            border: 1px solid rgba(174, 218, 31, 0.3);
        }
        
        .product-item-name {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 800;
            color: #001F47;
            margin-bottom: 1rem;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        
        .product-item:hover .product-item-name {
            color: var(--color-accent);
        }
        
        .product-item-desc {
            font-size: 0.87rem;
            color: rgba(0, 31, 71, 0.7);
            line-height: 1.75;
            margin-bottom: 1.5rem;
            font-weight: 400;
            flex: 1;
        }
        
        .product-item-specs {
            list-style: none;
            padding: 0;
            margin-bottom: 1.75rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .product-item-spec {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            color: rgba(0, 31, 71, 0.8);
            font-weight: 500;
            padding: 0.3rem 0.9rem;
            background: rgba(0, 31, 71, 0.05);
            border-radius: 999px;
            border: 1px solid rgba(0, 31, 71, 0.1);
        }
        
        .product-item-spec::before {
            content: '';
            width: 5px;
            height: 5px;
            background: var(--color-accent);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .product-item-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }
        
        .product-item-actions .btn-primary {
            flex: 1;
            padding: 0.55rem 1.25rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            font-size: 0.82rem;
            border-radius: 6px;
            background: var(--color-accent);
            color: var(--color-primary);
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-item-actions .btn-primary:hover {
            background: #8fb800;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(174, 218, 31, 0.4);
        }
        
        .product-item-actions .btn-outline {
            padding: 0.55rem 1.25rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            font-size: 0.8rem;
            border-width: 1.5px;
            border-color: rgba(255,255,255,0.3);
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            background: transparent;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-item-actions .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: #fff;
            transform: translateY(-2px);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        .feature-card {
            background: var(--color-bg-light);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
        }
        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--color-accent);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }
        .feature-title {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }
        .feature-desc {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            line-height: 1.5;
        }
        
        @media (max-width: 1024px) {
            .product-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .product-category-section {
                padding: 3rem 0;
            }
            
            .product-list {
                grid-template-columns: 1fr;
            }
            
            .product-item-name {
                font-size: 1.25rem;
            }
            
            .product-item-actions {
                flex-direction: column;
            }
            
            .product-item-actions .btn-primary,
            .product-item-actions .btn-outline {
                width: 100%;
            }
        }

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 4rem;
            padding: 2rem 0;
        }
        .pagination-item {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-primary);
            background: var(--color-bg-light);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .pagination-item:hover {
            background: rgba(174, 218, 31, 0.1);
            color: var(--color-accent);
        }
        .pagination-item.active {
            background: var(--color-accent);
            color: var(--color-primary);
        }
        .pagination-item.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }
        .pagination-item svg {
            width: 16px;
            height: 16px;
        }

        /* ==========================================================================
           METAL WOVEN LIST PAGE — new layout blocks
           ========================================================================== */

        /* --- Banner --- */
        .page-banner--metal {
            padding: calc(74px + 38px + 3rem) 0 5rem;
        }
        .page-banner-content--metal {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 3.5rem;
            align-items: center;
            text-align: left;
        }
        .page-banner-text { position: relative; z-index: 2; }
        .page-banner-actions {
            display: flex;
            gap: 0.85rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .page-banner-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }
        .page-banner-stat {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 1.25rem;
            backdrop-filter: blur(8px);
        }
        .page-banner-stat-num {
            display: block;
            font-family: var(--font-heading);
            font-size: 1.85rem;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .page-banner-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.65);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .page-banner-breadcrumbs {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            font-size: 0.85rem;
            color: rgba(248, 250, 252, 0.5);
        }
        .page-banner-breadcrumbs a { color: rgba(248, 250, 252, 0.6); }
        .page-banner-breadcrumbs a:hover { color: var(--color-accent); }

        /* --- Outline button (dark text on light bg) --- */
        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--color-primary);
            background: transparent;
            border: 2px solid var(--color-primary);
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-outline:hover {
            background: var(--color-primary);
            color: #fff;
            transform: translateY(-2px);
        }

        /* --- Metal overview section --- */
        .metal-overview-section {
            padding: 4rem 0;
            background: #fff;
        }
        .metal-overview-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 3rem;
            align-items: center;
        }
        .metal-overview-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 31, 71, 0.18);
            aspect-ratio: 1 / 1;
            background: var(--color-bg-light);
        }
        .metal-overview-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .metal-overview-image-badge {
            position: absolute;
            bottom: 1.25rem;
            left: 1.25rem;
            background: var(--color-accent);
            color: var(--color-primary);
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .metal-overview-text .section-subtitle { display: inline-block; margin-bottom: 0.75rem; }
        .metal-overview-text .section-title { text-align: left; margin-bottom: 1.25rem; }
        .metal-overview-desc {
            font-size: 0.95rem;
            color: var(--color-text-muted);
            line-height: 1.75;
            margin-bottom: 1rem;
        }
        .metal-overview-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem 1.5rem;
        }
        .metal-overview-features li {
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.88rem;
            color: var(--color-text-dark);
            line-height: 1.5;
        }
        .metal-overview-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 8px;
            height: 8px;
            background: var(--color-accent);
            border-radius: 50%;
        }
        .metal-overview-actions {
            display: flex;
            gap: 0.85rem;
            flex-wrap: wrap;
        }

        /* --- Weaving section (square & long-slot) --- */
        .weaving-section {
            padding: 4rem 0;
            background: var(--color-bg-light);
        }
        .weaving-section--alt {
            background: #fff;
        }
        .weaving-section-header {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto 2.5rem;
        }
        .weaving-section-header .section-desc {
            max-width: 900px;
            margin: 0 auto;
        }
        .weaving-section-eyebrow {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #fff;
            background: var(--color-primary);
            padding: 0.4rem 1rem;
            border-radius: 3px;
            margin-bottom: 1rem;
        }
        .weaving-section-eyebrow--alt {
            background: var(--color-accent);
            color: var(--color-primary);
        }
        .weaving-filter-label {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin: 1.5rem 0 1.25rem;
            position: relative;
        }
        .weaving-filter-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 4px;
            height: 36px;
            background: var(--color-primary);
            transform: translateY(-50%);
            border-radius: 2px;
        }
        .weaving-filter-label--alt::before {
            background: var(--color-accent);
        }
        .weaving-filter-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1.1rem;
            background: linear-gradient(135deg, var(--color-primary) 0%, #003d6b 100%);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 31, 71, 0.25);
            position: relative;
            z-index: 1;
        }
        .weaving-filter-badge::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            width: 10px;
            height: 10px;
            background: #003d6b;
        }
        .weaving-filter-label--alt .weaving-filter-badge {
            background: linear-gradient(135deg, var(--color-accent) 0%, #d4840a 100%);
        }
        .weaving-filter-label--alt .weaving-filter-badge::after {
            background: #d4840a;
        }
        .weaving-filter-count {
            font-size: 0.88rem;
            color: var(--color-text-secondary);
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 1px dashed var(--color-border);
        }
        .weaving-filter-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--color-border) 0%, transparent 100%);
            margin-left: 1rem;
        }
        .weaving-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.75rem;
        }
        .weaving-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1px solid var(--color-border);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .weaving-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 31, 71, 0.18);
            border-color: var(--color-accent);
        }
        .weaving-card-img {
            position: relative;
            aspect-ratio: 4 / 3;
            background: var(--color-bg-light);
            overflow: hidden;
        }
        .weaving-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .weaving-card:hover .weaving-card-img img {
            transform: scale(1.06);
        }
        .weaving-card-num {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 31, 71, 0.85);
            color: var(--color-accent);
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 800;
            border-radius: 6px;
            backdrop-filter: blur(4px);
        }
        .weaving-card-body {
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .weaving-card-name {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1.35;
            margin-bottom: 0.65rem;
            min-height: 2.7em;
        }
        .weaving-card-desc {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }
        .weaving-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--color-primary);
            transition: color 0.3s ease;
        }
        .weaving-card-link svg {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }
        .weaving-card:hover .weaving-card-link {
            color: var(--color-accent-hover);
        }
        .weaving-card:hover .weaving-card-link svg {
            transform: translateX(4px);
        }

        /* --- Tech doc section --- */
        .tech-doc-section {
            padding: 4rem 0;
            background: var(--color-bg-light);
        }
        .tech-doc-card {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            align-items: center;
            background: #fff;
            border: 1px solid var(--color-border);
            border-left: 5px solid var(--color-accent);
            border-radius: 12px;
            padding: 2.25rem 2.5rem;
            box-shadow: 0 8px 24px rgba(0, 31, 71, 0.06);
        }
        .tech-doc-icon {
            width: 72px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(174, 218, 31, 0.15);
            color: var(--color-accent-hover);
            border-radius: 14px;
            flex-shrink: 0;
        }
        .tech-doc-icon svg {
            width: 36px;
            height: 36px;
        }
        .tech-doc-eyebrow {
            display: inline-block;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-accent-hover);
            margin-bottom: 0.5rem;
        }
        .tech-doc-title {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.65rem;
            line-height: 1.3;
        }
        .tech-doc-desc {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            max-width: 720px;
        }
        .tech-doc-actions {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        /* --- Responsive --- */
        @media (max-width: 1200px) {
            .weaving-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 1024px) {
            .page-banner-content--metal {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .page-banner-actions { justify-content: center; }
            .metal-overview-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .metal-overview-text .section-title { text-align: center; }
            .metal-overview-features { grid-template-columns: 1fr 1fr; }
            .weaving-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .page-banner--metal { padding: calc(74px + 38px + 2rem) 0 4rem; }
            .page-banner-stats { grid-template-columns: 1fr 1fr; }
            .metal-overview-section,
            .weaving-section,
            .tech-doc-section { padding: 3rem 0; }
            .metal-overview-features { grid-template-columns: 1fr; }
            .weaving-grid { grid-template-columns: 1fr; }
            .tech-doc-card {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1.75rem;
                text-align: center;
            }
            .tech-doc-icon { margin: 0 auto; }
            .tech-doc-actions { justify-content: center; }
            .page-banner-actions,
            .metal-overview-actions,
            .tech-doc-actions { flex-direction: column; }
            .page-banner-actions .btn,
            .metal-overview-actions .btn,
            .metal-overview-actions .btn-outline,
            .tech-doc-actions .btn,
            .tech-doc-actions .btn-outline { width: 100%; }
        }
