        .global-search {
        margin-bottom: 20px;
        text-align: right;
        }

        .search-input-wrapper {
        display: inline-flex;
        align-items: center;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 6px 10px;
        background-color: #fff;
        max-width: 300px;
        width: 100%;
        transition: border-color 0.2s, box-shadow 0.2s;
        }

        .search-input-wrapper:focus-within {
        border-color: #1976d2;
        box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.2);
        }

        .search-icon {
        font-size: 14px;
        color: #888;
        margin-right: 8px;
        }

        #global-search-input {
        border: none;
        outline: none;
        font-size: 14px;
        width: 100%;
        }

        #global-search-input::placeholder {
        color: #999;
        opacity: 1;
        }

           
        .main-container {
        display: flex;
        gap: 20px;
        }

        .accordion-container {
        flex: 1 0 250px;
        max-width: 300px;
        }

        /* .product-panel {
        flex: 3;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 20px;
        overflow: auto;
        min-height: 300px;
        } */
        .product-panel {
        flex: 1;
        padding: 0px;
        background-color: #fff;
        overflow-y: auto;
        }

        .catalog-header {
            background-color: #fff;
            padding: 15px 20px;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .catalog-title {
            color: #4a90e2;
            font-size: 18px;
            font-weight: normal;
        }

        .accordion-container {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }

        .accordion-item {
            border-bottom: 1px solid #ddd;
        }

        .accordion-item:last-child {
            border-bottom: none;
        }

        .accordion-header {
            display: flex;
            align-items: center;
            padding: 5px 10px;
            background-color: #f8f9fa;
            cursor: pointer;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 14px;
            color: #0088cc;
            transition: background-color 0.2s ease;
        }

        .accordion-header:hover {
            background-color: #e9ecef;
            text-decoration: none;
        }

        .accordion-header.active {
            background-color: #0088cc;
            color: #ffffff;
        }

        .accordion-icon {
            margin-right: 20px;
            transition: transform 0.2s ease;
            font-size: 12px;
            color: #0088cc;
        }

        .accordion-header.active .accordion-icon {
            transform: rotate(90deg);
            color: #ffffff;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #a5bfcc;
            text-decoration: none;
        }

        .accordion-content.active {
            max-height: none;
            background-color: #ffffff !important;
            color: #1976d2;
        }

        .accordion-subcategories {
            padding: 0;
        }

        .subcategory-columns {
            display: flex;
            flex-direction: column;
            background-color: #a5bfcc;
        }

        .subcategory-item {
            background-color: #f0f8ff;
            padding: 5px 15px;
            border: none;
            border-bottom: 1px solid #f0f0f0;
            text-align: left;
            cursor: pointer;
            font-size: 13px;
            color: #000000;
            display: block;
            transition: background-color 0.2s ease;
            text-decoration: none;
        }

        .subcategory-item:last-child {
            border-bottom: none;
            text-decoration: none;
        }

        .subcategory-item:hover {
            background-color: #ffffff;
            color: #1976d2;
            text-decoration: none;
        }

        .product-grid {
            width: 100%;             
            box-sizing: border-box;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            overflow: hidden;
        }

        .product-grid.macchina-layout .product-body {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .product-grid.macchina-layout .product-photo {
            order: 1;
            margin-bottom: 10px;
            text-align: center;
        }

        .product-grid.macchina-layout .product-table-container {
            order: 0;
            width: 100%;
        }

        .product-grid.macchina-layout .product-description-down {
            display: none;
        }

        .product-header {
            background-color: #f9f9f9;
            padding: 16px 20px;
            border-bottom: 1px solid #e0e0e0;
        }

        .product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0 0 5px 0;
        }

        .product-description {
            font-size: 12px;
            color: #575757;
            margin: 0;
            line-height: 12px;
        }
        .product-description-down {
            font-size: 12px;
            color: #212121;
            line-height: 14px;
        }

        .product-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .product-table th {
            background-color: #f5f5f5;
            padding: 2px 5px;
            text-align: left;
            border-top: 1px solid #e6e6e6;
            border: 1px solid #e6e6e6;
            font-weight: 600;
            font-size: 12px;
            color: #212121;
        }

        .product-table td {
            padding: 2px 5px;
            border: 1px solid #e6e6e6;
            border-bottom: 1px solid #e6e6e6;
            font-size: 12px;
            color: #212121;
            line-height: 18px !important;
        }

        .product-table tr:hover {
            background-color: #f9f9f9;
        }

        .product-table tr:last-child td {
            border-bottom: 1px solid #e6e6e6;
        }

        .product-image {
            width: 94px;
            height: 94px;
            object-fit: cover;
            border-radius: 4px;
        }

        /* .product-body {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        } */
        .product-body {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px;
        }

        .product-photo {
        flex: 0 0 150px;
        }

        /* .product-group-image {
        width: 100%;
        max-width: 150px;
        height: auto;
        border-radius: 4px;
        } */
        product-group-image {
        width: 100%;
        max-width: 120px;
        height: auto;
        border-radius: 4px;
        border: 1px solid #ddd;
        }

        .product-table-container {
        flex: 1;
        overflow-x: auto;
        }

        /* .no-products {
            text-align: center;
            padding: 40px 20px;
            color: #212121;
        } */
        .no-products {
            width: 100%;             
            box-sizing: border-box;
            background-color: #f8f9fa;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            text-align: center;
            padding: 40px 20px;
            color: #212121;
            overflow: hidden;
        }

        .loading-products {
            text-align: center;
            padding: 20px;
            color: #212121;
        }

        .subcategory-link {
            font-size: 11px;
            color: #4a90e2;
            margin-right: 8px;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        .error {
            text-align: center;
            padding: 40px;
            color: #d32f2f;
            background-color: #ffebee;
            border: 1px solid #ffcdd2;
            border-radius: 4px;
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
        }

        .subcategory-item,
        .subcategory-item:link,
        .subcategory-item:visited,
        .subcategory-item:hover,
        .subcategory-item:active,
        .subcategory-item:focus {
            text-decoration: none !important;
        }