
    /* --- Archive/Category Page Styles --- */
    .archive-page-wrapper {
        padding: 40px 0 80px;
        background-color: var(--bg-light-gray, #F8FAFC);
        min-height: 60vh;
    }
    
    .wpgpl-container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        box-sizing: border-box;
    }

    /* --- Breadcrumbs --- */
    .archive-breadcrumbs {
        font-size: 13px;
        color: var(--text-muted, #6B7280);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .archive-breadcrumbs a {
        color: var(--text-muted, #6B7280);
        text-decoration: none;
    }
    .archive-breadcrumbs a:hover {
        color: var(--primary-blue, #0A66C2);
    }

    /* --- Archive Header --- */
    .archive-header {
        margin-bottom: 40px;
    }
    .archive-title {
        font-size: clamp(28px, 4vw, 36px);
        font-weight: 800;
        color: var(--text-main, #1F2937);
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: -0.03em;
    }
    .archive-description {
        font-size: 15px;
        color: var(--text-muted, #6B7280);
        max-width: 800px;
    }
    .archive-description p {
        margin: 0;
    }

    /* --- Grid Layout (5 Columns) --- */
    .archive-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 24px;
        margin-bottom: 50px;
    }

    /* --- Product Card Styling --- */
    .product-grid-card {
        background: #FFFFFF;
        border: 1px solid var(--border-light, rgba(0,0,0,0.06));
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    .product-grid-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        border-color: rgba(10, 102, 194, 0.15);
    }

    /* Card Header: Icon + Title */
    .card-top {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    .card-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        overflow: hidden;
        background: #F1F5F9;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .card-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .card-icon .material-symbols-outlined {
        color: #94A3B8;
        font-size: 24px;
    }
    .card-meta {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .card-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-main, #1F2937);
        margin: 0 0 4px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .card-title a {
        color: inherit;
        text-decoration: none;
    }
    .card-title a:hover {
        color: var(--primary-blue, #0A66C2);
    }
    .card-category {
        font-size: 11px;
        color: var(--text-muted, #6B7280);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Card Version */
    .card-version {
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted, #6B7280);
        margin-bottom: 16px;
    }

    /* Card Download Button */
    .btn-card-download {
        display: block;
        width: 100%;
        text-align: center;
        background: #F0F9FF;
        color: var(--primary-blue, #0A66C2);
        padding: 10px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid #E0F2FE;
        transition: all 0.3s;
        margin-top: auto; /* Pushes button to bottom if heights vary */
    }
    .btn-card-download:hover {
        background: var(--primary-blue, #0A66C2);
        color: #FFFFFF;
        border-color: var(--primary-blue, #0A66C2);
    }

    /* --- Pagination Styling --- */
    .wpgpl-pagination {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .wpgpl-pagination .nav-links {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    .wpgpl-pagination .page-numbers {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        border-radius: 8px;
        background: #FFFFFF;
        color: var(--text-main, #1F2937);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid var(--border-light, rgba(0,0,0,0.06));
        transition: all 0.3s;
    }
    .wpgpl-pagination .page-numbers:hover {
        border-color: var(--primary-blue, #0A66C2);
        color: var(--primary-blue, #0A66C2);
    }
    .wpgpl-pagination .page-numbers.current {
        background: var(--primary-blue, #0A66C2);
        color: #FFFFFF;
        border-color: var(--primary-blue, #0A66C2);
    }
    .wpgpl-pagination .next, 
    .wpgpl-pagination .prev {
        font-weight: 600;
        background: #FFFFFF;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .archive-grid {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 16px;
        }
        .card-top {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }
    }
