<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.myob-products-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.myob-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.filter-select,
#search-filter {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-item {
    display: block;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.text-stock-code {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.thumbnail {
    height: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: #fff;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
    height: 70px;
    overflow: hidden;
}

.product-item button {
    display: block;
    width: 100%;
    padding: 8px 0;
    background-color: #fff;
    color: var( --e-global-color-primary );
    border: 1px solid var( --e-global-color-primary );
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-item button:hover {
    background-color: var( --e-global-color-primary );
    color: #fff;
    border: 1px solid var( --e-global-color-primary );
}

.myob-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

#load-more {
    padding: 10px 20px;
    background-color: var( --e-global-color-primary );
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#load-more:hover {
    background-color: var( --e-global-color-primary );
}

#load-more:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 115, 170, 0.3);
    border-radius: 50%;
    border-top-color: #0073aa;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-products,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 18px;
    color: #666;
}

.error-message {
    background: #fff0f0;
    color: #c00;
}

.product-count {
    margin: 0 0 20px;
    font-size: 16px;
    color: #000000;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: right;
    font-weight: 600;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .filter-group {
        flex: 0 0 100%;
    }
}</pre></body></html>