/* Products Page Styles */
        body .page-hero {
            padding: 160px 60px 80px;
            background:
                linear-gradient(110deg, rgba(18, 17, 14, 0.92) 0%, rgba(18, 17, 14, 0.78) 50%, rgba(18, 17, 14, 0.86) 100%),
                url("../images/ptab_bg2.jpg") center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        body .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .page-hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: clamp(40px, 6vw, 60px);
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
        }

        .products-nav {
            padding: 30px 60px;
            background: var(--dark-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 80px;
            z-index: 100;
        }

        .products-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .products-nav-btn {
            padding: 12px 28px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--gray-400);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .products-nav-btn:hover {
            border-color: rgba(255, 255, 255, 0.3);
            color: var(--white);
        }

        .products-nav-btn.active {
            background: var(--gradient-primary);
            border-color: transparent;
            color: var(--white);
        }

        .products-nav-btn span {
            font-size: 18px;
        }

        .products-content {
            padding: 80px 60px;
            scroll-margin-top: 160px;
        }

        .product-category-section {
            max-width: 1400px;
            margin: 0 auto 80px;
            scroll-margin-top: 180px;
        }

        .category-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .category-header h2 {
            font-size: 32px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .category-header h2 span {
            font-size: 36px;
        }

        .category-header p {
            margin-top: 12px;
            font-size: 16px;
            color: var(--gray-400);
        }

        .products-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 30px;
        }

        .product-item {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .product-item:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 102, 255, 0.3);
            box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
        }

        .product-item-header {
            padding: 30px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 170, 0.05) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .product-item-header::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(199, 62, 58, 0.12) 0%, rgba(197, 151, 62, 0.04) 100%),
                url("../images/ptys_active_bg.png") center/cover no-repeat;
            opacity: 0.2;
        }

        .product-item-header > * {
            position: relative;
            z-index: 1;
        }

        .product-item-title {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .product-item-model {
            font-size: 14px;
            color: var(--primary-light);
            font-family: 'Outfit', sans-serif;
        }

        .product-item-body {
            padding: 30px;
        }

        .product-item-desc {
            font-size: 14px;
            color: var(--gray-400);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .product-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 6px;
        }

        .spec-item .label {
            color: var(--gray-500);
        }

        .spec-item .value {
            color: var(--white);
            font-weight: 500;
        }

        .product-item-actions {
            display: flex;
            gap: 12px;
        }

        .product-item-actions a {
            flex: 1;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            transition: all 0.3s ease;
        }

        .btn-detail {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .btn-datasheet {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--gray-300);
        }

        .btn-datasheet:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
            color: var(--white);
        }

        .solutions-section {
            padding: 100px 60px;
            background: var(--dark-secondary);
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .solution-card {
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            text-align: center;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            border-color: rgba(0, 102, 255, 0.3);
        }

        .solution-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .solution-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .solution-card p {
            font-size: 14px;
            color: var(--gray-400);
            margin-bottom: 20px;
        }

        .solution-link {
            color: var(--primary-light);
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .solution-link:hover {
            color: var(--white);
            gap: 10px;
        }

        @media (max-width: 1024px) {
            .page-hero {
                padding: 140px 30px 60px;
            }
            
            .products-nav {
                padding: 20px 30px;
            }
            
            .products-content {
                padding: 60px 30px;
            }
            
            .products-list {
                grid-template-columns: 1fr;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
        }
